
/* === VARIABLES.......... === */
:root {
  --primary: #ff9f1c;
  --accent: #f04b93;
  --blue-dark: #004c8b;
  --text-main: #14213d;
  --text-muted: #6c7a89;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* HEADER BG */
.hero-header {
  background: linear-gradient(to bottom, #e6f3ff, #ffffff);
}

/* LOGO + BUTTON */
/* LOGO + DOCTOR IMAGE WHITE BG REMOVAL */
.logo-img {
  height: 180px;
  width: 290px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: brightness(1.2) contrast(1.1);
}

.hero-image {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: -6px;
  filter: brightness(1.15) contrast(1.05);
}


.btn-book {
  background: #f2a900;
  border: none;
  padding: 10px 22px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 6px;
  /* transition: 0.25s ease; */
  display: inline-flex;
  align-items: center;
}

.btn-book:hover {
  background: #db9303;
  transform: translateY(-2px);
}

/* HERO CONTENT */
.hero-section {
  /* padding: 1.5rem 0; */
  min-height: 487px;
}

.hero-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: #333;
  padding-top: 40px;
}


.hero-subtitle {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}

.hero-desc {
  margin-top: 10px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.45;
}

/* CTA BUTTON */
.btn-primary-gradient {
  background-image: linear-gradient(135deg, var(--accent), #ff7a00);
  border-radius: 8px;
  padding: 10px 26px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s;
}

.btn-primary-gradient:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.hero-cta-btn {
  background: #eb4e9a;
  padding: 8px 26px;
  border-radius: 8px;
  color: #fff;
  border: none;
  margin-top: 1px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-arrow {
  font-size: 24px;
  margin-left: 40px;
  margin-bottom: 2px;
}


/* RIGHT IMAGE */
.hero-image {
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: -6px;
}

/* RESPONSIVE - TABLET */
@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding-bottom: 10px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-image {
    max-height: 380px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    max-width: 100%;
  }
   .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5px;
  }

  .hero-image-wrapper {
    order: 1;
    margin-bottom: 15px;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 576px) {
  .hero-header {
    background: linear-gradient(135deg, #e6f3ff 0%, #d4e9ff 50%, #ffffff 100%);
    padding: 0 8px;
    overflow: hidden;
  }

  .hero-header .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Mobile Nav - Compact & Clean */
  .hero-header nav {
    padding: 6px 0;
    gap: 8px;
  }

  .logo-img {
    height: 180px;
    width: 240px;
  }

  .btn-book {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f2a900, #ff8c00);
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.4);
    animation: pulse-glow 2s infinite;
  }

  .btn-book i {
    margin-right: 4px !important;
  }

  @keyframes pulse-glow {

    0%,
    100% {
      box-shadow: 0 4px 15px rgba(242, 169, 0, 0.4);
    }

    50% {
      box-shadow: 0 4px 25px rgba(242, 169, 0, 0.7);
    }
  }

  /* Hero Section Mobile */
  .hero-section {
    min-height: auto;
    padding-bottom: 20px ;
    text-align: center;
  }

  .hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5px;
  }

  .hero-image-wrapper {
    order: 1;
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: 26px;
    font-weight: 600;
    padding-top: 15px;
    line-height: 1.3;
    background: linear-gradient(135deg, #333 0%, #0362aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-top: 12px;
    color: #0362aa;
    font-weight: 600;
  }

  .hero-desc {
    font-size: 13px;
    margin-top: 8px;
    max-width: 100%;
    padding: 0 10px;
    line-height: 1.5;
  }

  .hero-cta-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
    border-radius: 25px;
    background: linear-gradient(135deg, #eb4e9a, #ff6b9d);
    box-shadow: 0 4px 20px rgba(235, 78, 154, 0.4);
    transition: all 0.3s ease;
  }

  .hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(235, 78, 154, 0.5);
  }

  .cta-arrow {
    font-size: 18px;
    margin-left: 15px;
  }

  .hero-image {
    max-height: 220px;
    border-radius: 15px;
  }
}


/* ===== APPOINTMENT BAR ===== */

.appointment-bar {
  background: #ddeafa;
  padding: 18px 0;
  justify-content: center;
}

.appointment-box {
  background: transparent;
  border-radius: 0;
  padding: 0;
  /* width: fit-content; */
  
}

.appointment-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #033b6c;
  text-align: center !important ;
  align-items: center;
  justify-content: center;
}

