
    /* ---- NAVBAR ---- */
    .hamburger {
      display: none;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ---- MOBILE NAV ---- */
    @media (max-width: 900px) {

      .nav-links {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 32px;
        gap: 16px;
        border-top: 1px solid var(--border);

        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;
      }

      .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
      }

      /* Hide desktop right section */
      .nav-emergency {
        display: none;
      }

      /* Show hamburger */
      .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }

      .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        display: block;
      }
    }

    /* ---- HERO ---- */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 55%, #C05078 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 800px 600px at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .hero-shapes {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.07;
      background: white;
    }

    .hero-shape-1 {
      width: 500px;
      height: 500px;
      right: -100px;
      top: -100px;
    }

    .hero-shape-2 {
      width: 300px;
      height: 300px;
      right: 200px;
      bottom: -80px;
      opacity: 0.04;
    }

    .hero-shape-3 {
      width: 180px;
      height: 180px;
      left: 10%;
      top: 20%;
      opacity: 0.05;
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
      padding-top: 80px;
    }

    .hero-left {
      color: white;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--rose);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 30px;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }

    .hero-eyebrow .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #6ef;
      animation: pulse 2s infinite;
    }

    .hero h1, .hero h2.hero-h1 {
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 22px;
      color: white;
    }

    .hero h1 .italic, .hero h2.hero-h1 .italic {
      font-weight: 400;
      color: var(--rose);
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.8);
      max-width: 480px;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat .num {
      font-size: 2rem;
      font-weight: 700;
      color: white;
      line-height: 1;
    }

    .hero-stat .lbl {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 5px;
    }

    .hero-right {
      position: relative;
    }

    .hero-card-main {
      background: rgba(255, 255, 255, 0.97);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .hero-img-area {
      height: 380px;
      background: linear-gradient(160deg, var(--rose-blush), var(--rose) 80%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hero-img-area img {
      width: 80%;
      height: 200%;
      object-fit: cover;
      object-position: top center;
    }

    .hero-img-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(to top, rgba(74, 13, 40, 0.9), transparent);
    }

    .hero-img-overlay .doc-name {
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .hero-img-overlay .doc-role {
      color: var(--rose);
      font-size: 0.8rem;
    }

    .hero-card-bottom {
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .avail-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #16a34a;
    }

    .avail-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #16a34a;
      animation: pulse 2s infinite;
    }

    .hero-float-card {
      position: absolute;
      background: white;
      border-radius: 14px;
      padding: 14px 18px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      white-space: nowrap;
      z-index: 1
    }

    .hero-float-1 {
      top: -20px;
      right: -24px;
    }

    .hero-float-2 {
      bottom: 90px;
      left: -30px;
    }

    .float-label {
      font-size: 0.7rem;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 3px;
    }

    .float-value {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--maroon);
    }

    /* ---- HERO SLIDER ---- */
    .hero-slider-wrap {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      width: 100%;
    }

    .hero-slider-track {
      display: flex;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      will-change: transform;
    }

    .hero-slide {
      flex: 0 0 100%;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-slide.hero {
      background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 55%, #C05078 100%);
    }

    .hero-slide.patriotic {
      background: url('home_docs/patriotic_banner.webp') right center/cover no-repeat;
    }

    .hero-overlay-maroon {<
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(74, 13, 40, 0.92) 0%, rgba(139, 26, 74, 0.88) 55%, rgba(192, 80, 120, 0.82) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-overlay-maroon-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(74, 13, 40, 0.98) 0%, rgba(139, 26, 74, 0.85) 45%, rgba(192, 80, 120, 0) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-nav-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: 0.3s;
    }

    .hero-dot.active {
      background: white;
      width: 32px;
      border-radius: 12px;
    }

    .hero-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.2);
      color: white;
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      z-index: 10;
      transition: 0.3s;
      backdrop-filter: blur(4px);
    }

    .hero-nav-btn:hover {
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-nav-btn.prev {
      left: 20px;
    }

    .hero-nav-btn.next {
      right: 20px;
    }

    .patriotic-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
      pointer-events: none;
    }

    /* ---- WHY US STRIP ---- */
    .why-strip {
      background: white;
      border-bottom: 1px solid var(--border);
    }

    .why-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 48px 32px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 32px;
      position: relative;
    }

    .why-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: var(--border);
    }

    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--rose-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why-text h4 {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .why-text p {
      font-size: 0.78rem;
      color: var(--text-soft);
      line-height: 1.5;
    }

    /* ---- ABOUT SECTION ---- */
    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .about-img-group {
      position: relative;
      height: 520px;
    }

    .about-img-main {
      position: absolute;
      left: 0;
      top: 0;
      width: 68%;
      height: 82%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .about-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-img-secondary {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 52%;
      height: 55%;
      border-radius: 20px;
      overflow: hidden;
      border: 5px solid white;
      box-shadow: var(--shadow-md);
    }

    .about-img-secondary img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-cert {
      position: absolute;
      top: 50%;
      left: 62%;
      transform: translateY(-50%);
      background: var(--maroon);
      color: white;
      padding: 16px 20px;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(139, 26, 74, 0.4);
      z-index: 2;
    }

    .about-cert .num {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
    }

    .about-cert .lbl {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.8;
      margin-top: 4px;
    }

    .about-right ul {
      list-style: none;
    }

    .about-right ul li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .about-right ul li:last-child {
      border-bottom: none;
    }

    .about-li-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--rose-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .about-li-text h5 {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    .about-li-text p {
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    .privilege-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .priv-tag {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: var(--rose-pale);
      border: 1px solid var(--border);
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--maroon);
      cursor: pointer;
      transition: var(--transition);
    }

    .priv-tag:hover {
      background: var(--maroon);
      color: white;
      border-color: var(--maroon);
    }

    .priv-tag .check {
      color: var(--maroon-light);
      font-size: 0.7rem;
    }

    .doctor-img-wrap {
      width: 100%;
      height: 250px;
      overflow: hidden;
    }

    .doctor-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .rasna-img {
      transform: scale(1);
    }

    .doctor-card:nth-child(2) .doctor-img-wrap img {
      object-position: center 10%;
    }

    @media (max-width: 600px) {
      .director-badge {
        display: none;
      }

      .rasna-img {
        transform: scale(1.7);
      }
    }

    /* ---- SERVICES ---- */
    .services-bg {
      background: var(--rose-pale);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 48px;
    }

    @media (max-width: 900px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---- SERVICES ---- */

    .service-card {
      transition: var(--transition);
    }

    .service-icon {
      color: var(--maroon);
      transition: var(--transition);
    }

    /* Hover effect */

    .service-card:hover .service-icon {
      color: white;
    }

    /* ---- CTA BAND ---- */
    .cta-band {
      background: linear-gradient(135deg, var(--maroon-deep), var(--maroon) 60%, var(--maroon-light));
      padding: 80px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-band h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: white;
      margin-bottom: 14px;
      position: relative;
    }

    .cta-band p {
      color: var(--rose);
      opacity: 0.9;
      max-width: 500px;
      margin: 0 auto 32px;
      position: relative;
    }

    .cta-band .btn-group {
      display: flex;
      gap: 14px;
      justify-content: center;
      position: relative;
      flex-wrap: wrap;
    }

    /* ---- DOCTORS PREVIEW ---- */
    .doctors-preview {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    @media (max-width: 1024px) {
      .doctors-preview {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .doctors-preview {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .doctor-card-footer {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .doctor-card-footer a {
        width: 100%;
        text-align: center;
      }
    }

    /* ---- CORPORATE ---- */
    .corporate-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .corporate-img {
      border-radius: 20px;
      overflow: hidden;
      height: 600px;
      background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .corporate-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .corporate-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent, rgba(247, 238, 243, 0.1));
    }

    .corp-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin: 24px 0;
    }

    .corp-feat {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px 20px;
      background: white;
      border-radius: 12px;
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .corp-feat:hover {
      border-color: var(--rose);
      box-shadow: var(--shadow-sm);
      transform: translateX(4px);
    }

    .corp-feat-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--rose-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .corp-feat h5 {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    .corp-feat p {
      font-size: 0.78rem;
      color: var(--text-soft);
    }

    /* HERO RESPONSIVE */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-right {
        display: none;
      }

      .why-inner {
        grid-template-columns: 1fr 1fr;
      }

      .about-wrap {
        grid-template-columns: 1fr;
      }

      .about-img-group {
        height: 360px;
      }

      .corporate-wrap {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .hero-stats {
        gap: 20px;
      }

      .why-inner {
        grid-template-columns: 1fr;
      }

      .why-item::after {
        display: none;
      }
    }

    /* ---- NEW: CHAIRMAN SECTION STYLES (added) ---- */
    .chairman-section {
      background: white;
      padding: 88px 0;
    }

    .chairman-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      gap: 56px;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .chairman-image {
      flex: 0 0 300px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 4px solid var(--rose-pale);
    }

    .chairman-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .chairman-content {
      flex: 1;
    }

    .chairman-content .section-sub {
      color: var(--maroon);
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    .chairman-content .section-title {
      margin: 8px 0 12px;
    }

    .chairman-message {
      color: var(--text-soft);
      line-height: 1.7;
      margin: 20px 0 24px;
    }

    .message-expandable {
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .message-short {
      display: block;
    }

    .message-full {
      display: none;
    }

    .chairman-message.expanded .message-short {
      display: none;
    }

    .chairman-message.expanded .message-full {
      display: block;
    }

    .read-more-btn {
      background: none;
      border: none;
      color: var(--maroon);
      font-weight: 600;
      cursor: pointer;
      font-size: 0.85rem;
      padding: 6px 0;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: 0.2s;
    }

    .read-more-btn:hover {
      color: var(--maroon-light);
      gap: 10px;
    }

    .chairman-sign {
      margin-top: 32px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
    }

    .chairman-sign .name {
      font-weight: 700;
      color: var(--maroon);
      font-size: 1.1rem;
    }

    .chairman-sign .title {
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    @media (max-width: 900px) {
      .chairman-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .chairman-image {
        max-width: 260px;
        margin: 0 auto;
      }

      .chairman-sign {
        text-align: center;
      }
    }

    /* ---- NEW: TESTIMONIALS SECTION (auto-sliding cards) ---- */
    .testimonials-section {
      background: var(--off-white);
      padding: 88px 0;
      overflow: hidden;
    }

    .testimonials-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .testimonials-slider {
      position: relative;
      margin-top: 48px;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 30px;
    }

    .testimonial-card {
      flex: 0 0 calc(33.333% - 20px);
      background: white;
      border-radius: 28px;
      padding: 28px 24px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
      transition: 0.2s;
      border: 1px solid var(--border);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      border-color: var(--rose);
    }

    .testimonial-quote {
      font-size: 2rem;
      color: var(--rose);
      opacity: 0.4;
      margin-bottom: 12px;
      line-height: 1;
    }

    .testimonial-text {
      font-size: 0.95rem;
      color: var(--text-dark);
      line-height: 1.6;
      margin: 12px 0 20px;
      font-style: italic;
    }

    .testimonial-text a {
      position: relative;
      text-decoration: none;
      color: var(--maroon-light);
      font-size: 0.85rem;
    }

    .testimonial-text a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background-color: var(--maroon-light);
      transition: width 0.3s ease;
    }

    .testimonial-text a:hover::after {
      width: 100%;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--maroon);
      margin-top: 8px;
      letter-spacing: -0.2px;
    }

    .testimonial-role {
      font-size: 0.7rem;
      color: var(--text-soft);
      margin-top: 4px;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px;
    }

    .dot-indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: 0.2s;
    }

    .dot-indicator.active {
      background: var(--maroon);
      width: 28px;
      border-radius: 12px;
    }

    /* Add to existing styles */
    @media (max-width: 1024px) {
      .testimonial-card {
        flex: 0 0 calc(50% - 15px);
      }
    }

    @media (max-width: 700px) {
      .testimonial-card {
        flex: 0 0 100%;
      }
    }

    /* Ensure smooth infinite sliding */
    .testimonials-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 30px;
      will-change: transform;
    }
    /* Chairman Message - Show/Hide */
.message-hidden {
  display: none;
}

.chairman-message.expanded .message-hidden {
  display: block;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #db2c66;
  font-weight: 600;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s ease;
  margin-top: 10px;
}

.read-more-btn:hover {
  color: #a01f4a;
}

.read-more-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.chairman-message.expanded .read-more-btn span {
  transform: rotate(180deg);
}
  
/* Hero Section with Background Video */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 26, 43, 0.6);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
}

.hero-video-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.hero-video-text {
  max-width: 650px;
  color: #ffffff;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #db2c66;
  border-radius: 50%;
}

.hero-video-title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-video-title .highlight {
  color: #db2c66;
  font-style: italic;
}

.hero-video-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-video-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-video-btns .btn {
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #db2c66;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: #b82254;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(219, 44, 102, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Sound Toggle Button - High z-index to stay on top */
.video-sound-toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 999 !important; /* High z-index to ensure visibility */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-sound-toggle:hover {
  background: rgba(219, 44, 102, 0.7);
  transform: scale(1.1);
  border-color: #db2c66;
}

.video-sound-toggle i {
  font-size: 20px;
  color: #ffffff;
}

.video-sound-toggle .icon-muted {
  display: block;
}

.video-sound-toggle .icon-unmuted {
  display: none;
}

.video-sound-toggle.unmuted .icon-muted {
  display: none;
}

.video-sound-toggle.unmuted .icon-unmuted {
  display: block !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-video-section {
    height: 90vh;
    min-height: 500px;
  }
  
  .hero-video-title {
    font-size: 42px;
  }
  
  .hero-video-desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-video-section {
    height: 80vh;
    min-height: 450px;
  }
  
  .hero-video-content {
    padding: 0 20px;
  }
  
  .hero-video-title {
    font-size: 32px;
  }
  
  .hero-video-desc {
    font-size: 15px;
  }
  
  .hero-video-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-video-btns .btn {
    width: 100%;
    justify-content: center;
  }
  
  .video-sound-toggle {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .video-sound-toggle i {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .hero-video-section {
    height: 70vh;
    min-height: 400px;
  }
  
  .hero-video-title {
    font-size: 26px;
  }
  
  .video-sound-toggle {
    bottom: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
  
  .video-sound-toggle i {
    font-size: 14px;
  }
}