
    :root {
        --color-brand-blue: #273896;
        --color-brand-yellow: #fcc90b;
        --color-text-dark: #1f2937;
        --color-text-muted: #6b7280;
    }

    .sidebar-services-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 28px 24px;
        box-shadow: 0 10px 30px rgba(39, 56, 150, 0.08);
        border: 1px solid rgba(39, 56, 150, 0.08);
        position: relative;
        overflow: hidden;
    }

    /* Top Accent Stripe */
    .sidebar-services-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--color-brand-blue) 0%, var(--color-brand-yellow) 100%);
    }

    .card-header-wrapper {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 12px;
    }

    .header-icon-box {
        width: 42px;
        height: 42px;
        background: rgba(252, 201, 11, 0.2);
        color: var(--color-brand-blue);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .sidebar-title {
        color: var(--color-brand-blue);
        font-size: 1.35rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.3;
    }

    .sidebar-desc {
        font-size: 0.9rem;
        color: var(--color-text-muted);
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .services-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .service-item {
        display: flex;
        align-items: flex-start;
        padding: 16px;
        background: #f8fafc;
        border-radius: 12px;
        border: 1px solid #f1f5f9;
        border-left: 4px solid var(--color-brand-blue);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-item:hover {
        transform: translateY(-2px) translateX(4px);
        background: #ffffff;
        border-left-color: var(--color-brand-yellow);
        box-shadow: 0 8px 20px rgba(39, 56, 150, 0.1);
    }

    .service-icon {
        width: 36px;
        height: 36px;
        background: rgba(39, 56, 150, 0.08);
        color: var(--color-brand-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        margin-right: 14px;
        margin-top: 2px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .service-item:hover .service-icon {
        background: var(--color-brand-yellow);
        color: #1a1a1a;
    }

    .service-text h4 {
        color: var(--color-brand-blue);
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 4px 0;
    }

    .service-text p {
        font-size: 0.85rem;
        color: var(--color-text-muted);
        margin: 0;
        line-height: 1.5;
    }

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Outfit:wght@600;700;800&display=swap');

p{
      font-family: 'Plus Jakarta Sans', sans-serif !important;
}
h1, h2, h3, h4, h5, h6{
    font-family:'Playfair Display', serif !important;
}

.premium-about-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Subtitle with line */
.subtitle-wrapper {
  display: flex;
  align-items: center;
}

.premium-subtitle {
  color: #fcc90b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  position: relative;
  padding-left: 50px;
}

.premium-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #fcc90b;
  transform: translateY(-50%);
}

/* Headings with Royal Serif Font */
.premium-heading {
font-family: 'Playfair Display', serif;
  color: #273896;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(to right, #273896, #fcc90b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  font-weight: 800;
}

/* Paragraphs */
.premium-content p {
      font-family: 'Plus Jakarta Sans', sans-serif;
  color: #202021;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.premium-content strong {
  color: #273896;
  font-weight: 600;
}

/* Premium Highlight Boxes */
.highlight-box {
  display: flex;
  align-items: center;
  background: #f8faff;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #fcc90b;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(40, 59, 106, 0.08);
  transform: translateY(-3px);
}

.highlight-box .icon-box {
  width: 45px;
  height: 45px;
  background: rgba(29, 190, 178, 0.1);
  color: #fcc90b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 15px;
}

.highlight-box span {
  color: #273896;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Ultra Premium Button */
.premium-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #fcc90b, #273896); /* Solid dark blue */
  color: #ffffff !important;
  padding: 16px 35px;
  border-radius: 1px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #273896, #273896);
  transition: all 0.4s ease;
  z-index: -1;
}

.premium-btn:hover::before {
  width: 100%;
}

.premium-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.premium-btn:hover i {
  transform: translateX(5px);
}

/* Image Section - Geometric Premium Look */
.image-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.image-backdrop {
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 30px;
  background: linear-gradient(135deg, rgba(29, 190, 178, 0.1), rgba(40, 59, 106, 0.05));
  border: 2px solid #fcc90b;
  border-radius: 12px;
  z-index: -1;
}

.doctor-premium-img {
  width: 100%;
  border-radius: 1px;
  box-shadow: -10px 15px 40px rgba(40, 59, 106, 0.15);
  display: block;
}

/* Sleek Badge */
.premium-exp-badge {
  position: absolute;
  bottom: -15px;
  left: -20px;
  background: linear-gradient(135deg, #273896, #1d2a4d);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(40, 59, 106, 0.3);
  border-bottom: 4px solid #fcc90b;
}

.premium-exp-badge .exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #fcc90b;
}

.premium-exp-badge .exp-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .premium-heading { font-size: 2.5rem; }
  .image-wrapper { padding-right: 15px; padding-bottom: 15px; margin-top: 40px; }
  .image-backdrop { top: 15px; left: 15px; }
  .premium-exp-badge { left: 50%; transform: translateX(-50%); bottom: -30px; width: max-content; }
}
@media(max-width: 576px){
    .premium-heading, .alt-main-heading, .outreach-title, .dj-main-title, .dj-faq-title{
        font-size: 25px !important;
    }
}

:root {
  --blue-primary: #273896;
  --yellow-accent: #e1b717;
  --bg-clean: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #18191a;
}

.eye-services-section {
  background-color: var(--bg-clean);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Header Section */
.pill-badge {
  display: inline-block;
  background-color: rgba(40, 59, 106, 0.06);
  color: var(--blue-primary);
  border: 1px solid rgba(225, 183, 23, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
}

.heading-title {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-top: 8px;
}

.heading-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 700px;
  margin: 8px auto 0 auto;
}

/* Card Container */
.ui-floating-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ui-floating-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(40, 59, 106, 0.1);
  border-color: rgba(225, 183, 23, 0.5);
}

/* Image Wrap & Top Glass Tag */
.ui-img-box {
  position: relative;
  width: 100%;
  height: 195px;
  overflow: hidden;
  background-color: #cbd5e1;
}

.ui-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ui-floating-card:hover .ui-img-box img {
  transform: scale(1.05);
}


/* Overlay Floating Box */
.ui-content-box {
  background: #ffffff;
  border-radius: 14px;
  margin: -32px 10px 12px 10px;
  padding: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  border: 1px solid #f1f5f9;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ui-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ui-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Fixed Pill Button with Proper Spacing & Visibility */
.ui-pill-btn {
  align-self: flex-start;
  background-color: #dcb319;
  color: var(--blue-primary) !important; /* Forces text to stay dark blue */
  border: 1px solid rgba(225, 183, 23, 0.5);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Adds clean spacing between text and arrow */
}

.ui-pill-btn i {
  font-size: 0.72rem;
  color: var(--blue-primary);
  transition: transform 0.3s ease;
}

/* Hover State - Solves disappear issue & keeps text visible */
.ui-floating-card:hover .ui-pill-btn {
  background-color: var(--blue-primary);
  color: #ffffff !important; /* Turns text clear white on hover */
  border-color: var(--blue-primary);
}

.ui-floating-card:hover .ui-pill-btn i {
  color: var(--yellow-accent); /* Arrow turns yellow on hover */
  transform: translateX(4px);
}

   .page-header-banner {
      position: relative;
      background: linear-gradient(135deg, rgb(39 56 150 / 79%), rgb(18 26 75 / 81%)), url(../image/catract-surgery-dristi-1.JPG) center / cover no-repeat;
      color: #ffffff;
      padding: 50px 0; /* Standard compact spacing */
        font-family: 'Plus Jakarta Sans', sans-serif;
   }

   .page-header-banner .banner-title {
       font-family:'Playfair Display', serif;
      font-size: 2.25rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
   }

   .page-header-banner .banner-text {
         font-family: 'Plus Jakarta Sans', sans-serif !important;
      font-size: 1rem;
      color: #e2e8f0;
      max-width: 750px;
      margin: 0 auto 24px auto;
      line-height: 1.5;
   }

   /* Button Container Spacing */
   .banner-btn-group {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px; /* Buttons ke beech proper spacing */
      flex-wrap: wrap;
   }

   /* Primary Yellow Button */
   .btn-custom-yellow {
      background-color: #ebbe16;
      color: #273896;
      font-weight: 700;
      border: 2px solid #ebbe16;
      padding: 10px 24px;
      border-radius: 6px;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
   }

   .btn-custom-yellow:hover {
      background-color: #d4a90f;
      border-color: #d4a90f;
      color: #1a2766;
      transform: translateY(-2px);
   }

   /* Secondary Outline Button */
   .btn-custom-outline {
      background-color: transparent;
      color: #ffffff;
      font-weight: 600;
      border: 2px solid #ffffff;
      padding: 10px 24px;
      border-radius: 6px;
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
   }

   .btn-custom-outline:hover {
      background-color: #ebbe16;
      border-color: #ebbe16;
      color: #273896;
      transform: translateY(-2px);
   }

   /* Icon styling inside buttons */
   .btn-custom-yellow i,
   .btn-custom-outline i {
      font-size: 1rem;
      margin-right: 8px; /* Icon aur Text ke beech space */
   }


.dj-qc-section {
  background-color: #f4f6f9;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- Main Wrapper --- */
.dj-qc-wrapper {
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid rgba(53, 71, 95, 0.1);
}

/* --- Left Side (Dark Slate Blue) --- */
.dj-qc-left {
  background: linear-gradient(135deg, #273896 0%, #273896 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.dj-qc-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.dj-qc-divider {
  width: 45px;
  height: 3px;
  background-color: #fecb2e; /* Yellow Accent */
  border-radius: 2px;
}

.dj-qc-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.dj-bg-icon {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 160px;
  color: rgba(255, 255, 255, 0.04);
  transform: rotate(-10deg);
  pointer-events: none;
}

/* --- Social Icons --- */
.dj-qc-social {
  display: flex;
  gap: 10px;
}

.dj-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fecb2e;
  border: 1px solid rgba(254, 203, 46, 0.3);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dj-social-link:hover {
  background: #fecb2e;
  color: #35475f;
  transform: translateY(-3px);
}

/* --- Individual Address Cards --- */
.dj-qc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 10px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s ease;
}

.dj-qc-card:hover {
  background-color: #ffffff;
  border-color: #35475f;
  box-shadow: 0 4px 15px rgba(53, 71, 95, 0.08);
  transform: translateY(-2px);
}

.dj-qc-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-color: #273896;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.dj-qc-card:hover .dj-qc-icon {
  background-color: #fecb2e;
  color: #35475f;
}

.dj-qc-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #35475f;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dj-qc-info p {
  color: #555;
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 0;
}

/* --- Contact Strip Below Addresses --- */
.dj-contact-strip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.dj-qc-icon-yellow {
  width: 42px;
  height: 42px;
  background-color: #fecb2e;
  color: #35475f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.dj-phone-link, .dj-email-link {
  font-size: 1rem;
  font-weight: 700;
  color: #35475f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dj-phone-link:hover, .dj-email-link:hover {
  color: #fecb2e;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .dj-qc-right, .dj-qc-left {
    padding: 30px 20px !important;
  }
}


.dj-appointment-section {
  background-color: #f8faff; /* Light background behind the card */
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- Wrapper --- */
.dj-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

/* --- Left Panel (Gradient + Image) --- */
.dj-left-panel {
background: linear-gradient(135deg, rgb(39 56 150 / 88%) 0%, rgb(240 193 17 / 92%) 100%), url(assets/images/team/3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
  color: #ffffff;
}

.dj-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dj-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.dj-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Left Panel Contact Info */
.dj-icon-circle {
  width: 50px;
  height: 50px;
  background: rgb(46 63 104);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fcc90b;
}

.dj-contact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.dj-contact-value {
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* --- Right Panel (Form) --- */
.dj-right-panel {
  padding: 50px;
}

.dj-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #273896;
  margin-bottom: 10px;
}

.dj-divider {
  width: 50px;
  height: 3px;
  background-color: #fcc90b;
  border-radius: 2px;
}

/* Form Fields */
.dj-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 8px;
  display: block;
}

.dj-input {
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 12px 15px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #273896;
  box-shadow: none !important;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.dj-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.dj-input:focus {
  border-color: #fcc90b;
  box-shadow: 0 0 0 3px rgba(29, 190, 178, 0.15) !important;
}

/* Submit Button (Left Aligned, Normal Width) */
.dj-submit-btn {
  display: inline-flex;
  align-items: center;
  background-color: #273896;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.dj-submit-btn:hover {
  background-color: #fcc90b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 190, 178, 0.3);
}

.dj-submit-btn i {
  transition: transform 0.3s ease;
}

.dj-submit-btn:hover i {
  transform: translateX(4px) translateY(-4px);
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE & TABLET FIX)
   ========================================= */
@media (max-width: 991px) {
  /* Tablet/Mobile Adjustments */
  .dj-left-panel {
    padding: 40px 25px;
  }
  
  .dj-right-panel {
    padding: 40px 25px;
  }
  
  .dj-main-title {
    font-size: 2.2rem;
  }
  
  .dj-form-title {
    font-size: 1.8rem;
  }
  
  .dj-contact-info {
    margin-top: 40px !important;
  }
}

@media (max-width: 575px) {
  /* Small Mobile Specific Adjustments */
  .dj-left-panel, .dj-right-panel {
    padding: 30px 40px;
  }
  
  .dj-main-title {
    font-size: 2rem;
  }
  
  .dj-submit-btn {
    width: 100%; /* Agar mobile me button full width chahiye to ise rakhein, warna is line ko hata dein */
    justify-content: center;
  }
}


.dj-custom-faq-section {
    background-color: #3e65ed14; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 70px 0 50px 0;
}

.dj-faq-subtitle {
    display: inline-block;
    background-color: rgba(29, 190, 178, 0.1);
    border: 1px solid #ebbe16;
    color: #273896;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.dj-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 800;
    color: #273896;
}

/* Accordion Item Styling */
.dj-custom-acc-item {
    background-color: #ffffff;
    border: 1px solid rgba(40, 59, 106, 0.08) !important;
    border-radius: 10px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(40, 59, 106, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

.dj-custom-acc-item:hover {
    box-shadow: 0 8px 25px rgba(40, 59, 106, 0.08);
    border-color: rgba(29, 190, 178, 0.3) !important;
}

.dj-custom-acc-header {
    cursor: pointer;
    padding: 18px 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.dj-custom-acc-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #273896 !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: 100%;
}

.dj-custom-acc-title::before {
    display: none !important;
}

.dj-custom-acc-header:not(.collapsed) .dj-custom-acc-title {
    color: #ebbe16 !important;
}

.dj-custom-acc-title::after {
    content: '+';
    font-family: sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #273896;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    margin-left: 10px;
}

.dj-custom-acc-header[aria-expanded="true"] .dj-custom-acc-title::after,
.dj-custom-acc-header:not(.collapsed) .dj-custom-acc-title::after {
    content: '-';
    color: #ebbe16;
    transform: rotate(180deg);
}

.dj-custom-acc-body {
    padding: 0 20px 20px 20px;
    background-color: #ffffff;
}

.dj-custom-acc-body p {
    color: #5a657c;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Right Side Image Box Styling */
.faq-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(39, 56, 150, 0.12);
}

.faq-img-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.faq-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(39, 56, 150, 0.92);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    border-left: 4px solid #ebbe16;
}

.faq-img-badge h5 {
    color: #ebbe16;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.faq-img-badge p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .dj-faq-title {
        font-size: 2rem;
    }
    .dj-custom-acc-title {
        font-size: 1rem;
    }
    .faq-img-wrapper img {
        min-height: 320px;
    }
}

.advanced-treatment-card {
    background-color: #ffffff;
    border: 1px solid #eef0f6;
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: 0 8px 25px rgba(39, 56, 150, 0.07);
    border-top: 4px solid #ebbe16;
}

.advanced-card-title {
    color: #273896;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.advanced-card-title i {
    color: #ebbe16;
    font-size: 1.4rem;
}

.advanced-card-desc {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.treatment-subheading {
    color: #273896;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.treatment-box-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.25s ease-in-out;
}

.treatment-box-item:hover {
    background-color: #ffffff;
    border-color: #273896;
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(39, 56, 150, 0.1);
}

.treatment-icon {
    color: #ebbe16;
    font-size: 1.05rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.treatment-text {
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}


.symptoms-card-wrapper {
    background-color: #ffffff;
    border: 1px solid #eef0f6;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 6px 20px rgba(39, 56, 150, 0.07);
}

.symptoms-card-header {
    color: #273896;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ebbe16;
    display: flex;
    align-items: center;
}

.symptoms-card-header i {
    color: #ebbe16;
    font-size: 1.25rem;
}

.symptom-list-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 9px 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.symptom-list-item:last-child {
    margin-bottom: 0;
}

.symptom-list-item:hover {
    background-color: #ffffff;
    border-color: #273896;
    transform: translateX(4px);
    box-shadow: 0 4px 10px rgba(39, 56, 150, 0.08);
}

.symptom-icon {
    color: #ebbe16;
    font-size: 1rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.symptom-text {
    color: #2d3748;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}


:root {
    --primary-navy: #273896;
    --accent-yellow: #ebbe16;
}

.cataract-bs4-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

/* Row Align Items Fix for Sticky */
.cataract-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Crucial for Sticky to work */
}

/* Left Card Styling */
.cataract-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef0f6;
    box-shadow: 0 8px 25px rgba(39, 56, 150, 0.06);
    padding: 30px;
}

.badge-custom {
    background-color: rgba(235, 190, 22, 0.18);
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.title-custom {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.9rem;
}

.highlight-box {
    background-color: #f4f6fc;
    border-left: 4px solid var(--accent-yellow);
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    color: var(--primary-navy);
    font-weight: 500;
}

.img-cover {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* -----------------------------------------
   STICKY FORM STYLING (BOOTSTRAP 4 FIX)
----------------------------------------- */
.sticky-form-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 105px; /* Top spacing when sticky */
    z-index: 10;
}

.sticky-form-card {
    background-color: var(--primary-navy);
    color: #ffffff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(39, 56, 150, 0.25);
}

.form-icon-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.form-icon-group i {
    position: absolute;
    left: 12px;
    color: var(--primary-navy);
    font-size: 0.9rem;
    z-index: 5;
}

.form-icon-group .form-control {
    padding-left: 36px;
    font-size: 0.88rem;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
}

.form-icon-group .form-control:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 0.2rem rgba(235, 190, 22, 0.3);
}

textarea.form-control {
    height: 65px !important;
    resize: none;
    padding-top: 10px;
}

.btn-accent-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-navy);
    font-weight: 700;
    border: none;
    padding: 10px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accent-yellow:hover {
    background-color: #d4a90f !important;
    color: #fff !important;
}

