/* dr profile */

.abt-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  padding: 60px 0 30px;
  overflow: hidden;
}

.abt-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.abt-img-frame {
  position: relative;
  border-radius: 0 140px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-dark) 100%);
  border: 10px solid var(--green-dark);
  box-shadow: 0 20px 45px rgba(1, 171, 160, 0.25);
}

.abt-img-frame img {
  width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
  object-position: top;
  object-fit: cover;
  border-radius: 40px;
  display: block;
}

.abt-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
  line-height: 1.2;
}

.abt-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 10px;
}

.abt-desc {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ---------- Button ---------- */
.abt-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.abt-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.abt-btn:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

.abt-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .abt-title {
    font-size: 34px;
  }

  .abt-img-frame img {
    height: 420px;
  }

  .abt-section {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .abt-title {
    font-size: 28px;
  }

}

/* expertise */

.exp-section {
  position: relative;
  background: #f2fbfa;
  padding: 60px 0;
  overflow: hidden;
}

/* ---------- Header ---------- */
.exp-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 55px;
}

.exp-badge {
  display: inline-block;
  background-color: var(--green-dark);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.exp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.exp-divider span.line {
  width: 100px;
  height: 3px;
  background-color: var(--green);
  border-radius: 2px;
}

.exp-divider span.dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
}

.exp-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Cards ---------- */
.exp-card {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border-radius: 16px;
  padding: 25px 15px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 0 15px rgba(20, 41, 89, 0.20);
  transition: all 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(1, 171, 160, 0.16);
}

.exp-icon-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: #a2e6e6 solid 2px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(1, 171, 160, 0.12) 0%, rgba(1, 171, 160, 0) 100%);
  background-color: rgba(1, 171, 160, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-icon {
  border-radius: 50%;
  overflow: hidden;
  padding: 10px;
  background: #188f8e;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.exp-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.exp-readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  color: var(--green-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 9px 25px;
  border: 2px solid var(--green-dark);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.exp-readmore i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.exp-readmore:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

.exp-readmore:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .exp-heading {
    font-size: 38px;
  }

  .exp-head-icon {
    display: none;
  }
}

@media (max-width: 575px) {
  .exp-heading {
    font-size: 30px;
  }

  .exp-card p {
    min-height: unset;
  }

  .exp-blob-tl {
    display: none;
  }
}



/* procedure journey */

.jr-section {
  background-color: var(--gray-100);
  padding: 80px 0 60px;
}

/* ---------- Header ---------- */
.jr-header {
  text-align: center;
  margin-bottom: 55px;
}

.jr-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.jr-sub-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.jr-sub-wrap .jr-line {
  width: 70px;
  height: 2px;
  background-color: var(--gray-300);
}

.jr-sub-wrap .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green);
}

.jr-sub {
  font-size: 17px;
  color: var(--gray-700);
  position: relative;
  padding-bottom: 8px;
}

.jr-sub::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 2px;
  background-color: var(--green);
}

/* ---------- Steps row ---------- */
.jr-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}

.jr-step {
  flex: 1;
  position: relative;
  padding: 0 10px;
  height: 100%;
  width: 100%;
}


.jr-icon-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto -18px;
  border-radius: 50%;
  border: 2px solid var(--step-color, var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.jr-icon-wrap img {
  padding: 15px;
  object-fit: contain;

  color: var(--step-color, var(--green));
}

.jr-badge-num {
  position: absolute;
  top: 0px;
  left: -30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--step-color, var(--green));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jr-arrow {
  position: absolute;
  top: 60%;
  left: 180px;
  color: var(--gray-600);
  font-size: 18px;

}

.jr-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px 18px 22px;
  height: 100%;
}

.jr-step-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--step-color, var(--accent));
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.jr-photo {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border: 1px solid var(--gray-200);
  object-position: top;
  border-radius: 10px;
  margin-bottom: 16px;
}

.jr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jr-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 9px;
}

.jr-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 5px;
  border-radius: 50%;
  background-color: var(--step-color, var(--green));
}

/* ---------- Why choose bar ---------- */
.jr-why {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(20, 41, 89, 0.05);
}

.jr-why-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
  flex: 0 0 220px;
}

.jr-why-divider {
  width: 1px;
  height: 46px;
  background-color: var(--gray-300);
}

