

  /* 1. Base Section Container */
  .dn-cta-animated-section {
    position: relative;
    background: linear-gradient(135deg, #1f2d79 0%, #273896 100%);
    padding: 90px 20px 140px 20px;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
    width: 100%;
  }

  /* 2. Content Typography */
  .dn-cta-content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 950px;
    margin: 0 auto;
  }

  .dn-cta-subtitle {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    opacity: 0.95;
  }

  .dn-cta-main-title {
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.25;
    margin: 0 0 16px 0;
    text-transform: uppercase;
  }

  .dn-cta-description {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 35px auto;
    max-width: 780px;
    line-height: 1.5;
  }

  /* 3. CTA Action Button Design */
  .dn-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FECB2E; /* Primary Gold/Yellow */
    border-radius: 50px;
    padding: 6px 8px 6px 30px;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(254, 203, 46, 0.35);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
  }

  .dn-cta-btn span {
    color: #273896; /* Dark Blue Text */
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-right: 18px;
  }

  /* Arrow Circle Box */
  .dn-btn-arrow-box {
    width: 42px;
    height: 42px;
    background-color: rgba(39, 56, 150, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .dn-btn-arrow-box svg {
    width: 20px;
    height: 20px;
    stroke: #273896;
    transition: transform 0.3s ease;
  }

  /* Button Hover State Animation */
  .dn-cta-btn:hover {
    background-color: #fdbd05;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(254, 203, 46, 0.55);
  }

  .dn-cta-btn:hover .dn-btn-arrow-box {
    background-color: #273896;
  }

  .dn-cta-btn:hover .dn-btn-arrow-box svg {
    stroke: #FECB2E;
    transform: translateX(3px);
  }

  /* 4. Bottom SVG Animated Wave Setup */
  .dn-animated-waves-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
  }

  .dn-waves {
    position: relative;
    width: 100%;
    height: 110px;
    margin-bottom: -1px; /* Gap fix */
    min-height: 70px;
    max-height: 150px;
  }

  /* Continuous Motion Parallax Animation */
  .dn-wave-parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
  }
  .dn-wave-parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 9s;
  }
  .dn-wave-parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 13s;
  }
  .dn-wave-parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 17s;
  }
  .dn-wave-parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 22s;
  }

  @keyframes move-forever {
    0% {
      transform: translate3d(-90px, 0, 0);
    }
    100% {
      transform: translate3d(85px, 0, 0);
    }
  }

  /* 5. Fully Responsive Media Queries */
  @media (max-width: 991px) {
    .dn-cta-animated-section {
      padding: 70px 20px 120px 20px;
    }
    .dn-waves {
      height: 90px;
    }
  }

  @media (max-width: 767px) {
    .dn-cta-animated-section {
      padding: 55px 16px 100px 16px;
    }
    .dn-cta-subtitle {
      font-size: 0.95rem;
      margin-bottom: 10px;
    }
    .dn-cta-main-title {
      font-size: 1.45rem;
      letter-spacing: 0.5px;
    }
    .dn-cta-description {
      font-size: 0.92rem;
      margin-bottom: 28px;
    }
    .dn-cta-btn {
      padding: 5px 6px 5px 22px;
    }
    .dn-cta-btn span {
      font-size: 0.92rem;
      margin-right: 12px;
    }
    .dn-btn-arrow-box {
      width: 36px;
      height: 36px;
    }
    .dn-btn-arrow-box svg {
      width: 16px;
      height: 16px;
    }
    .dn-waves {
      height: 60px;
      min-height: 50px;
    }
  }
  
    .dr-profile-fullwidth-sec {
      --gold: #ebbe16;
      --navy: #273896;
      --navy-light: #f0f3ff;
      --text-dark: #1e293b;
      --text-gray: #343538;
      --border-color: #e2e8f0;
      
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: #ffffff;
      padding: 4rem 1.5rem;
      color: var(--text-dark);
      width: 100%;
      box-sizing: border-box;
    }

    .dr-profile-fullwidth-sec * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .dr-fw-container {
      max-width: 1080px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(39, 56, 150, 0.08);
      border: 1px solid var(--border-color);
    }

    /* Top Layout - Photo + Main Info */
    .dr-fw-top {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 3rem;
      align-items: start;
    }

    /* Doctor Image Box */
    .dr-fw-img-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-light), #e0e7ff);
    position: relative;
}

    .dr-fw-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Info Details */
    .dr-fw-details {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .dr-fw-name {
      font-size: clamp(2rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.15;
    }

    .dr-fw-degrees {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.5px;
    }

    .dr-fw-specs {
      font-size: 1rem;
      color: var(--text-gray);
      font-weight: 500;
      line-height: 1.5;
    }

    .dr-fw-divider {
      border: none;
      border-top: 1px dashed var(--border-color);
      margin: 1.25rem 0;
    }

    /* Workplace Details */
    .dr-fw-workplace {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .dr-fw-label {
      font-size: 0.8rem;
      color: var(--text-gray);
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .dr-fw-workplace-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
    }

    /* Action & Fee Section */
    .dr-fw-action-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .dr-fw-fee {
      display: flex;
      flex-direction: column;
    }

    .dr-fw-fee-val {
      font-size: 20px;
      font-weight: 800;
      color: var(--navy);
    }

    .dr-fw-fee-val span {
      font-size: 0.8rem;
      color: var(--text-gray);
      font-weight: 400;
    }

    /* Book Appointment Button */
    .dr-fw-book-btn {
      background: var(--navy);
      color: #ffffff;
      padding: 0.95rem 2.25rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      box-shadow: 0 4px 16px rgba(39, 56, 150, 0.25);
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .dr-fw-book-btn:hover {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 6px 24px rgba(235, 190, 22, 0.4);
      transform: translateY(-2px);
    }

    /* Bottom 4 Grid Cards */
    .dr-fw-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
    }

    .dr-fw-stat-card {
      background: var(--navy-light);
      padding: 1.25rem;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      border: 1px solid rgba(39, 56, 150, 0.06);
    }

    .dr-fw-stat-lbl {
      font-size: 0.8rem;
      color: var(--text-gray);
      font-weight: 600;
    }

    .dr-fw-stat-val {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .dr-fw-star {
      color: var(--gold);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .dr-fw-top {
        grid-template-columns: 220px 1fr;
        gap: 2rem;
      }
      
      .dr-fw-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .dr-fw-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .dr-fw-img-box {
        max-width: 260px;
        margin: 0 auto;
      }

      .dr-profile-fullwidth-sec {
        padding: 2rem 1rem;
      }

      .dr-fw-container {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .dr-fw-action-bar {
        flex-direction: column;
        align-items: stretch;
      }

      .dr-fw-book-btn {
        justify-content: center;
        width: 100%;
      }

      .dr-fw-stats-grid {
        grid-template-columns: 1fr;
      }
    }
  
  
    .dr-specs-3d-sec {
      --gold: #ebbe16;
      --navy: #273896;
      --navy-dark: #1a266a;
      --bg-light: #f8fafc;
      --card-bg: #ffffff;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --border-color: rgba(39, 56, 150, 0.1);
      
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
      perspective: 1200px; /* 3D Perspective base */
    }

    /* Section Header Styles */
    .dr-specs-3d-sec .dr-sec-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .dr-specs-3d-sec .dr-title-underline {
  width: 70px;
  height: 4px;
  margin: 0.75rem auto 1.5rem;
  border-radius: 2px;
  
  /* Animated Multi-Color Gradient */
  background: linear-gradient(
    90deg, 
    var(--gold) 0%, 
    var(--navy) 50%, 
    var(--gold) 100%
  );
  background-size: 200% auto;
  animation: drColorShift 3s linear infinite;
}

/* Color Shift Keyframes */
@keyframes drColorShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

    .dr-specs-3d-sec .dr-sec-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 650px;
      margin: 0 auto;
    }

    /* 3D Card Architecture */
    .dr-specs-3d-sec .dr-3d-card-wrapper {
      height: 100%;
      perspective: 1000px;
    }

    .dr-specs-3d-sec .dr-3d-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 2.25rem 1.75rem;
      height: 100%;
      border: 1px solid var(--border-color);
      box-shadow: 0 10px 30px rgba(39, 56, 150, 0.06);
      transform-style: preserve-3d;
      transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    /* Interactive 3D Hover Effects */
    .dr-specs-3d-sec .dr-3d-card:hover {
      transform: translateY(-12px) rotateX(4deg) rotateY(-2deg);
      box-shadow: 0 25px 50px rgba(39, 56, 150, 0.15);
      border-color: rgba(235, 190, 22, 0.4);
    }

    /* Distinct Top Accent Indicator for Cards */
    .dr-specs-3d-sec .dr-3d-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 20px;
      right: 20px;
      height: 4px;
      background: linear-gradient(90deg, var(--navy), var(--gold));
      border-radius: 4px 4px 0 0;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }

    .dr-specs-3d-sec .dr-3d-card:hover::before {
      opacity: 1;
    }

    /* Animated Icon Box with Floating Pulse */
    .dr-specs-3d-sec .dr-icon-wrapper {
      width: 64px;
      height: 64px;
      background: rgba(39, 56, 150, 0.05);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--navy);
      transform: translateZ(25px);
      transition: all 0.4s ease;
    }

    .dr-specs-3d-sec .dr-3d-card:hover .dr-icon-wrapper {
      background: var(--navy);
      color: var(--gold);
      transform: translateZ(40px) scale(1.05);
      animation: drIconFloat 3s ease-in-out infinite alternate;
    }

    /* Header & Badges */
    .dr-specs-3d-sec .dr-card-heading {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
      transform: translateZ(15px);
    }

    .dr-specs-3d-sec .dr-card-desc {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      transform: translateZ(10px);
    }

    /* Key Focus Bullet Tags */
    .dr-specs-3d-sec .dr-feature-list {
      list-style: none;
      padding: 0;
      margin-top: auto;
      transform: translateZ(15px);
    }

    .dr-specs-3d-sec .dr-feature-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--navy-dark);
      margin-bottom: 0.5rem;
    }

    .dr-specs-3d-sec .dr-bullet-dot {
      width: 7px;
      height: 7px;
      background-color: var(--gold);
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }

    /* Micro-Animations */
    @keyframes drIconFloat {
      0% { transform: translateZ(40px) translateY(0); }
      100% { transform: translateZ(40px) translateY(-6px); }
    }

    /* Mobile adjustments */
    @media (max-width: 767.98px) {
      .dr-specs-3d-sec .dr-3d-card {
        padding: 1.75rem 1.25rem;
      }
      .dr-specs-3d-sec .dr-3d-card:hover {
        transform: translateY(-6px); /* Milder tilt on mobile devices */
      }
    }
    

