 /* CSS Variables for Brand Colors */
    :root {
  --navy: #002b5c;
  --charcoal: #333333;
  --gold: #b38b59;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --mutindagreen: #9D863F;
  --mutindamaroon: rgb(119, 4, 4);
  --mutindagreen-light: rgba(84, 102, 21, 0.1);
  --mutindamaroon-light: rgba(119, 4, 4, 0.1);
  --mutindagreen-dark: #9D853F;
  --mutindamaroon-dark: rgb(95, 3, 3);
  --gradient-primary: linear-gradient(135deg, var(--mutindamaroon), var(--mutindagreen));
  --gradient-secondary: linear-gradient(135deg, var(--mutindagreen), var(--mutindagreen-dark));
}
      /* Global Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Jost", sans-serif;
        font-weight: 300;
      }

      body {
        line-height: 1.7;
        color: var(--charcoal);
        background-color: var(--white);
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Garamond", "Times New Roman", serif;
        color: var(--mutindamaroon);
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
        font-weight: 600;
        line-height: 1.3;
      }

      p {
        letter-spacing: 0.3px;
        line-height: 1.7;
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: 100px;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        background: var(--gradient-secondary);
        color: var(--white);
        padding: 14px 32px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        font-size: 1rem;
        letter-spacing: 0.5px;
        box-shadow: 0 6px 20px rgba(84, 102, 21, 0.3);
        border: 2px solid transparent;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.5s;
      }

      .btn:hover::before {
        left: 100%;
      }

      .btn:hover {
        background: linear-gradient(
          135deg,
          var(--mutindagreen-dark),
          var(--mutindagreen)
        );
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(84, 102, 21, 0.4);
        border-color: rgba(84, 102, 21, 0.3);
      }

      .section {
        padding: 100px 0;
        position: relative;
      }

      .section-title {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        font-size: 2.8rem;
        font-weight: 700;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 2px;
      }

      .section-title::before {
        content: "";
        position: absolute;
        bottom: -26px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--mutindagreen);
        border-radius: 2px;
        opacity: 0.6;
      }

      /* Header & Navigation */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        z-index: 1000;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        height: 100px;
        transition: all 0.4s ease;
      }

      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 12px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        height: 100%;
      }

      .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: transform 0.3s ease;
      }

      .logo:hover {
        transform: scale(1.02);
      }

      .logo img {
        height: 90px;
        width: auto;
        object-fit: contain;
        display: block;
      }

      nav ul {
        display: flex;
        gap: 35px;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
      }

      nav ul li a {
        text-decoration: none;
        font-weight: 500;
        color: var(--charcoal);
        font-size: 16px;
        padding: 8px 2px;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
        position: relative;
      }

      nav ul li a::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
      }

      nav ul li a:hover::after,
      nav ul li a.active::after {
        width: 100%;
      }

      nav ul li a:hover,
      nav ul li a.active {
        color: var(--mutindamaroon);
      }

      nav ul li .btn {
        background: linear-gradient(
          135deg,
          var(--mutindamaroon),
          var(--mutindamaroon-dark)
        );
        padding: 12px 28px;
        border-radius: 8px;
        font-weight: 600;
        box-shadow: 0 6px 20px rgba(119, 4, 4, 0.3);
        margin-left: 10px;
      }

      nav ul li .btn:hover {
        background: linear-gradient(
          135deg,
          var(--mutindamaroon-dark),
          var(--mutindamaroon)
        );
        box-shadow: 0 10px 30px rgba(119, 4, 4, 0.4);
      }

      .mobile-menu {
        display: none;
        font-size: 28px;
        cursor: pointer;
        color: var(--charcoal);
        transition: all 0.3s ease;
        padding: 8px;
        border-radius: 6px;
      }

      .mobile-menu:hover {
        color: var(--mutindamaroon);
        background: var(--mutindagreen-light);
      }

     /* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(119, 4, 4, 0.85), rgba(84, 102, 21, 0.75)),
              url("https://images.unsplash.com/photo-1589391886645-d51941baf7fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 200px 0 100px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
 
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5rem;
  color: rgb(233, 201, 24);
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}


.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 15px;
}

.breadcrumb li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 15px;
  color: var(--mutindagreen);
}

.breadcrumb li a {
  color: var(--mutindagreen);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

.breadcrumb li a:hover {
  color: var(--white);
  background: rgba(84, 102, 21, 0.3);
}

/* Background Zoom Animation */
@keyframes headerZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* Text Fade & Slide Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the background animation */
.page-header {
  animation: headerZoom 12s ease-in-out infinite alternate;
  position: relative;
}