.jr-why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}

.jr-why-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.jr-why-item span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
}

/* ---------- Bottom CTA bar ---------- */
.jr-cta {
  background-color: var(--accent);
  color: var(--white);
  border-radius: 40px;
  padding: 15px 30px 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.jr-cta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
}

.jr-cta-item i {
  background-color: rgba(255, 255, 255, 0.15);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.jr-cta-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 991px) {
  .jr-steps {
    flex-direction: column;
  }

  .jr-arrow {
    display: none;
  }

  .jr-step {
    margin-bottom: 24px;
    padding: 0;
  }

  .jr-why {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .jr-why-divider {
    height: 1px;
    width: 100%;
  }

  .jr-title {
    font-size: 30px;
  }

  .jr-why-title {
    flex: auto;
  }

  .jr-sub-wrap .jr-line,
  .jr-sub-wrap .dot {
    display: none;
  }
}

@media (max-width: 575px) {
  .jr-cta {
    flex-direction: column;
    gap: 14px;
    padding: 15px 20px;
    display: flex;
    border-radius: 20px;
    margin: 0;
    width: 100%;
  }

  .jr-cta-divider {
    display: none;
  }
}





/* media */

.gly-section {
  position: relative;
  background-color: var(--white);
  padding: 90px 0 80px;
  overflow: hidden;
}

.gly-blob {
  position: absolute;
  top: -140px;
  left: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 30%, rgba(1, 171, 160, 0.12), rgba(1, 171, 160, 0.02) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gly-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
}

.gly-badge {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.gly-heading {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
}

.gly-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Image-only bento gallery */
.gly-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
  width: 100%;
}

.gly-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 18px;
  background-color: var(--gray-100);
}

.gly-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: var(--gray-100);
  transition: transform 0.55s ease, filter 0.35s ease;
}

.gly-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.88);
}

/* No caption, button, icon, or text is shown on gallery photos */
.gly-modal .modal-content {
  border: 0;
  background: transparent;
}

.gly-modal .modal-body {
  position: relative;
  padding: 0;
}

.gly-modal img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
  background-color: var(--white);
}

.gly-modal .btn-close {
  position: absolute;
  z-index: 2;
  top: -42px;
  right: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 1;
}

@media (max-width: 991px) {
  .gly-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gly-heading {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .gly-section {
    padding: 65px 0;
  }

  .gly-heading {
    font-size: 28px;
  }

  .gly-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 230px;
    gap: 14px;
  }

}



/* form  */

.bk-section {
  position: relative;
  background-color: var(--gray-200);
}


.bk-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.bk-form-inner {
  width: 100%;
  padding: 50px 60px;
}

.bk-heading {
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.bk-divider {
  width: 70px;
  height: 4px;
  background-color: var(--green);
  border-radius: 2px;
  margin-bottom: 32px;
}

.bk-form .form-control {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 14px 44px 14px 18px;
  font-size: 14.5px;
  color: var(--gray-900);
}

.bk-form .form-control::placeholder {
  color: var(--gray-500);
}

.bk-form .form-control:focus {
  box-shadow: none;
  border-color: var(--green);
}

.bk-field {
  position: relative;
  margin-bottom: 18px;
}

.bk-field i {
  position: absolute;
  right: 16px;
  top: 18px;
  color: var(--gray-500);
  font-size: 15px;
  pointer-events: none;
}

.bk-field textarea.form-control {
  resize: none;
  min-height: 130px;
}

.bk-field textarea~i {
  top: 18px;
}

.bk-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 36px;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.bk-submit-btn:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

@media (max-width: 991px) {
  .bk-row {
    flex-direction: column;
    min-height: unset;
  }

  .bk-form-inner {
    padding: 30px 20px;
  }

  .bk-img-col {
    height: 340px;
  }

  .bk-form-col {
    padding: 50px 30px;
  }
}

@media (max-width: 575px) {
  .bk-heading {
    font-size: 26px;
  }

  .bk-form-col {
    padding: 40px 20px;
  }

}



/* faq */

.faq-section {
  position: relative;
  background-color: var(--white);
  padding: 60px 0;
  overflow: hidden;
}


/* ---------- Left column ---------- */
.faq-badge {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.faq-heading {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 18px;
}

.faq-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.faq-divider .line {
  width: 60px;
  height: 3px;
  background-color: var(--green);
  border-radius: 2px;
}

.faq-divider .dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
}

.faq-sub {
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}

.faq-help-box {
  position: relative;
  z-index: 2;
  background-color: var(--gray-100);
  border-radius: 16px;
  padding: 25px;
  box-shadow: inset 0 0 10px rgba(20, 41, 89, 0.2);
}

.faq-help-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.faq-help-box h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.faq-help-box p {
  font-size: 14.5px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.faq-help-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.faq-help-contact:last-child {
  margin-bottom: 0;
}

.faq-help-contact .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.faq-help-contact a {
  color: var(--gray-900);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}

.faq-help-contact a:hover {
  color: var(--green-dark);
}

/* ---------- Right column accordion ---------- */
.faq-accordion-item {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(20, 41, 89, 0.04);
  overflow: hidden;
}

.faq-q-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  text-align: left;
  cursor: pointer;
}

.faq-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q-text {
  flex-grow: 1;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--green);
  font-size: 15px;
  transition: transform 0.3s ease;
}