/* Main Section */
.gco-opinion-section {
    padding: 75px 20px;
    background: linear-gradient(135deg, rgba(38, 55, 146, 0.05) 0%, rgba(252, 201, 11, 0.12) 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #4b5563;
    overflow-x: hidden;
}

.gco-container {
    max-width: 1160px;
    margin: 0 auto;
}

/* Header */
.gco-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 35px auto;
}

.gco-badge {
    display: inline-block;
    background: #263792;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.gco-title {
    color: #263792 !important;
    font-size: 37px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 14px 0;
}

.gco-desc {
    font-size: 16.5px;
    color: #1a1a1b;
    line-height: 1.65;
    margin: 0 0 12px 0;
}

.gco-sub-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Subheading */
.gco-subheading {
    text-align: center;
    margin-bottom: 45px;
}

.gco-subheading h3 {
    color: #263792;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* 3-Column Grid using Flexbox for balanced alignment */
.gco-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px 24px;
}

/* Individual Card (Width set to fit exactly 3 per row on Desktop) */
.gco-card-item {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 18px 24px 18px;
    box-shadow: 0 10px 30px rgba(38, 55, 146, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 0 1 calc(33.333% - 16px);
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

/* Outer Bracket Accents */
.gco-card-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 65%;
    height: 52%;
    border-top: 3.5px solid var(--accent-color);
    border-left: 3.5px solid var(--accent-color);
    border-top-left-radius: 20px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.gco-card-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 55%;
    height: 48%;
    border-bottom: 3.5px solid var(--accent-color);
    border-right: 3.5px solid var(--accent-color);
    border-bottom-right-radius: 20px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Card Hover Animation */
.gco-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(38, 55, 146, 0.14);
}

.gco-card-item:hover .gco-card-num {
    transform: scale(1.1);
}

.gco-card-item:hover .gco-card-icon {
    transform: scale(1.06);
}

/* Top-Right Number Circle */
.gco-card-num {
    position: absolute;
    top: -16px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 3.5px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 14px rgba(38, 55, 146, 0.12);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left Icon Box */
.gco-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--icon-bg);
    color: var(--icon-color, var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

/* Content */
.gco-card-content {
    flex: 1;
    padding-right: 12px;
}

.gco-card-title {
    color: #263792 !important;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.gco-card-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: #1a1a1b;
    margin: 0;
}

/* Color Theme Classes */
.theme-blue {
    --accent-color: #263792 !important;
    --icon-bg: rgba(38, 55, 146, 0.1);
    --icon-color: #263792;
}

.theme-yellow {
    --accent-color: #fcc90b !important;
    --icon-bg: rgba(252, 201, 11, 0.18);
    --icon-color: #d6a400;
}

/* Bottom CTA & Note */
.gco-disclaimer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 14px;
    border: 1px solid #edf2f7;
    border-left: 5px solid #fcc90b;
    box-shadow: 0 4px 18px rgba(38, 55, 146, 0.05);
}

.gco-disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.gco-info-icon {
    flex-shrink: 0;
    color: #263792;
    margin-top: 2px;
}

.gco-disclaimer p {
    font-size: 15.5px;
    color: #191a1b;
    line-height: 1.6;
    margin: 0;
}

.gco-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #263792 !important;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 8px;
    white-space: nowrap;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.gco-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .gco-card-item {
        flex: 0 1 calc(50% - 12px); /* 2 columns on Tablet */
    }
}