/* Animate heading and breadcrumb */
.page-header h1,
.page-header .breadcrumb {
  animation: fadeSlideUp 1.2s ease forwards;
  opacity: 0;
}

/* Delay breadcrumb slightly for smooth staggered animation */
.page-header .breadcrumb {
  animation-delay: 0.4s;
}


      /* Leadership Structure */
      .leadership-structure {
       background: linear-gradient(rgba(23, 46, 68, 0.85), rgba(23, 46, 68, 0.85)),
              url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
   position: relative;
        overflow: hidden;
      }
      .leadership-structure .section-title{
        color: gold;
        font-weight: 300;
      }

      .structure-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
      }

      .structure-level {
        margin-bottom: 60px;
        position: relative;
      }

      .structure-level::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: -60px;
        width: 2px;
        background: var(--mutindagreen-light);
        transform: translateX(-50%);
        z-index: 1;
      }

      .structure-level:last-child::before {
        display: none;
      }

      .level-title {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
      }

      .level-title h2 {
        display: inline-block;
        background: var(--white);
        padding: 10px 30px;
        border-radius: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border: 2px solid var(--mutindagreen-light);
        color: var(--mutindamaroon);
        font-size: 1.5rem;
      }

      .level-members {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        position: relative;
        z-index: 2;
      }

      /* Team Members */
      .team-members {
        background: linear-gradient(
          135deg,
          var(--mutindamaroon) 0%,
          var(--mutindamaroon-dark) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .team-members .section-title {
        color: gold;
        font-weight: 200;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
      }

      .team-member {
        background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .team-member::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        z-index: 2;
      }

      .team-member:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
      }

      .member-image {
        height: 300px;
        overflow: hidden;
        position: relative;
      }

      .member-image::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
        z-index: 1;
      }

      .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
      }

      .team-member:hover .member-image img {
        transform: scale(1.1);
      }

      .member-info {
        padding: 30px;
        text-align: center;
        position: relative;
      }

      .member-name {
        font-size: 1.5rem;
        margin-bottom: 8px;
        color: var(--mutindamaroon);
        font-weight: 700;
      }

      .member-position {
        color: var(--mutindagreen);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.1rem;
        position: relative;
        padding-bottom: 15px;
      }

      .member-position::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--mutindagreen);
        border-radius: 1px;
      }

      .member-bio {
        font-size: 1rem;
        color: var(--charcoal);
        line-height: 1.7;
        margin-bottom: 20px;
      }

      .member-admission {
        display: inline-block;
        background: var(--mutindagreen-light);
        color: var(--mutindamaroon);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
      }

      .member-expertise {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-top: 15px;
      }

      .expertise-tag {
        background: var(--mutindamaroon-light);
        color: var(--mutindamaroon);
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
      }

      /* Structure Member Cards */
      .structure-member {
        background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        width: 280px;
        position: relative;
      }

      .structure-member::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 16px 16px 0 0;
      }

      .structure-member:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(119, 4, 4, 0.15);
        border-color: var(--mutindagreen-light);
      }

      .structure-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
        border: 4px solid var(--mutindagreen-light);
        position: relative;
      }

      .structure-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .structure-member:hover .structure-image img {
        transform: scale(1.1);
      }

      .structure-name {
        font-size: 1.3rem;
        margin-bottom: 5px;
        color: var(--mutindamaroon);
        font-weight: 700;
      }

      .structure-role {
        color: var(--mutindagreen);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1rem;
      }

      .structure-desc {
        color: var(--charcoal);
        font-size: 0.9rem;
        line-height: 1.6;
      }

      /* CTA Section */
      .cta {
        background: var(--gradient-primary);
        color: var(--white);
        text-align: center;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }

      .cta::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        animation: float 6s ease-in-out infinite;
      }

      .cta h2 {
        color: gold;
        font-size: 2.8rem;
        margin-bottom: 25px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 2;
        font-weight: 200;
      }

      .cta p {
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        position: relative;
        z-index: 2;
      }

      .cta .btn {
        background: var(--mutindagreen-dark);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        font-size: 1.1rem;
        padding: 16px 45px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }

      .cta .btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
      }

      /* Footer */
      footer {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: var(--white);
        padding: 80px 0 30px;
        position: relative;
        overflow: hidden;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 50px;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
      }

      .footer-logo img {
        width:200px;
        height: auto;
        object-fit: contain;
        filter: brightness(0) invert(1);
        transition: all 0.4s ease;
      }

      .footer-logo:hover img {
        transform: scale(1.05);
      }

      .footer-about p {
        font-size: 1rem;
        line-height: 1.7;
        color: #ccc;
        max-width: 320px;
        margin-bottom: 25px;
      }

      .footer-links h3,
      .footer-services h3,
      .footer-contact h3 {
        color: var(--mutindagreen);
        margin-bottom: 25px;
        font-size: 1.5rem;
       
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 12px;
      }

      .footer-links h3::after,
      .footer-services h3::after,
      .footer-contact h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--mutindagreen);
        border-radius: 2px;
      }

      .footer-links ul,
      .footer-services ul,
      .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links ul li,
      .footer-services ul li,
      .footer-contact ul li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 1rem;
      }

      .footer-links a,
      .footer-services a,
      .footer-contact a {
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
      }

      .footer-links a:hover,
      .footer-services a:hover,
      .footer-contact a:hover {
        color: var(--mutindagreen);
        padding-left: 5px;
      }

      .footer-contact ul li i {
        margin-right: 12px;
        color: var(--mutindagreen);
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
      }

      .copyright {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #999;
        font-size: 0.95rem;
        line-height: 1.6;
        position: relative;
        z-index: 2;
      }

      .credit {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #777;
      }

      .credit span {
        color: #e74c3c;
      }

      .credit a {
        color: gold;
        text-decoration: none;
        font-weight: 400;
        transition: all 0.3s ease;
      }

      .credit a:hover {
        color: var(--mutindamaroon);
        text-decoration: underline;
      }

      /* WhatsApp Float */
      .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        animation: pulse 2s infinite;
      }

      .whatsapp-float:hover {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        50% {
          box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
        }
        100% {
          box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
      }

      /* Responsive Styles */
      @media (max-width: 1200px) {
        .section-title {
          font-size: 2.5rem;
        }

        .page-header h1 {
          font-size: 3rem;
        }
      }

      @media (max-width: 992px) {
        .team-grid {
          grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 30px;
        }

        .level-members {
          flex-direction: column;
          align-items: center;
        }
      }

      @media (max-width: 768px) {
        nav ul {
          display: none;
          position: absolute;
          top: 100px;
          left: 0;
          width: 100%;
          background: rgba(255, 255, 255, 0.98);
          backdrop-filter: blur(15px);
          flex-direction: column;
          padding: 30px 20px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          gap: 0;
        }

        nav ul.active {
          display: flex;
        }

        nav ul li {
          margin: 12px 0;
          width: 100%;
          text-align: center;
        }

        nav ul li a {
          display: block;
          padding: 12px 0;
          font-size: 1.1rem;
        }

        .mobile-menu {
          display: block;
        }

        .page-header {
          padding: 150px 0 80px;
          min-height: 60vh;
        }

        .page-header h1 {
          font-size: 2.2rem;
        }

        .section {
          padding: 70px 0;
        }

        .section-title {
          font-size: 2rem;
          margin-bottom: 40px;
        }

        .team-grid {
          grid-template-columns: 1fr;
        }

        .whatsapp-float {
          width: 60px;
          height: 60px;
          font-size: 1.7rem;
          bottom: 20px;
          right: 20px;
        }
      }

      @media (max-width: 480px) {
        .page-header h1 {
          font-size: 1.8rem;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .btn {
          padding: 12px 25px;
          font-size: 0.95rem;
        }

        .team-member {
          padding: 25px 20px;
        }

        .structure-member {
          width: 100%;
          max-width: 280px;
        }
      }