.faq-q-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px 60px;
}

.faq-answer-box {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ---------- Bottom CTA ---------- */
.faq-bottom-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.faq-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-bottom-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(1, 171, 160, 0.1);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.faq-bottom-left p {
  margin: 0;
  color: var(--gray-600);
  font-size: 15px;
}

.faq-bottom-left p strong {
  display: block;
  color: var(--accent);
  font-size: 16.5px;
  font-weight: 700;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-contact-btn i {
  transition: transform 0.3s ease;
}

.faq-contact-btn:hover {
  background-color: var(--green-dark);
  color: var(--white);
}

.faq-contact-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .faq-heading {
    font-size: 34px;
  }

  .faq-answer {
    padding-left: 24px;
  }
}

@media (max-width: 575px) {
  .faq-heading {
    font-size: 28px;
  }

  .faq-q-text {
    font-size: 15px;
  }

  .faq-bottom-cta {
    justify-content: center;
    text-align: center;
  }

  .faq-bottom-left {
    flex-direction: column;
    text-align: center;
  }
}



/* slider  */

.slider-btn {
  padding: 10px 10px 5px;
  border-radius: 100px;
  background-color: var(--gray-800);
}



.borderbtm {
  border-bottom: 2px solid var(--gray-200);
}

.service-section {
  padding: 60px 0;
}

.service-top-img img {
  border-radius: 15px;
}

.service-content-text {
  padding: 40px 0 0;
}

.service-content-text p {
  font-size: 17px;
  /* text-align: justify; */
  color: var(--black);
  letter-spacing: 0.7px;
  margin-bottom: 12px;
  line-height: 1.8;
}


.service-content-text h3 {
  font-size: 32px;
  color: var(--head);
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.7px;
}

.service-content-text h4 {
  font-size: 26px;
  font-weight: 600;
  color: var(--head);
  letter-spacing: 0.7px;
  margin-bottom: 15px;
}

.service-content-text h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--head);
  letter-spacing: 0.7px;
  margin-bottom: 15px;
}

.service-imp-points {
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .service-imp-points {
    padding: 20px;
  }
}


.service-imp-points p {
  font-size: 18px;
  text-align: justify;
  color: var(--black);
  letter-spacing: 0.7px;
  margin-bottom: 25px;
}

.service-imp-points ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.service-imp-points ul li {
  font-size: 17px;
  color: var(--black);
  letter-spacing: 0.7px;
  margin-bottom: 10px;
  padding-left: 10px;
  font-weight: 400;
}

.service-imp-points ul li::marker {
  content: "\2713";
  color: var(--green);
  font-size: 18px;

}

.sidebar-doc-details {
  margin: 0 0 20px;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  overflow: hidden;
}

.sidebar-doc-heading {
  background-color: var(--green);
  padding: 10px 0;
  /* border-top-left-radius: 8px;
  border-top-right-radius: 8px; */
}