/* New Appointment Form Layout - 3 Rows */
.appointment-form-new {
  display: flex; 
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* Row 1: Input Fields */
.form-row-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.form-row-inputs .form-field {
  flex: 0 0 auto;
}

.form-row-inputs .appointment-input {
  width: 160px;
  max-width: 195px;
  /* height: 42px; */
  padding: 8px 14px;
  font-size: 14px;
}

/* Row 2: Captcha Centered */
.form-row-captcha {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
 flex-wrap: nowrap;
}

.form-row-captcha .g-recaptcha {
  transform: scale(0.85);
  transform-origin: center center;
}

.form-row-captcha .error-msg {
  text-align: center;
  margin-top: 3px;
}

/* Row 3: Submit Button Centered */
.form-row-submit {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -5px;
}

/* @media (max-width: 1440px) {
  .form-row-inputs .appointment-input {
    width: 100%;
    min-width: 300px;
  }
} */
 
/* Tablet adjustments */
@media (max-width: 1024px) {
  .form-row-inputs .appointment-input {
    width: 220px;  /* Small size */
  }
}

/* Tablet stacking (â‰¤992px) */
@media (max-width: 992px) {
  .form-row-inputs {
    flex-direction: column;
    align-items: center;
  }

  .form-row-inputs .appointment-input {
    width: 100%;
    max-width: 260px;
    min-width: 100px !important;
  }
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .appointment-bar {
    padding: 15px 0;
  }

  .appointment-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .form-row-inputs .appointment-input {
    width: 100%;
    max-width: 290px;
  }
  .appointment-form-new {
    gap: 8px;
  }

  /* Updated width for mobile */
  .appointment-input,
  .select-wrapper {
    width: 301px !important;       /* Fixed width */
    max-width: 301px !important;
    min-width: 301px !important;
  }

  .appointment-input {
    height: 42px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #c5d8e8 !important;
  }

  .form-row-captcha .g-recaptcha {
    transform: scale(0.75);
  }

  .btn-submit {
    width: 100%;
    max-width: 301px;   /* match new width */
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 8px;
  }

  .error-msg {
    font-size: 11px;
  }
}

.select-wrapper select {
  width: 90%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-field {
  display: flex;
  flex-direction: column;
  position: relative;
}
#appt-comments{
  /* margin-top: 14px; */
  
   min-height: 130px !important;

  max-height: 800px !important;

  overflow-y: auto !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  outline: none !important;
  padding: 10px 12px !important;
  font-size: 13px !important;
  font-family: inherit !important;
  background: #fff !important;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important; */
  transition: all 0.3s ease !important;
  resize: vertical !important;
  width: 800px !important;
  max-width: 1250px !important;
  border: none !important;
  resize: none !important;
}

#appt-comments:focus,
#callback-comments:focus {
  /* border: 2px solid #0362aa !important; */
  box-shadow: 
    0 0 0 4px rgba(3, 98, 170, 0.3),
    0 6px 20px rgba(95, 136, 230, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background: #fff !important;
  outline: none !important;
}

.error-msg {
  font-size: 12px;
  color: #e63946;
  margin-top: 4px;
  min-height: 18px;
  display: block;
  font-weight: 500;
}

.input-error {
  border: 1.5px solid #e63946 !important;
  background: #fff5f5;
}

/*.input-success {
  border: 1.5px solid #2ecc71 !important;
}*/

/* Google reCAPTCHA styling */

.appointment-input {
  padding: 12px 15px;
  /* width: 320px; */
  border-radius: 6px;
  /* border: 1px solid #ccc !important; */
  font-size: 17px;
  font-weight: 300;
}

.btn-submit {
  /* background: linear-gradient(135deg, #f2a900, #e89800);
   */
    background: #0362aa;
  border: none;
  border-radius: 8px;
  padding: 10px 40px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
  /* box-shadow: 0 3px 12px rgba(242, 169, 0, 0.4); */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover:not(:disabled) {
  /* background: linear-gradient(135deg, #e89800, #d98700); */
   background: #0362aa;
   color: white;
  /* transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 169, 0, 0.5); */
}

.btn-submit:active:not(:disabled) {
  /* transform: translateY(0); */
}

.btn-submit:disabled,
.callback-btn:disabled {
  background: #0362aa;
  color: white !important;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-submit:disabled:hover,
.callback-btn:disabled:hover {
  /* background: linear-gradient(135deg, #ccc, #bbb); */
  color: white;
  transform: none;
  box-shadow: none;
}

.select-wrapper {
  position: relative;
}

.form-control {
  /* background: #ddeafa; */
  color: #202122;
}


.select-wrapper .dropdown-icon {
  position: absolute;
  right: 8px;
  top: 30%;
  transform: translateY(-50%);
  font-size: 10px;
  pointer-events: none;
  /* avoids blocking clicks */
  color: #70757c;
  /* icon color */
}

#callback-hospital {
  appearance: none;
  /* hide default browser arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}


/* TABLET */
/* Tablet Fix: uniform width for all inputs in BOTH forms */
@media (max-width: 992px) {

  /* Appointment fields */
  .appointment-input,
  .select-wrapper,
  #appt-comments {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
  }

  /* Callback fields */
  .callback-form input,
  .callback-form select,
  .callback-form textarea,
  .callback-form .select-wrapper {
    width: 300px !important;
    max-width: 300px !important;
  }

  /* Fix form-field wrapper */
  .callback-form .form-field,
  .form-row-inputs .form-field {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
  }
}


/* MOBILE */
@media (max-width: 600px) {
  .appointment-bar {
    padding: 25px 15px;
  }

  .appointment-box {
    padding: 0 10px;
  }

  .appointment-box h4 {
    font-size: 20px;
    text-align: center !important;
    margin-bottom: 20px;
    color: #0362aa;
  }

  .appointment-flex {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .appointment-flex .form-field {
    width: 100%;
    max-width: 320px;
  }

  /* reCAPTCHA mobile scaling */
  .recaptcha-field {
    align-items: center;
  }

  .recaptcha-field .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center center;
  }

  .appointment-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #c5d8e8 !important;
    background: #fff;
    transition: .3s ease;
  }

  .appointment-input:focus {
    border-color: #0362aa !important;
    box-shadow: 0 0 0 3px rgba(3, 98, 170, 0.15);
  }

  .btn-submit {
    width: 100%;
    max-width: 320px;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 10px;
    /* background: linear-gradient(135deg, #f2a900, #ff8c00); */
     background: #0362aa;
    /* box-shadow: 0 4px 15px rgba(242, 169, 0, 0.35); */
    margin-top: 8px;
    font-weight: 600;
    transition: .3s ease;
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(242, 169, 0, 0.45); */
  }

  .error-msg {
    font-size: 11px;
    text-align: left;
    padding-left: 5px;
  }
}

/* ===== STATS ===== */
.stats-section {
  padding: 15px 0;
}

/* ===============================
   DESKTOP / DEFAULT
================================ */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: #777777;
  border-radius: 12px;
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  width: 280px;
  color: #fff;
  transition: 0.3s ease-in-out;
  cursor: default;
}

