
    /* ---- 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;
      }
    }

    /* ---- MISSION VISION ---- */
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 48px;
    }

    .mv-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }

    .mv-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .mv-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--maroon), var(--maroon-light));
    }

    .mv-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      background: var(--rose-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }

    .mv-card h3 {
      font-family: '', serif;
      font-size: 1.3rem;
      color: var(--maroon-dark);
      margin-bottom: 12px;
    }

    .mv-card p {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.75;
    }

    /* ---- VALUES ---- */
    .values-section {
      background: var(--rose-pale);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .value-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border: 1px solid var(--border);
      text-align: center;
      transition: var(--transition);
    }

    .value-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .value-num {
      font-family: '', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--border);
      line-height: 1;
      margin-bottom: 16px;
    }

    .value-card h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--maroon-dark);
      margin-bottom: 8px;
    }

    .value-card p {
      font-size: 0.85rem;
      color: var(--text-soft);
      line-height: 1.65;
    }

    /* ---- TEAM STORY ---- */
    .story-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .story-imgs {
      position: relative;
      height: 500px;
    }

    .story-img-a {
      position: absolute;
      left: 0;
      top: 0;
      width: 70%;
      height: 80%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .story-img-a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-img-b {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 55%;
      height: 50%;
      border-radius: 20px;
      overflow: hidden;
      border: 5px solid white;
      box-shadow: var(--shadow-md);
    }

    .story-img-b img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-tag {
      position: absolute;
      bottom: 55%;
      left: 60%;
      background: var(--maroon);
      color: white;
      padding: 18px 22px;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(139, 26, 74, 0.4);
    }

    .story-tag .big {
      font-family: '', serif;
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1;
    }

    .story-tag .sm {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.8;
      margin-top: 4px;
    }

    /* ---- STATS BAND ---- */
    .stats-band {
      background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
      padding: 64px 32px;
    }

    .stats-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
      position: relative;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: rgba(255, 255, 255, 0.15);
    }

    .stat-item .num {
      font-family: '', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: white;
      line-height: 1;
    }

    .stat-item .lbl {
      font-size: 0.78rem;
      color: var(--rose);
      margin-top: 8px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.8;
    }

    /* ---- LEADERSHIP (original - kept intact) ---- */
    .leadership-wrap {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 72px;
      align-items: center;
    }

    .director-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }

    .director-photo {
      height: 340px;
      background: linear-gradient(160deg, var(--rose-blush), var(--rose));
      position: relative;
      overflow: hidden;
    }

    .director-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 60%;
    }

    .director-photo-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(74, 13, 40, 0.92), transparent);
      padding: 24px;
    }

    .director-badge-strip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
      margin-bottom: 8px;
    }

    .director-photo-overlay h3 {
      font-family: '', serif;
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .director-photo-overlay p {
      color: var(--rose);
      font-size: 0.8rem;
    }

    .director-meta {
      padding: 24px;
    }

    .director-meta .meta-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.82rem;
    }

    .director-meta .meta-row:last-child {
      border-bottom: none;
    }

    .director-meta .meta-row .k {
      color: var(--text-soft);
      font-weight: 500;
    }

    .director-meta .meta-row .v {
      color: var(--text-dark);
      font-weight: 600;
    }

    .leadership-right blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--maroon-dark);
      line-height: 1.5;
      border-left: 4px solid var(--maroon-light);
      padding-left: 24px;
      margin: 28px 0;
    }

    .leadership-right p {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    /* ---- NEW: SLIDING MESSAGES SECTION (Chairman + Dr. Rasna) ---- */
    .leadership-messages-section {
      background: white;
      padding: 88px 0;
    }

    .messages-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .messages-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .message-tabs {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .message-tab-btn {
      background: transparent;
      border: 2px solid var(--border);
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      color: var(--text-dark);
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .message-tab-btn.active {
      background: var(--maroon);
      border-color: var(--maroon);
      color: white;
      box-shadow: 0 8px 20px rgba(139, 26, 74, 0.2);
    }

    .message-slider {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background: var(--off-white);
      box-shadow: var(--shadow-lg);
    }

    .messages-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .message-slide {
      flex: 0 0 100%;
      padding: 48px 56px;
      background: white;
    }

    .message-leader-info {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .leader-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--rose);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .leader-title h3 {
      font-size: 1.6rem;
      color: var(--maroon-dark);
      margin-bottom: 6px;
    }

    .leader-title p {
      color: var(--text-soft);
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    .message-full-text {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--text-mid);
      margin-bottom: 32px;
    }

    .message-full-text p {
      margin-bottom: 18px;
    }

    .message-signature {
      margin-top: 28px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
      font-weight: 600;
      color: var(--maroon);
    }

    .slider-nav-dots {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 32px;
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: 0.2s;
    }

    .nav-dot.active {
      background: var(--maroon);
      width: 32px;
      border-radius: 20px;
    }

    @media (max-width: 900px) {
      .message-slide {
        padding: 32px 24px;
      }

      .leader-avatar {
        width: 70px;
        height: 70px;
      }

      .leader-title h3 {
        font-size: 1.3rem;
      }
    }

    /* ---- GLOBAL ---- */
    .global-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .global-img {
      border-radius: 20px;
      overflow: hidden;
      height: 400px;
      background: var(--rose-pale);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .global-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .accord-item {
      border-bottom: 1px solid var(--border);
    }

    .accord-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
      text-align: left;
      transition: color 0.2s;
    }

    .accord-btn:hover,
    .accord-btn.open {
      color: var(--maroon);
    }

    .accord-btn .chevron {
      transition: transform 0.3s;
    }

    .accord-btn.open .chevron {
      transform: rotate(180deg);
    }

    .accord-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .accord-body p {
      padding: 0 0 18px;
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* Read More button styles */
    .read-more-btn {
      background: transparent;
      border: none;
      color: var(--maroon);
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      padding: 8px 0 4px;
      margin-top: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .read-more-btn:hover {
      color: var(--maroon-light);
      gap: 10px;
    }

    .message-full-text {
      position: relative;
    }

    .message-short {
      display: block;
    }

    .message-full {
      display: none;
    }

    .message-full-text.expanded .message-short {
      display: none;
    }

    .message-full-text.expanded .message-full {
      display: block;
    }

    @media(max-width:900px) {
      .mv-grid {
        grid-template-columns: 1fr;
      }

      .values-grid {
        grid-template-columns: 1fr 1fr;
      }

      .story-wrap {
        grid-template-columns: 1fr;
      }

      .story-imgs {
        height: 320px;
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
      }

      .leadership-wrap {
        grid-template-columns: 1fr;
      }

      .global-wrap {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:600px) {
      .values-grid {
        grid-template-columns: 1fr;
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Center leader avatar on mobile */
    @media (max-width: 768px) {
      .message-leader-info {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 16px;
      }

      .leader-title {
        text-align: center;
      }

      .leader-title h3 {
        font-size: 1.3rem;
      }

      .leader-title p {
        font-size: 0.85rem;
      }
    }
  