.sidebar-doc-heading h2 {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-doc-info {
  padding: 15px;
  border-top: 3px solid var(--green);
}

.sidebar-doc-image {
  width: 100%;
  padding: 0 0 10px;
}


.sidebar-doc-name h3 {
  font-size: 28px;
}

.sidebar-doc-name p {
  font-size: 16px;
  color: var(--gray-800);
  margin-bottom: 0;
}


.service-link a {
  display: block;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  padding: 6px 12px;

  &:hover {
    color: var(--green);
  }
}

.sidebar-contact-details {
  background-image: url('../images/services-sidebar-img.png');
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 13px;
  overflow: hidden;
}

.bg-overlay {
  padding: 60px 20px 100px 20px;
  height: 100%;
  width: 100%;
  /* content: "";
  z-index: 1; */
  background: var(--head);
  opacity: 0.8;
}


.sidebar-contact-icon {
  padding-bottom: 15px;
}

.sidebar-contact-head h3 {
  font-size: 24px;
  color: #fff;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.sidebar-contact-head p {
  text-align: center;
  margin: 0;
}

.sidebar-contact-head p a {
  color: #fff;
  font-size: 24px;
}

.sidebar-contact-head .mail a {
  font-size: 16px;
}

.sidebar-contact-btn {
  text-align: center;
  padding-top: 30px;
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
}

.sidebar-contact-btn a {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 25px 11px;
  background-color: rgba(1, 189, 178, 1) !important;
  border-radius: 12px;
  white-space: nowrap;
  color: #fff;
}

.bottom-bg {
  padding: 20px 0;
  background-color: var(--green);
}





.mt-heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.mt-sub {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 25px;
}


/* opd card  */

.opd-timing {
  background: linear-gradient(45deg, var(--green), var(--green-dark));
}

.opd-heading h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin: 0;
  padding: 10px 15px;
  border-bottom: 1px solid var(--gray-200);
}

.opd-timings {
  p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    padding: 10px 15px;
    line-height: 25px;
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid var(--white);

    i {
      margin-right: 8px;
      color: var(--white);
    }
  }

  a {
    color: var(--white);
  }
}




/* accordian section */

.accordian-details-section {
  padding: 35px 0 45px;
}

.accordian-head h2 {
  color: #142959;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  margin-top: 44px;
  margin-bottom: 25px;
}

.accordian-head h2 span {
  color: var(--green);
}

.accordian .contentBx {
  position: relative;
  margin: 15px 0px;
  box-shadow: 0 0 15px 0 #ebeaea;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
}

.accordian .contentBx:hover {
  background-color: #142959;
}

.accordian .contentBx.factive {
  background-color: #142959;
}

.contentBx .label {
  position: relative;
  padding: 25px 35px 25px 20px;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  color: #000;
  cursor: pointer;
  line-height: 22px;
  border-radius: 10px !important;
}

.contentBx .label:hover {
  color: #fff;
}


@media(max-width:992px) {
  .accordian .contentBx .label {
    padding: 20px 35px 20px 20px;
    line-height: 25px;
  }
}


.accordian .contentBx.factive .label {
  /* background: transparent; */
  background-color: #142959;
  color: #fff;
  font-weight: 600;
  line-height: 22px;
}

.accordian .contentBx .label::before {
  content: "+";
  font-size: 28px;
  position: absolute;
  color: var(--green);
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.accordian .contentBx.factive .label::before {
  content: "-";
}

@media(max-width:768px) {
  .accordian .contentBx .label::before {
    right: 10px;
  }
}

.accordian .contentBx .content {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  height: 0;
  overflow: hidden;
  padding: 0 10px;
  line-height: 31px;
  letter-spacing: -.32px;
}

.accordian .contentBx.factive .content {
  height: fit-content;
  padding: 0 20px 10px;
  background-color: #142959;
}





.breadcrumb-section {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  background-size: cover;
  padding: 80px 0;
}

.breadcrumb-title-heading h1 {
  color: #fff;
}

.breadcrumb-wrapper {
  color: #fff;
}







/* about us page  */

.au-badge {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.au-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.25;
}

.au-heading .accent-word {
  color: var(--green);
}

.au-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.au-divider.center {
  justify-content: center;
}

.au-divider .line {
  width: 55px;
  height: 3px;
  background-color: var(--green);
  border-radius: 2px;
}

.au-divider .dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
}

.au-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ================= HERO ================= */
.au-hero {
  background: radial-gradient(circle at 15% 20%, #1a3a75 0%, var(--accent) 45%, #061024 100%);
  color: var(--white);
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}

.au-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(1, 171, 160, 0.28), transparent 70%);
  border-radius: 50%;
}

