
.info-section {
  font-family: "Poppins", sans-serif;
  background-color: #f7faf8;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.info-wrapper {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.info-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  color:  #bd976d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-box.active,
.info-box:hover {
  background: #bd976d;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
}

.info-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.info-box img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.info-box.active img,
.info-box:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.info-title {
  font-size: 34px;
  color:  #bd976d;
  font-weight: 700;
  margin-bottom: 10px;
  transition: opacity 0.4s ease;
}

.info-para {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
  transition: opacity 0.4s ease;
}

.info-image img {
  width: 100%;
  max-width: 530px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.info-form-wrapper {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
}

.info-form {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.form-group label i {
  color:  #bd976d;
  margin-right: 8px;
  font-size: 16px;
}

.info-btn i {
  margin-right: 8px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #bd976d;
  font-size: 15px;
}
.info-form-title{
    text-align: center;
}
.info-input,
.info-textarea {
  width: 100%;
  padding: 6px 16px;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.info-input:focus,
.info-textarea:focus {
  border-color:  #bd976d;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.25);
  background: #fff;
}

.info-btn {
  margin-top: 10px;
  background-color:  #bd976d;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
}

.info-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(76, 175, 80, 0.3);
}
@media (max-width: 992px) {
  .info-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .info-left {
    flex-direction: row;
    justify-content: center;
  }

  .info-content,
  .info-form-wrapper {
    flex: 1 1 100%;
  }
.info-form{
    text-align: left;
}
  .info-text {
    text-align: center;
  }

  .info-image img {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .info-box {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .info-title {
    font-size: 26px;
  }

  .info-para {
    font-size: 15px;
  }

  .info-image img {
    max-width: 340px;
  }

}

@media (max-width: 405px) {


  .info-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .info-box {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .info-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .info-para {
    font-size: 14px;
    max-width: 300px;
  }

  .info-image img {
    max-width: 260px;
  }

  .info-form {
    width: 90%;
    padding: 15px;
  }

  .info-btn {
    font-size: 15px;
    padding: 12px;
  }
}