.stat-box img {
  width: 70px;
  height: auto;
}

.stat-text h2 {
  font-size: 30px;
  margin: 0 0 4px;
  font-weight: 700;
}

.stat-text p {
  font-size: 18px;
  min-height: 45px;
  line-height: 1.3;
  margin: 0;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* ===============================
   TABLET
================================ */
@media (max-width: 992px) {
  .stat-box {
    width: 320px;
    padding: 22px;
  }

  .stat-text h2 {
    font-size: 30px;
  }

  .stat-text p {
    font-size: 18px;
  }
}

/* ===============================
   MOBILE — 2 x 2 GRID
================================ */
@media (max-width: 600px) {
  .stats-container {
    justify-content: space-between;
    gap: 6px;
    padding: 0 4px;
  }

  .stat-box {
    width: calc(50% - 6px);   /* 2-column layout */
    padding: 12px 10px;
    gap: 4px;
  }

  .stat-box img {
    width: 42px;
  }

  .stat-text h2 {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .stat-text p {
    font-size: 12px;
    line-height: 1.25;
    min-height: auto;
  }
}


/* ===== CANCER CARE CARDS ===== */
/* SECTION */
/* ===== CANCER CARE SECTION ===== */
.cancer-care {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px;
}

.section-title {
  color: #0362aa;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 550;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===== GRID ===== */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD DEFAULT ===== */
.care-card {
  padding: 25px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e8f1f9;
}

.care-card h3 {
  font-size: 22px;
  color: #fa1bc2;
  margin-bottom: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.care-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

/* ===== BUTTON ===== */
 .care-card button {
  background: linear-gradient(135deg, #035c6c, #0a7c8c);
      color: #fff;
      border: none;
  padding: 8px 16px;
  font-size: 12px;
      cursor: pointer;
      border-radius: 6px;
  align-self: center;
      font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(3, 92, 108, 0.3);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
    }

    .care-card button:hover {
  background: linear-gradient(135deg, #0a7c8c, #035c6c);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(3, 92, 108, 0.4);
}

/* ===== HOVER EFFECT - DESKTOP/LAPTOP ONLY ===== */
@media (min-width: 992px) {
  .care-card:hover {
    transform: translateY(-12px);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.15),
      0 10px 20px rgba(250, 27, 194, 0.1);
    border-color: #fa1bc2;
  }

  .care-card:hover h3 {
    color: #0362aa;
    transform: translateX(5px);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cancer-care {
    padding: 25px 15px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .care-grid {
    gap: 15px;
  }

  .care-card {
    padding: 20px;
    min-height: auto;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .care-card h3 {
    font-size: 18px;
  }

  .care-card p {
    font-size: 14px;
  }

  .care-card button {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ===== SPECIALISTS (SWIPER) ===== *//* ===========================================================
   SPECIALISTS SECTION
=========================================================== */
.specialists-section {
  text-align: center;
  padding: 40px 60px;
  background: #e6f3fc;
  position: relative;
}

.specialists-section h2 {
  color: #004c8b;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 10px;
}

/* ===========================================================
   SLIDER WRAPPER
=========================================================== */
.specialists-slider {
  position: relative;
  margin-top: 30px;
}

/* ===========================================================
   TRACK
=========================================================== */
.spec-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 5px;
}

.spec-track::-webkit-scrollbar {
  display: none;
}

/* ===========================================================
   CARD â€“ DESKTOP
=========================================================== */
.doctor-card {
  flex: 0 0 calc(25% - 20px);
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===========================================================
   IMAGE â€” FULL COVER ON ALL DEVICES
=========================================================== */
.doctor-img {
  width: 100%;
  /*height: 260px;*/
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  display: block;
}

/* ===========================================================
   TEXT
=========================================================== */
.doctor-card h5 {
  margin: 12px 0 5px;
  padding: 0 10px;
  font-size: 15px;
  color: #033b6c;
  font-weight: 600;
  line-height: 1.3;
}

.doctor-card p {
  margin: 0;
  padding: 0 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.3;
  text-align: center;
  flex-grow: 1;
}

/* ===========================================================
   BUTTON
=========================================================== */
.doctor-card a {
  display: block;
  background: #eba000;
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  margin-top: auto;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.doctor-card a:hover {
  background: #d98a00;
}

/* ===========================================================
   ARROWS
=========================================================== */
.spec-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  z-index: 20;
  color: #004a86;
  transition: 0.25s;
  background: rgba(255,255,255,0.95);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.spec-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  color: #003366;
}

.spec-left {
  left: 5px;
}

.spec-right {
  right: 5px;
}

/* ===========================================================
   TABLET (max-width: 992px)
=========================================================== */
@media (max-width: 992px) {
  .specialists-section {
    padding: 30px 20px;
  }

  .specialists-section h2 {
    font-size: 26px;
  }

  .spec-track {
    gap: 18px;
    padding: 10px 15px;
  }

  /* 2 per row look */
  .doctor-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 220px;
  }

  /* Tablet image height */
  .doctor-img {
    height: 250px;
    object-fit: cover;
    object-position: top center;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  }

  .spec-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* ===========================================================
   MOBILE (max-width: 600px)
=========================================================== */
@media (max-width: 600px) {

  .specialists-section {
    padding: 25px 15px;
  }

  .specialists-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .specialists-slider {
    margin-top: 15px;
  }

  .spec-track {
    gap: 15px;
    padding: 10px 10px;
    scroll-snap-type: x mandatory;
    height: auto;
  }

  .doctor-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
    margin: 0 auto;
  }

  .doctor-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: top center;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef3 100%);
    flex-shrink: 0;
  }

  .doctor-card h5 {
    margin: 12px 0 6px;
    padding: 0 12px;
    font-size: 16px;
  }

  .doctor-card p {
    margin: 0;
    padding: 0 12px 10px;
    font-size: 13px;
    min-height: 36px;
  }

  .doctor-card a {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
  }
}


/* ===========================================================
   MOBILE NAV BUTTONS
=========================================================== */
.spec-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 10px 0;
}

.spec-nav .spec-arrow {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #004a86, #0066b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 74, 134, 0.3);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.spec-nav .spec-arrow:hover,
.spec-nav .spec-arrow:active {
  background: linear-gradient(135deg, #0066b3, #004a86);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 74, 134, 0.4);
}

/* ===========================================================
   DESKTOP LARGE â€” ARROWS OUTSIDE
=========================================================== */
@media (min-width: 993px) {
  .spec-left {
    left: -55px;
  }

  .spec-right {
    right: -55px;
  }

  .specialists-slider {
    overflow: visible;
  }
}


/* ===== TECHNOLOGY SECTION ===== */
.technology-section {
  position: relative;
  text-align: center;
  padding: 50px 30px;
  background: #ffffff;
}

.technology-section .section-title {
  color: #0362aa;
  font-size: 32px;
  font-weight: 600;
}

.technology-section .section-subtitle {
  color: #666;
  margin-top: 8px;
  margin-bottom: 30px;
}

/* INNER CAROUSEL WRAPPER */
.tech-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}

/* SLIDER TRACK */
.tech-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 5px;
  flex: 1;
}

.tech-grid::-webkit-scrollbar {
  display: none;
}

/* CARD */
.tech-card {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 300px;
  background: #fff;
  border-radius: 14px;
  transition: 0.3s ease;
  text-align: center;
  padding-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8f0f8;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.tech-card img {
  width: 100%;
  height: 180px;
  object-fit: fill;
  border-radius: 14px 14px 0 0;
}

.tech-card h4 {
  font-size: 15px;
  color: #033b6c;
  font-weight: 600;
  margin-top: 14px;
  padding: 0 12px;
}

.tech-card p {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
  padding: 0 12px;
  line-height: 1.5;
}

/* TECH ARROWS - Inside Carousel */
.tech-arrow {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  z-index: 20;
  user-select: none;
  transition: 0.3s;
  background: linear-gradient(135deg, #0466b0, #0380d4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(4, 102, 176, 0.35);
}

.tech-arrow:hover {
  background: linear-gradient(135deg, #035a9c, #0270bc);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(4, 102, 176, 0.45);
}

.tech-arrow:active {
  transform: scale(0.95);
}

/* LARGE TABLET â€” 2-3 cards */
@media (max-width: 1200px) {
  .technology-section {
    padding: 45px 25px;
  }

  .tech-card {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 260px;
  }
}

/* TABLET â€” 2 cards */
@media (max-width: 992px) {
  .technology-section {
    padding: 40px 20px;
  }

  .tech-carousel-wrapper {
    padding: 15px 8px;
    gap: 10px;
  }

  .tech-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 240px;
  }

  .tech-card img {
    height: 160px;
  }

  .tech-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .technology-section .section-title {
    font-size: 28px;
  }
}

/* SMALL TABLET â€” 1-2 cards */
@media (max-width: 768px) {
  .technology-section {
    padding: 35px 15px;
  }

  .tech-carousel-wrapper {
    padding: 10px 5px;
    gap: 8px;
  }

  .tech-card {
    flex: 0 0 85%;
    min-width: 280px;
    max-width: 320px;
  }

  .tech-card img {
    height: 160px;
  }

  .tech-card h4 {
    font-size: 14px;
  }

  .tech-card p {
    font-size: 12px;
    padding: 0 10px;
  }

  .tech-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .technology-section .section-title {
    font-size: 24px;
  }

  .technology-section .section-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* MOBILE â€” 1 card */
@media (max-width: 576px) {
  .technology-section {
    padding: 30px 10px;
  }

  .tech-carousel-wrapper {
    padding: 8px 5px;
    gap: 6px;
  }

  .tech-card {
    flex: 0 0 90%;
    min-width: 280px;
    max-width: 320px;
  }

  .tech-card img {
    height: 150px;
  }

  .tech-card h4 {
    font-size: 14px;
    margin-top: 10px;
  }

  .tech-card p {
    font-size: 12px;
    line-height: 1.4;
  }

  .tech-arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .technology-section .section-title {
    font-size: 20px;
  }

  .technology-section .section-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 400px) {
  .tech-carousel-wrapper {
    gap: 4px;
  }

  .tech-card {
    flex: 0 0 92%;
    min-width: 220px;
    max-width: 300px;
  }

  .tech-card img {
    height: 140px;
  }

  .tech-arrow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .technology-section .section-title {
    font-size: 18px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 50px 8%;
}

.testimonials-box {
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fafbfc;
}

/* TEXT */
.testimonial-content {
  flex: 1;
}

.test-title {
  color: #d6206e;
  font-size: 26px;
  font-weight: bold;
}

.test-subtitle {
  color: #033b6c;
  font-size: 24px;
  margin: 10px 0;
  line-height: 1.3;
}

.testimonial-content p {
  font-size: 16px;
  color: #555;
  margin: 20px 0;
  line-height: 1.6;
}

/* SLIDER */
.testimonial-videos {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* CARD */
.video-card {
  text-align: center;
}

.video-card img {
  cursor: pointer;
  display: block;
  
  transition: 0.3s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.video-card img:hover,
.video-card img:active {
  transform: scale(1.02);
}

.video-location {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* SIZES */
.video-main {
  width: 280px;
  height: 160px;
  border-radius: 10px;
  border: 3px solid #d6206e;
  object-fit: cover;
}

.video-small {
  width: 120px;
  height: 85px;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.7;
  transition: 0.3s;
}

.video-small:hover {
  opacity: 1;
}

/* ARROWS */
.test-arrow,
.test-arrow-right {
  font-size: 28px;
  cursor: pointer;
  color: #014a86;
  font-weight: 700;
  user-select: none;
  transition: 0.25s;
}

.test-arrow:hover,
.test-arrow-right:hover {
  color: #d6206e;
}

/* RESPONSIVE - TABLET */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 40px 5%;
  }

  .testimonials-box {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 25px 20px;
  }

  .test-title {
    font-size: 22px;
  }

  .test-subtitle {
    font-size: 20px;
  }

  .video-main {
    width: 260px;
    height: 160px;
  }

  .video-small {
    width: 110px;
    height: 80px;
  }

  .testimonial-videos {
    justify-content: center;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 576px) {
  .testimonials-section {
    padding: 25px 12px;
  }

  .testimonials-box {
    padding: 20px 15px;
    gap: 20px;
  }

  .test-title {
    font-size: 18px;
  }

  .test-subtitle {
    font-size: 16px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  /* Bigger videos on mobile */
  .video-main {
    width: 200px;
    height: 130px;
    border-width: 3px;
  }

  .video-small {
    width: 90px;
    height: 65px;
  }

  .video-location {
    font-size: 12px;
  }

  /* Hide desktop arrows on mobile */
  .testimonial-videos .test-arrow.desktop-only,
  .testimonial-videos .test-arrow-right.desktop-only {
    display: none !important;
  }

  /* Hide side videos on very small screens */
  .testimonial-videos .video-card:first-child,
  .testimonial-videos .video-card:last-child {
    display: none;
  }

  .video-main {
    width: 200px;
    height: 160px;
  }
}

/* Testimonials Mobile Navigation */
.test-nav {
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  position: relative;
  z-index: 100;
}

.test-nav .test-arrow,
.test-nav .test-arrow-right {
  width: 45px;
  height: 45px;
  background: rgba(1, 74, 134, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  color: #014a86;
  position: relative;
  z-index: 101;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.test-nav .test-arrow:hover,
.test-nav .test-arrow:active,
.test-nav .test-arrow-right:hover,
.test-nav .test-arrow-right:active {
  background: rgba(1, 74, 134, 0.3);
}

/* ===== FAQ ===== */


/* FAQ SECTION */
.faq-section {
  padding: 35px 8%;
  background: #fff;
  text-align: center;
  margin-bottom: 90px;
}

.container {
  color: #014a86;
}

.faq-container {
  display: flex;
  margin-top: 30px;
  gap: 0px;
  align-items: stretch;
}

.faq-list {
  width: 45%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px 0px;
}

.faq-item {
  padding: 15px 40px 15px 15px;
  background: #e8f1f9;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  color: #565a5e;
  position: relative;
}

.faq-question {
  display: block;
}

/* Hide mobile answers on desktop */
.faq-mobile-answer {
  display: none;
}

.faq-item::after {
  content: ">";
  color: #025295;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 14px;
  font-weight: bold;
}

.faq-item.active {
  background: #bdd9f4;
  font-weight: bold;
}

.faq-item.active::after {
  content: ">>";
  color: #025295;
}

/* RIGHT ANSWER BOX - BASE STYLES */
.faq-answer-box {
  width: 55%;
  background: #f4f7fa;
  border-radius: 16px;
  padding: 35px 40px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.faq-answer-box h4 {
  color: #333;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
}

.faq-answer-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
}

/* Responsive */
@media(max-width: 992px) {
  .faq-container {
    flex-direction: column;
    gap: 25px;
  }

  .faq-list,
  .faq-answer-box {
    width: 100%;
  }

  .faq-answer-box {
    order: 2;
    min-height: auto;
  }

  .faq-list {
    order: 1;
  }
}

@media(max-width: 576px) {
  .faq-section {
    padding: 25px 15px;
    margin-bottom: 60px;
  }

  .faq-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .faq-container {
    gap: 0;
  }

  .faq-list {
    margin-bottom: 0;
    width: 100%;
  }

  /* Hide desktop answer box on mobile */
  .faq-answer-box {
    display: none !important;
  }

  /* Mobile Accordion Styles */
  .faq-item {
    padding: 0;
    font-size: 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e8f0;
    transition: all 0.3s ease;
  }

  .faq-question {
    display: block;
    padding: 16px 45px 16px 16px;
    font-weight: 600;
    color: #333;
  }

  /* Mobile uses down arrow */
  .faq-item::after {
    content: "â–¼";
    right: 16px;
    top: 18px;
    font-size: 10px;
    font-weight: normal;
    transition: transform 0.3s ease;
  }

  .faq-item.active::after {
    content: "â–²";
  }

  /* Mobile Answer Dropdown - No background color */
  .faq-mobile-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
    transition: all 0.4s ease;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
  }

  /* Active State - Expanded */
  .faq-item.active {
    background: #ffffff;
    border-color: #0362aa;
    box-shadow: 0 4px 15px rgba(3, 98, 170, 0.15);
  }

  .faq-item.active .faq-question {
    color: #0362aa;
  }

  .faq-item.active .faq-mobile-answer {
    max-height: 300px;
    padding: 16px;
  }

  .faq-item.active::after {
    color: #0362aa;
  }
}


/* ===== CALLBACK + CENTRES MAIN WRAPPER ===== */
/* ========== MAIN WRAPPER SECTION ========== */
.callback-centres-wrapper {
  width: 100%;
  background: #777777;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

/* CALLBACK BOX */
.callback-box {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -100px;
  background: #e8f4fb;
  border-radius: 16px;
  padding: 25px 35px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 10;
}

/* TITLE */
.callback-title {
  color: #033b6c;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* DESCRIPTION TEXT */
.callback-desc {
  color: #4d4d4d;
  font-size: 14px;
  margin-bottom: 18px;
}

/* CALLBACK FORM - 3 Row Layout */
.callback-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Row 1: Input fields */
.callback-form .callback-inputs-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  /* width: 180px; */
  max-width: 100%;
}

.callback-form input,
.callback-form select,
.callback-form textarea {
  width: 180px !important;
  height: 38px !important;
  border-radius: 6px !important;
  /* border: 2px solid #5a6a7a !important; */
  padding: 8px 10px !important;
  font-size: 13px !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
  font-family: inherit !important;
  border: none;
}

.callback-form textarea {
  width: 700px !important;
  height: 80px !important;
  resize: vertical !important;
}
#callback-comments{
  
   min-height: 130px !important;

  max-height: 800px !important;

  overflow-y: auto !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  outline: none !important;
  padding: 10px 12px !important;
  font-size: 13px !important;
  font-family: inherit !important;
  background: #fff !important;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important; */
  transition: all 0.3s ease !important;
  resize: vertical !important;
  /* width: 800px !important; */
  /* max-width: 1250px !important; */
  border: none !important;
  resize: none !important;
} 

.callback-form input:focus,
.callback-form select:focus,
.callback-form textarea:focus {
  /* border: 2px solid #0362aa !important; */
  box-shadow: 
    0 0 0 4px rgba(3, 98, 170, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  scroll-margin-top: 100px;
  background: #fff !important;
  outline: none !important;
}

/* Callback Form Field Wrapper */
.callback-form .form-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.callback-form .error-msg {
  font-size: 10px;
  color: #e63946;
  margin-top: 3px;
  min-height: 14px;
  display: block;
  font-weight: 500;
}

.callback-form select {
  color: #252424;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.callback-form select option {
  white-space: nowrap;
}

/* Row 2: Captcha */
/* Callback captcha aligned like appointment form */
.callback-captcha-row {
  display: flex !important;
  flex-direction: row !important;   /* ?? THIS FIXES THE STACKING */
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  width: 301px !important;
  max-width: 301px !important;
  margin: 10px auto !important;

  flex-wrap: nowrap !important;
}
/* Error message below */
#callback-recaptcha-error {
  margin-top: 4px;
  display: block;
  padding-left: 20px;
}


.callback-form .callback-captcha-row .g-recaptcha {
  transform: scale(0.9);
  transform-origin: center center;
}

/* Row 3: Submit */
.callback-form .callback-submit-row {
  display: flex;
  justify-content: center;
  /* width: 100%; */
}

/* SUBMIT BUTTON */
.callback-btn {
  height: 36px;
  padding: 0 30px;
 background: #0362aa;
   color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  /* box-shadow: 0 4px 12px rgba(235, 160, 0, 0.35); */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.callback-btn:hover:not(:disabled) {
  /* background: linear-gradient(135deg, #d98a00, #c77a00); */
  transform: translateY(-2px);
  /* box-shadow: 0 6px 18px rgba(235, 160, 0, 0.45); */
}

/* ===================== CENTRES SECTION ===================== */
.centres-section {
  /* margin-top: 45px; */
  padding: 40px 10%;
  text-align: center;
  color: white;
}

.centres-title {
  font-size: 32px;
  font-weight: 540;
  margin-bottom: 25px;
}

/* CARD CONTAINER + ARROWS */
.centres-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* ARROWS */
.arrow-centre {
  font-size: 36px;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  color: white;
  transition: .25s ease;
}

.arrow-centre:hover {
  opacity: .6;
}

/* CARD */
.centre-card {
  background: rgba(77, 77, 77, 0.18);
  display: flex;
  border: 1px solid #021309;
  border-radius: 10px;
    width: 820px;
  height: 380px;
  /* fixes the problem */
  min-height: 290px;
  overflow: hidden;
}

/* IMAGE */
.centre-card img {
  width: 430px;
  height: 380px;
  object-fit: cover;
}

/* RIGHT CONTENT PANEL */
.centre-info {
  background: #777777;
  width: 390px;
  padding: 28px 26px 26px 26px;
  color: white;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.centre-info h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.centre-info p {
  font-size: 15px;
  line-height: 1.48;
}

/* BUTTON */
.consult-btn {
  background: #d6206e;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  margin-top: auto;
  text-decoration: none;
  text-align: center;
  /* forces button to bottom of card */
}

.consult-btn:hover {
  opacity: .8;
}

.form-controls {
  /* background: #ddeafa; */
  color: #63676d !important;
  font-weight: 400;
}

/* ========== MOBILE ========== */
@media(max-width: 768px) {
  .callback-box {
    width: 94%;
    padding: 30px 20px;
    margin-top: -80px;
    border-radius: 16px;
  }

  .callback-title {
    font-size: 22px;
  }

  .callback-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .callback-form {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .callback-form .form-field {
    width: 100%;
    max-width: 280px;
  }

  .callback-form input,
  .callback-form select,
  .callback-form textarea {
    width: 100% !important;
    height: 42px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    /* border: 2px solid #5a6a7a !important; */
    transition: all 0.3s ease !important;
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 12px !important;
  }
  .callback-form select{
    /* margin-left: 6px; */
    /* width: 281px !important; */
  }

  .callback-form textarea {
    height: 80px !important;
    max-width: 100% !important;
  }

  .callback-form input:focus,
  .callback-form select:focus,
  .callback-form textarea:focus {
    border: 2px solid #0362aa !important;
    box-shadow: 
      0 0 0 5px rgba(3, 98, 170, 0.35),
      0 8px 25px rgba(0, 0, 0, 0.25),
      inset 0 2px 6px rgba(0, 0, 0, 0.12) !important;
    background: #fff !important;
    outline: none !important;
  }

  .callback-btn {
    width: 100%;
    max-width: 280px;
    height: 42px;
    border-radius: 8px;
    font-size: 14px;
    /* background: linear-gradient(135deg, #eba000, #ff8c00);
     */
      background: #0362aa;
    
    margin-top: 5px;
  }

  .callback-form .error-msg {
    font-size: 11px;
    text-align: left;
    padding-left: 5px;
  }

  /* Centres Section Mobile */
  .centres-section {
    padding: 30px 15px;
  }

  .centres-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .centres-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .centres-section .centres-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
  }

  /* Mobile Arrows - Show them in center below card */
  .arrow-centre {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 100;
  }

  .arrow-centre:hover,
  .arrow-centre:active {
    background: rgba(255, 255, 255, 0.5);
  }

  .centre-card {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .centre-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .centre-info {
    width: 100%;
    border: none;
    padding: 20px 15px;
    text-align: center;
  }

  .centre-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .centre-info p {
    font-size: 13px;
    line-height: 1.5;
  }

  .consult-btn {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    font-size: 14px;
  }
}
/* ========== CALLBACK FORM MOBILE FIX (MATCHES APPOINTMENT FORM) ========== */
@media (max-width: 576px) {

  /* Fix uniform width for all callback fields */
  .callback-form .form-field,
  .callback-form input,
  .callback-form select,
  .callback-form textarea {
    width: 301px !important;
    max-width: 301px !important;
   
    margin: 0 auto !important;
  }

  /* Select wrapper must also remain same width */
  .callback-form .select-wrapper {
    width: 301px !important;
    max-width: 301px !important;
    min-width: 301px !important;
  }

  /* Textarea height */
  .callback-form textarea {
    height: 80px !important;
  }

  /* Fix dropdown arrow position */
  .callback-form .select-wrapper .dropdown-icon {
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Submit button width same */
  .callback-btn {
    width: 301px !important;
    max-width: 301px !important;
    min-width: 301px !important;
    height: 42px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
  }

  /* Captcha mobile alignment */
  .callback-captcha-row {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .callback-captcha-row .g-recaptcha {
    transform: scale(0.85);
  }
}


/* MOBILE / DESKTOP ONLY HELPERS */
.mobile-only {
    display: none;
  }

.desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }
}

/* Centres Mobile Navigation */
.centres-nav {
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  position: relative;
  z-index: 100;
}

.centres-nav .arrow-centre {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 101;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.centres-nav .arrow-centre:hover,
.centres-nav .arrow-centre:active {
  background: rgba(255, 255, 255, 0.5);
}

/* FOOTER */
.footer {
  background: #eba000;
  text-align: center;
  padding: 12px 15px;
}

.footer p {
  color: #fff;
  font-size: 13px;
  margin: 0;
}

/* ==================== COMPREHENSIVE RESPONSIVE ==================== */

/* LARGE DESKTOP (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 58px;
  }

  .care-grid {
    gap: 30px;
  }
   .centre-card {
    width: 800px;
  }
  
}

/* DESKTOP (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 44px;
  }

  .centre-card {
    width: 700px;
  }

  .centre-card img {
    width: 350px;
  }

  .centre-info {
    width: 350px;
  }
}

/* TABLET (768px - 991px) */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-desc {
    max-width: 100%;
    text-align: center;
  }

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

  .testimonials-box {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-content {
    width: 100%;
  }

  .testimonial-videos {
    justify-content: center;
  }

  .centre-card {
    width: 100%;
    max-width: 600px;
    flex-direction: column;
    height: auto;
  }

  .centre-card img {
    width: 100%;
    height: 250px;
  }

  .centre-info {
    width: 100%;
  }
}

/* SMALL TABLET (576px - 767px) */
@media (max-width: 767px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .faq-section {
    margin-bottom: 70px;
  }

  .test-title,
  .test-subtitle {
    font-size: 22px;
  }

  .testimonial-content p {
    font-size: 15px;
  }
}

/* MOBILE (480px - 575px) */
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

 

  .specialists-section {
    padding: 25px 12px;
  }

  .specialists-section h2 {
    font-size: 22px;
  }

  .technology-section {
    padding: 30px 12px;
  }

  .tech-card img {
    height: 200px;
  }

  .tech-card h4 {
    font-size: 15px;
  }

  .tech-card p {
    font-size: 13px;
  }

  .testimonials-section {
    padding: 25px 10px;
  }

  .testimonials-box {
    padding: 20px 15px;
    gap: 25px;
  }

  .test-title {
    font-size: 20px;
  }

  .test-subtitle {
    font-size: 18px;
  }

  .centres-section {
    padding: 25px 10px;
  }

  .centres-title {
    font-size: 22px;
  }

  .callback-box {
    margin-top: -70px;
    padding: 25px 15px;
  }

  .callback-title {
    font-size: 20px;
  }

  .callback-desc {
    font-size: 13px;
  }

  .footer {
    padding: 15px 10px;
  }

  .footer p {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* EXTRA SMALL MOBILE (below 400px) */
@media (max-width: 400px) {
  .hero-header nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .logo-img {
    height: 45px;
    width: 90px;
  }

  .btn-book {
    padding: 6px 10px;
    font-size: 10px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-cta-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .appointment-flex .form-field,
  .callback-form .form-field {
    max-width: 100%;
  }

  .appointment-input {
    font-size: 14px;
    padding: 12px;
  }

  .btn-submit,
  .callback-btn {
    max-width: 100%;
    font-size: 14px;
  }

  .recaptcha-field .g-recaptcha {
    transform: scale(0.77);
    transform-origin: center center;
  }

  .care-card {
    padding: 15px;
  }

  .care-card h3 {
    font-size: 16px;
  }

  .care-card p {
    font-size: 13px;
  }
  .doctor-card {
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    height: auto;
  }

  .doctor-img {
    height: 260px;
  }

  .video-main {
    width: 180px;
    height: 130px;
  }

  .video-small {
    width: 55px;
    height: 60px;
  }

  .faq-question {
    font-size: 13px;
    padding: 14px 40px 14px 14px;
  }

  .centre-card {
    max-width: 100%;
  }

  .centre-info h3 {
    font-size: 16px;
  }

  .centre-info p {
    font-size: 12px;
  }

  .consult-btn {
    font-size: 13px;
    padding: 10px 15px;
  }
}
/* Force width = 280px for screens >= 1200px */
@media (min-width: 1200px)and (max-width: 1325px) {
  .form-row-inputs .appointment-input {
    width: 260px !important;
  }
}
@media(min-width:1376px){
  .form-row-inputs .appointment-input {
    width: 280px !important;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #2c2929 !important;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  box-shadow: 0 0 0px 1000px #ffffff inset !important;
  background-color: #ffffff !important;
  caret-color: #000 !important;
}
.form-row-captcha {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 301px;
  min-width: 301px;
  margin: 10px auto;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.text-captcha {
  background: #ffffff;
  border: 1px dashed #0362aa;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: #033b6c;
  user-select: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.captcha-refresh {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #0362aa;
  padding: 4px;
  line-height: 1;
  flex: 0 0 auto;
}

.captcha-input {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  height: 38px;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  flex: 0 0 130px !important;
  box-sizing: border-box;
  border: none;
  background: #ffffff;
}

.captcha-input:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(3, 98, 170, 0.25) !important;
  background: #ffffff;
}

#captcha-error {
  text-align: center;
}

@media (max-width: 992px),
       (max-width: 768px),
       (max-width: 576px) {
  .form-row-captcha {
    width: 301px;
    max-width: 301px;
    min-width: 301px;
  }

  .captcha-input {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    flex: 0 0 130px !important;
  }
}

.callback-captcha-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 301px !important;
  min-width: 301px !important;
  max-width: 301px !important;
  margin: 10px auto !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
  box-sizing: border-box !important;
}

.callback-captcha-row .text-captcha {
  background: #ffffff !important;
  border: 1px dashed #0362aa !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  color: #033b6c !important;
  white-space: nowrap !important;
  user-select: none !important;
  flex: 0 0 auto !important;
}

.callback-captcha-row .captcha-refresh {
  background: transparent !important;
  border: none !important;
  font-size: 18px !important;
  cursor: pointer !important;
  color: #0362aa !important;
  padding: 4px !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}

.callback-captcha-input {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  height: 38px !important;
  text-align: center !important;
  font-size: 14px !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
  flex: 0 0 130px !important;
  border: none !important;
  background: #ffffff !important;
}

.callback-captcha-input:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(3, 98, 170, 0.25) !important;
  background: #ffffff !important;
}

#callback-captcha-error {
  text-align: center !important;
  margin-top: 4px !important;
}

@media (max-width: 992px),
       (max-width: 768px),
       (max-width: 576px) {
  .callback-captcha-row {
    width: 301px !important;
    min-width: 301px !important;
    max-width: 301px !important;
  }

  .callback-captcha-input {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    flex: 0 0 130px !important;
  }
}