.au-hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(1, 171, 160, 0.16), transparent 70%);
  border-radius: 50%;
}

.au-hero-dots {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 130px;
  height: 90px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  opacity: 0.3;
  z-index: 1;
}

.au-hero-dots span {
  width: 5px;
  height: 5px;
  background-color: var(--green);
  border-radius: 50%;
}

.au-hero-inner {
  position: relative;
  z-index: 2;
}

.au-hero-img-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.au-hero-img {
  width: 100%;
  border-radius: 0 100px 0 24px;
  border: 5px solid rgba(1, 171, 160, 0.5);
  object-fit: cover;
  display: block;
  background-color: var(--gray-100);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.au-hero-ring {
  position: absolute;
  inset: 5px;
  border: 1.5px dashed rgba(1, 171, 160, 0.5);
  border-radius: 0 120px 0 40px;
  z-index: -1;
}

.au-hero-role {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.au-hero-role::before {
  content: '';
  width: 26px;
  height: 2px;
  background-color: var(--green);
}

.au-hero-name {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.15;
}

.au-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.au-hero-tags span {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(1, 171, 160, 0.45);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
}

.au-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin-bottom: 12px;
}

.au-hero-current {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.au-current-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
}

.au-current-chip i {
  color: var(--green);
}

.au-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.au-stat {
  text-align: center;
  padding: 22px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.au-stat:last-child {
  border-right: none;
}

.au-stat .num {
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  display: block;
  margin-bottom: 4px;
}

.au-stat .lbl {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* ================= QUALIFICATIONS ================= */
.au-qual {
  background-color: var(--white);
  padding: 40px 0;
}

.au-qual-card {
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 15px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(20, 41, 89, 0.05);
}

.au-qual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(1, 171, 160, 0.18);
}

.au-qual-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(1, 171, 160, 0.35);
}

.au-qual-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.au-qual-card p {
  font-size: 13.5px;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.65;
}

.au-qual-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  background-color: rgb(221, 255, 252);
  padding: 5px 14px;
  border-radius: 20px;
  position: absolute;
  top: -15px;
  right: 20px;
}

/* ================= EXPERIENCE ================= */
.au-exp {
  background-color: var(--gray-100);
  padding: 60px 0;
}

.au-zig {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.au-zig::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--gray-300));
  transform: translateX(-50%);
}

.au-zig-item {
  position: relative;
  width: 50%;
  padding: 0 35px 0;
}

.au-zig-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.au-zig-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.au-zig-node {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 0 0 6px var(--gray-100), 0 8px 18px rgba(1, 171, 160, 0.4);
  z-index: 2;
}

.au-zig-item:nth-child(odd) .au-zig-node {
  right: -20px;
}

.au-zig-item:nth-child(even) .au-zig-node {
  left: -20px;
}

.au-zig-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 15px;
  display: inline-block;
  width: 100%;
  box-shadow: 0 8px 22px rgba(20, 41, 89, 0.05);
  transition: all 0.3s ease;
}

.au-zig-card:hover {
  box-shadow: 0 16px 32px rgba(1, 171, 160, 0.16);
  transform: translateY(-4px);
}

.au-zig-card.current {
  border-color: var(--green);
}

.au-zig-period {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  background-color: rgba(1, 171, 160, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.au-zig-card h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}

.au-zig-card .place {
  font-size: 14px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 8px;
}

.au-zig-card p {
  font-size: 16px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* ================= CLINICAL EXPERTISE ================= */
.au-exp-areas {
  background-color: var(--white);
  padding: 40px 0;
}

.au-tag-grid {
  columns: 4;
  column-gap: 10px;
}

.au-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.au-tag:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(1, 171, 160, 0.3);
}

.au-tag i {
  color: var(--green);
  font-size: 13px;
}

.au-tag:hover i {
  color: var(--white);
}

/* ================= SURGICAL ACCORDION ================= */
.au-surgical {
  background-color: var(--gray-100);
  padding: 50px 0;
}

.au-surg-item {
  background-color: var(--white);
  border-radius: 13px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 6px 18px rgba(20, 41, 89, 0.04);
}

.au-surg-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 15px;
  text-align: left;
  cursor: pointer;
}

@media (min-width: 992px) {
  .accordion {
    columns: 2;
  }
}

