/*FAQ Section Start*/
.faq-container {
  max-width: 1950px;
  overflow: hidden;
}
.faq-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.faq-img-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.faq-img-col::before {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -170px;
  width: 850px;
  height: 850px;
  background: #daf1f7;
  border-radius: 50%;
  z-index: 0;
}

.faq-doctor-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 592px;
  height: auto;
  display: block;
  object-fit: contain;
}

.faq-content {
  max-width: 700px;
  padding-left: 40px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0eef5;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00b4d8;
  margin-bottom: 18px;
}

.faq-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  color: #0b1030;
  margin-bottom: 36px;
  line-height: 1.2;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e6f4f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 180, 216, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #0b1030;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #00b4d8;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b4d8;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  box-shadow:
  0 10px 20px rgba(0,0,0,0.05),
  0 2px 6px rgba(0,0,0,0.05);
 
}

.faq-item.open .faq-icon {
  background: #00b4d8;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-item.open .faq-question {
  color: #00b4d8;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  font-size: 14px;
  color: #6b7c93;
  line-height: 1.7;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/*Media Qeries Start*/

@media (max-width: 1200px) {
  .faq-title {
    font-size: 34px;
  }
  .faq-content {
    padding-left: 30px;
  }
  .faq-img-col::before {
    width: 440px;
    height: 440px;
  }
}

@media (max-width: 992px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-title {
    font-size: 30px;
  }
  .faq-content {
    padding-left: 20px;
    max-width: 100%;
  }
  .faq-img-col::before {
    width: 360px;
    height: 360px;
    left: -20px;
    bottom: 0px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  .faq-img-col {
    justify-content: center;
    margin-bottom: 40px;
  }
  .faq-img-col::before {
    width: 300px;
    height: 300px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  .faq-doctor-img {
    max-width: 320px;
  }
  .faq-content {
    padding-left: 0;
  }
  .faq-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .faq-question {
    font-size: 14px;
    padding: 16px 20px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-img-col::before {
    width: 240px;
    height: 240px;
  }
  .faq-doctor-img {
    max-width: 260px;
  }
  .faq-title {
    font-size: 22px;
  }
  .faq-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
  .faq-question {
    font-size: 13px;
    padding: 14px 16px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 18px;
  }
  .faq-answer {
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .faq-title {
    font-size: 18px;
  }
  .faq-badge {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .faq-question {
    font-size: 12px;
    padding: 12px 14px;
    gap: 10px;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 16px;
  }
  .faq-answer {
    font-size: 12px;
  }
  .faq-img-col::before {
    width: 200px;
    height: 200px;
  }
  .faq-doctor-img {
    max-width: 220px;
  }
}
/*Media Qeries End*/