@media (max-width: 640px) {
    .gco-opinion-section {
        padding: 45px 16px;
    }

    .gco-title {
        font-size: 24px;
    }

    .gco-subheading h3 {
        font-size: 20px;
    }

    .gco-desc {
        font-size: 14px;
    }

    .gco-grid {
        gap: 32px 14px;
    }

    .gco-card-item {
        flex: 0 1 100%; /* 1 column on Mobile */
        padding: 22px 16px 18px 16px;
    }

    .gco-card-title {
        font-size: 14px;
    }

    .gco-card-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gco-disclaimer {
        flex-direction: column;
        align-items: flex-start;
    }

    .gco-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

    .dr-timeline-dual-sec {
      --gold: #ebbe16;
      --navy: #273896;
      --navy-dark: #0f172a;
      --bg-slate: #f8fafc;
      --card-bg: #ffffff;
      --text-dark: #334155;
      --text-muted: #64748b;
      --border-color: #e2e8f0;

      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: var(--bg-slate);
      color: var(--text-dark);
      width: 100%;
    }

    /* Animated Header Underline */
    .dr-timeline-dual-sec .dr-sec-title {
      font-size: clamp(2rem, 4vw, 2.5rem);
      font-weight: 800;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .dr-timeline-dual-sec .dr-title-underline {
      width: 80px;
      height: 4px;
      margin: 0.75rem auto 2.5rem;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
      background-size: 200% 100%;
      box-shadow: 0 0 12px rgba(235, 190, 22, 0.45);
      animation: drGlowShift 3s ease-in-out infinite;
    }

    @keyframes drGlowShift {
      0% { background-position: 0% 50%; transform: scaleX(1); }
      50% { background-position: 100% 50%; transform: scaleX(1.15); }
      100% { background-position: 0% 50%; transform: scaleX(1); }
    }

    /* Vertical Center Dividing Line */
    .dr-timeline-dual-sec .dr-dual-wrapper {
      position: relative;
    }

    .dr-timeline-dual-sec .dr-dual-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: linear-gradient(180deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
      transform: translateX(-50%);
      border-radius: 2px;
      z-index: 1;
    }

    /* Card Box & Node Styling */
    .dr-timeline-dual-sec .dr-card-item {
      position: relative;
      height: 100%;
    }

    .dr-timeline-dual-sec .dr-timeline-card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 1.75rem;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      transition: all 0.4s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .dr-timeline-dual-sec .dr-card-item:hover .dr-timeline-card {
      box-shadow: 0 15px 35px rgba(39, 56, 150, 0.1);
      border-color: rgba(235, 190, 22, 0.5);
      transform: translateY(-4px);
    }

    /* Number Badge Badge */
    .dr-timeline-dual-sec .dr-card-header {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1.25rem;
      border-bottom: 2px solid #f1f5f9;
      padding-bottom: 0.75rem;
    }

    .dr-timeline-dual-sec .dr-timeline-node {
      width: 38px;
      height: 38px;
      background: var(--navy);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.85rem;
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(39, 56, 150, 0.15);
      transition: all 0.3s ease;
    }

    .dr-timeline-dual-sec .dr-card-item:hover .dr-timeline-node {
      background: var(--gold);
      color: var(--navy);
      transform: scale(1.1);
    }

    .dr-timeline-dual-sec .dr-card-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0;
      line-height: 1.3;
    }

    /* Internal Content Grid */
    .dr-timeline-dual-sec .dr-spec-grid {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .dr-timeline-dual-sec .dr-spec-box {
      background: #f8fafc;
      padding: 0.85rem 1rem;
      border-radius: 10px;
      font-size: 0.9rem;
      line-height: 1.55;
      border-left: 3px solid var(--navy);
    }

    .dr-timeline-dual-sec .dr-spec-box.dr-why {
      border-left-color: var(--gold);
    }

    .dr-timeline-dual-sec .dr-spec-box.dr-exp {
      background: #f0f3ff;
      border-left-color: var(--navy);
      margin-top: auto;
    }

    .dr-timeline-dual-sec .dr-spec-lbl {
      font-weight: 700;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: block;
      margin-bottom: 0.2rem;
      color: var(--navy);
    }

    .dr-timeline-dual-sec .dr-spec-box.dr-why .dr-spec-lbl {
      color: #b48f09;
    }

    /* Mobile View Responsive Adjustment */
    @media (max-width: 991.98px) {
      .dr-timeline-dual-sec .dr-dual-wrapper::before {
        display: none;
      }
    }
  
 
    .dj-custom-faq-section {
      background: #f8fafc;
      color: #1e293b;
    }
    .dj-faq-title {
      font-size: 2rem;
      font-weight: 800;
      color: #273896;
    }
    .dj-faq-underline {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #ebbe16, #273896);
      border-radius: 2px;
    }
    /* FAQ Accordion Custom Styling */
    .dj-custom-acc-item {
      background: #ffffff;
      border: 1px solid rgba(39, 56, 150, 0.12) !important;
      border-radius: 14px !important;
      margin-bottom: 0.85rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      transition: all 0.3s ease;
    }
    .dj-custom-acc-item:hover {
      border-color: rgba(235, 190, 22, 0.5) !important;
      box-shadow: 0 6px 18px rgba(39, 56, 150, 0.08);
    }
    .dj-custom-acc-header {
      padding: 1rem 1.25rem;
      cursor: pointer;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dj-custom-acc-title {
      font-size: 0.98rem;
      font-weight: 700;
      color: #273896 !important;
      text-decoration: none !important;
      display: block;
      width: 100%;
    }
    .dj-custom-acc-body {
      padding: 0 1.25rem 1.25rem 1.25rem;
      color: #64748b;
      font-size: 0.925rem;
      line-height: 1.6;
    }
    
    /* Right Side Image Card Styling */
    .dj-faq-img-wrapper {
      position: sticky;
      top: 20px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(39, 56, 150, 0.12);
      border: 1px solid rgba(39, 56, 150, 0.15);
      background: #ffffff;
    }
    .dj-faq-img-wrapper img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .dj-faq-img-wrapper:hover img {
      transform: scale(1.03);
    }
    .dj-faq-img-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(360deg, #0f172a 0%, rgba(15, 23, 42, 0.7) 60%, transparent 100%);
      padding: 1.75rem 1.5rem 1.25rem;
      color: #ffffff;
    }
    .dj-faq-img-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: #ebbe16;
      color: #273896;
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      margin-bottom: 0.5rem;
    }
  
    .dr-rev-premium-sec {
      --navy: #273896;
      --navy-dark: #0f172a;
      --gold: #ebbe16;
      --gold-dark: #b48f09;
      --bg-slate: #f8fafc;
      --card-bg: #ffffff;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --border-color: rgba(39, 56, 150, 0.1);

      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: var(--bg-slate);
      color: var(--text-dark);
      width: 100%;
    }

    /* Ambient Dynamic Glowing Orbs */
    .dr-rev-premium-sec .dr-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }
    .dr-rev-premium-sec .dr-orb-1 {
      width: 400px;
      height: 400px;
      background: var(--gold);
      top: -100px;
      left: -100px;
    }
    .dr-rev-premium-sec .dr-orb-2 {
      width: 450px;
      height: 450px;
      background: var(--navy);
      bottom: -150px;
      right: -100px;
    }

    /* Header Styling */
    .dr-rev-premium-sec .dr-sec-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(39, 56, 150, 0.08);
      color: var(--navy);
      font-weight: 800;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.4rem 1.1rem;
      border-radius: 50px;
      border: 1px solid rgba(39, 56, 150, 0.15);
    }

    .dr-rev-premium-sec .dr-badge-dot {
      width: 8px;
      height: 8px;
      background-color: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--gold);
    }

    .dr-rev-premium-sec .dr-sec-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.5px;
    }

    .dr-rev-premium-sec .dr-title-underline {
      width: 80px;
      height: 4px;
      margin: 0.75rem auto 1.5rem;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
      background-size: 200% 100%;
      box-shadow: 0 0 12px rgba(235, 190, 22, 0.45);
      animation: drGlowShift 3s ease-in-out infinite;
    }

    @keyframes drGlowShift {
      0% { background-position: 0% 50%; transform: scaleX(1); }
      50% { background-position: 100% 50%; transform: scaleX(1.15); }
      100% { background-position: 0% 50%; transform: scaleX(1); }
    }

    .dr-rev-premium-sec .dr-sec-subtitle {
      color: var(--text-muted);
      max-width: 750px;
      margin: 0 auto;
      font-size: 1.05rem;
      line-height: 1.6;
    }

    /* Cards System */
    .dr-rev-premium-sec .dr-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 2.25rem 1.75rem;
      height: 100%;
      border: 1px solid var(--border-color);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .dr-rev-premium-sec .dr-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(39, 56, 150, 0.12);
      border-color: rgba(235, 190, 22, 0.4);
    }

    /* Featured Central Card */
    .dr-rev-premium-sec .dr-card-featured {
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: #ffffff;
      border: none;
      box-shadow: 0 15px 35px rgba(39, 56, 150, 0.25);
    }

    .dr-rev-premium-sec .dr-card-featured:hover {
      box-shadow: 0 22px 45px rgba(39, 56, 150, 0.35);
    }

    /* Icon Box & Inline SVG Fixes */
    .dr-rev-premium-sec .dr-icon-box {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: rgba(39, 56, 150, 0.08);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
    }

    .dr-rev-premium-sec .dr-icon-box svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }

    .dr-rev-premium-sec .dr-card:hover .dr-icon-box {
      background: var(--navy);
      color: var(--gold);
      transform: scale(1.1) rotate(4deg);
    }

    .dr-rev-premium-sec .dr-card-featured .dr-icon-box {
      background: rgba(235, 190, 22, 0.2);
      color: var(--gold);
    }

    .dr-rev-premium-sec .dr-card-featured:hover .dr-icon-box {
      background: var(--gold);
      color: var(--navy);
    }

    /* Card Content Typography */
    .dr-rev-premium-sec .dr-card-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .dr-rev-premium-sec .dr-card-featured .dr-card-title {
      color: #ffffff;
    }

    .dr-rev-premium-sec .dr-card-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    /* Focus Areas List inside Featured Card */
    .dr-rev-premium-sec .dr-focus-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
    }

    .dr-rev-premium-sec .dr-focus-item {
      background: rgba(255, 255, 255, 0.07);
      padding: 0.85rem 1rem;
      border-radius: 12px;
      margin-bottom: 0.75rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .dr-rev-premium-sec .dr-focus-item strong {
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 0.2rem;
    }

    .dr-rev-premium-sec .dr-focus-item strong svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      min-width: 16px;
    }

    /* Pill Badges */
    .dr-rev-premium-sec .dr-pill-tag {
      background: rgba(235, 190, 22, 0.15);
      color: var(--navy);
      font-weight: 700;
      font-size: 0.825rem;
      padding: 0.6rem 1rem;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(235, 190, 22, 0.3);
    }

    .dr-rev-premium-sec .dr-pill-tag svg {
      width: 16px;
      height: 16px;
      fill: var(--gold-dark);
    }

    /* Call To Action Banner */
    .dr-rev-premium-sec .dr-cta-card {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      color: #ffffff;
      box-shadow: 0 20px 45px rgba(39, 56, 150, 0.25);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dr-rev-premium-sec .dr-cta-btn {
      background-color: var(--gold);
      color: var(--navy) !important;
      font-weight: 800;
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      box-shadow: 0 8px 25px rgba(235, 190, 22, 0.4);
    }

    .dr-rev-premium-sec .dr-cta-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .dr-rev-premium-sec .dr-cta-btn:hover {
      background-color: #ffffff;
      color: var(--navy) !important;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    }

    @media (max-width: 767.98px) {
      .dr-rev-premium-sec .dr-cta-card {
        padding: 2rem 1.5rem;
        text-align: center;
      }
      .dr-rev-premium-sec .dr-cta-btn {
        width: 100%;
        justify-content: center;
      }
    }
  