.au-surg-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent), #24407e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.au-surg-title {
  flex-grow: 1;
}

.au-surg-title h5 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 2px;
}

.au-surg-title span {
  font-size: 12.5px;
  color: var(--gray-500);
}

.au-surg-count {
  flex-shrink: 0;
  background-color: rgba(1, 171, 160, 0.12);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.au-surg-chevron {
  flex-shrink: 0;
  color: var(--green);
  font-size: 15px;
  transition: transform 0.3s ease;
}

.au-surg-btn[aria-expanded="true"] .au-surg-chevron {
  transform: rotate(180deg);
}

.au-proc-list {
  list-style: none;
  padding: 0 26px 26px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.au-proc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--gray-100);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-800);
}

.au-proc-list li i {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}

/* ================= TEACHING & RESEARCH ================= */
.au-teach-research {
  background-color: var(--white);
  padding: 50px 0;
}

.au-tr-card {
  background: linear-gradient(155deg, var(--gray-100) 0%, var(--white) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 34px 30px;
  height: 100%;
}

.au-tr-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(1, 171, 160, 0.35);
}

.au-tr-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}

.au-tr-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.au-tr-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 13px;
}

.au-tr-card ul li i {
  color: var(--green);
  font-size: 12px;
  margin-top: 4px;
}

.au-thesis-box {
  position: relative;
  background-color: var(--white);
  border: 1.5px dashed var(--green);
  border-radius: 14px;
  padding: 22px 24px;
}

.au-thesis-box .ribbon {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.au-thesis-box strong {
  color: var(--accent);
  font-size: 16px;
  display: block;
  margin: 8px 0;
}

.au-thesis-box span {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ================= CONFERENCES ================= */
.au-conf {
  background-color: var(--gray-100);
  padding: 50px 0;
}

.au-conf-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  padding-bottom: 12px;
}

.au-conf-strip::-webkit-scrollbar {
  height: 6px;
}

.au-conf-strip::-webkit-scrollbar-thumb {
  background-color: var(--green);
  border-radius: 10px;
}

.au-conf-card {
  scroll-snap-align: start;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 13px;
  padding: 15px;
  transition: all 0.3s ease;
}

.au-conf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(1, 171, 160, 0.15);
  border-color: var(--green);
}

.au-conf-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.au-conf-card h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.4;
}

.au-conf-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* ================= STRENGTHS ================= */
.au-strengths {
  background-color: var(--white);
  padding: 60px 0;
}

.au-strength-card {
  position: relative;
  background-color: var(--gray-100);
  border-radius: 16px;
  padding: 20px 15px;
  height: 100%;
  border-top: 4px solid var(--green);
  transition: all 0.3s ease;
}

.au-strength-card.alt {
  border-top-color: var(--accent);
}

.au-strength-card:hover {
  transform: translateY(-6px);
  background-color: var(--white);
  box-shadow: 0 16px 32px rgba(20, 41, 89, 0.1);
}

.au-strength-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(1, 171, 160, 0.12);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.au-strength-card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .au-heading {
    font-size: 30px;
  }

  .au-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-stat:nth-child(2) {
    border-right: none;
  }

  .au-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .au-hero-img-wrap {
    margin-bottom: 30px;
  }

  .au-proc-list {
    grid-template-columns: 1fr;
    padding: 0 12px 15px;
  }

  .au-zig::before {
    left: 22px;
  }

  .au-zig-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 24px 50px;
  }

  .au-zig-item .au-zig-node {
    left: 4px !important;
    right: auto !important;
    top: 43%;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {

  .au-hero-name {
    font-size: 32px;
  }

  .au-conf-card {
    flex: 0 0 220px;
  }

  .au-surg-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .au-surg-title h5 {
    font-size: 15px;
  }

  .au-tr-card {
    padding: 20px 15px;
  }

  .au-thesis-box {
    padding: 15px;
  }

  .au-surg-btn {
    padding: 12px;
    gap: 12px;
  }

  .au-surg-count {
    display: none;
  }

  .au-tag-grid {
    columns: 1;
  }
}




/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: url("../images/ct-bg.png") center / cover no-repeat;
}

.contact-content {
  position: relative;
  z-index: var(--top-index);
}

.contact-tag,
.form-tag {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.contact-tag::after,
.form-tag::after {
  content: "";
  width: 65px;
  height: 2px;
  background: var(--green);
}

.contact-content h2 {
  margin: 12px 0 18px;
  color: var(--head);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -3px;
}

.contact-content h2 span {
  color: var(--green);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(1, 171, 160, 0.10);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 41, 89, 0.08);
}

.contact-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--green-dark);
}

.contact-item small {
  display: block;
  margin-bottom: 3px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.contact-item h5 {
  margin: 0;
  color: var(--head);
  font-size: 17px;
  font-weight: 700;
}

.contact-item p {
  margin: 3px 0 0;
  color: var(--gray-600);
  font-size: 14px;
}

.contact-form-card {
  position: relative;
  z-index: var(--top-index);
  max-width: 570px;
  margin-left: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: 26px;
  box-shadow:
    0 25px 65px rgba(20, 41, 89, 0.14),
    0 5px 20px rgba(20, 41, 89, 0.06);
  backdrop-filter: blur(15px);
}

.form-tag {
  font-size: 10px;
  letter-spacing: 3px;
}

.contact-form-card h3 {
  margin: 12px 0 8px;
  color: var(--head);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 750;
}

.form-group {
  position: relative;
  margin-bottom: 14px;
}

.form-group>i {
  position: absolute;
  top: 50%;
  left: 17px;
  color: var(--green-dark);
  font-size: 15px;
  transform: translateY(-50%);
  z-index: 2;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 17px 15px 47px;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 11px;
  outline: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.form-group textarea {
  min-height: 125px;
  resize: vertical;
}

.textarea-group>i {
  top: 23px;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow:
    0 0 0 4px rgba(1, 171, 160, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 16px 24px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(1, 171, 160, 0.20);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 117, 109, 0.24);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.secure-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 11px;
}

.secure-text i {
  color: var(--green-dark);
}

@media (max-width: 991px) {

  .contact-form-card {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 55px 0;
  }

  .contact-content h2 {
    font-size: 48px;
  }

  .contact-intro {
    font-size: 15px;
  }

  .contact-item {
    padding: 14px;
  }

  .contact-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }

  .contact-item h5 {
    font-size: 15px;
  }

  .contact-form-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .contact-form-card h3 {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .contact-content h2 {
    font-size: 40px;
  }

  .contact-features {
    gap: 5px;
  }
}





/* footer */

.ftr {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, #033a35 100%);
  color: var(--white);
  padding: 60px 0 0;
  overflow: hidden;
}

.ftr a {
  text-decoration: none;
}

/* ---------- Brand ---------- */
.ftr-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.ftr-logo-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.ftr-logo-text h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}

.ftr-logo-text span {
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
  display: block;
  position: relative;
  padding-bottom: 10px;
}

.ftr-logo-text span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--green);
}

.ftr-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 30px;
}

.ftr-follow-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}

.ftr-social {
  display: flex;
  gap: 14px;
}

.ftr-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(1, 171, 160, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ftr-social a:hover {
  background-color: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
}

/* ---------- Column headings ---------- */
.ftr-col-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}

.ftr-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background-color: var(--green);
}

.ftr-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.ftr-links li {
  margin-bottom: 15px;
}

.ftr-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.ftr-links li a i {
  font-size: 12px;
  color: var(--green);
}

.ftr-links li a:hover {
  color: var(--green);
  transform: translateX(4px);
}

/* ---------- Get in touch cards ---------- */

.ftr-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(1, 171, 160, 0.25);
  border-radius: 12px;
  padding: 12px 12px;
  margin-bottom: 12px;
}

.ftr-contact-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.ftr-contact-card strong {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
}

.ftr-contact-card span,
.ftr-contact-card a {
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  display: block;
  font-weight: 400;
}

.ftr-contact-card a {
  display: block;
}

/* ---------- Bottom bar ---------- */
.ftr-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 20px;
  padding: 20px 0;
  text-align: center;
}

.ftr-bottom p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.ftr-bottom .divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 14px;
  vertical-align: middle;
}

.ftr-bottom i.fa-heart {
  color: var(--green);
  margin: 0 4px;
}

@media (max-width: 991px) {

  .ftr-desc,
  .ftr-contact-desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .ftr-logo-text h4 {
    font-size: 20px;
  }
}