
      :root {
        /* Light Theme Palette */
        --bg-page: #f4f7fc;
        --bg-surface: #ffffff;
        --text-main: #0f172a;
        --text-muted: #475569;

        /* Official Brand Colors (Derived from Logo) */
        --color-green: #15803d; /* Forest Green (Logo text/borders) */
        --color-green-dark: #14532d;
        --color-green-light: #dcfce7;
        --color-orange: #ea580c; /* Saffron/Orange (Logo graphic) */
        --color-orange-light: #ffedd5;

        /* Accent Colors for Infographics */
        --color-blue: #0ea5e9;
        --color-blue-light: #e0f2fe;
        --color-purple: #8b5cf6;

        /* Shadows & Effects */
        --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
        --shadow-hover: 0 25px 50px -12px rgba(21, 128, 61, 0.15);
        --shadow-glow: 0 0 20px rgba(234, 88, 12, 0.4);
        --glass-bg: rgba(255, 255, 255, 0.85);
        --glass-border: rgba(255, 255, 255, 0.6);

        /* Typography */
        --font-display: "Outfit", sans-serif;
        --font-body: "Inter", sans-serif;
        --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: var(--font-body);
        color: var(--text-main);
        background-color: var(--bg-page);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;


          position: relative;
      }

  body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("images/logo2003.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 450px;

    opacity:0.09;

    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-display);
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-main);
      }
      a {
        text-decoration: none;
        color: inherit;
      }

      .container {
        max-width: 1280px;
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
      }
      section {
        padding: 50px 0;
      }

      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
      }
      .reveal.active {
        opacity: 1;
        transform: translateY(0);
      }

      .glass-effect {
        background: var(--glass-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-soft);
      }

      .ambient-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        overflow: hidden;
        background: var(--bg-page);
      }
      .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.5;
        animation: float 25s infinite ease-in-out alternate;
      }
      .orb-1 {
        width: 60vw;
        height: 60vw;
        background: var(--color-green-light);
        top: -20%;
        left: -10%;
      }
      .orb-2 {
        width: 50vw;
        height: 50vw;
        background: var(--color-orange-light);
        bottom: -20%;
        right: -10%;
        animation-delay: -5s;
      }
      .orb-3 {
        width: 40vw;
        height: 40vw;
        background: var(--color-blue-light);
        top: 30%;
        left: 30%;
        animation-duration: 30s;
      }

      @keyframes float {
        0% {
          transform: translate(0, 0) scale(1) rotate(0deg);
        }
        100% {
          transform: translate(5vw, 5vw) scale(1.1) rotate(10deg);
        }
      }

      header {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 1200px;
        border-radius: 50px;
        z-index: 1000;
        padding: 12px 30px;
        transition: var(--transition-smooth);
      }
      .nav-container 
      {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .logo {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--color-green);
        letter-spacing: -0.5px;
        position: relative;
        z-index: 1001;
      }
      .logo span {
        color: var(--color-orange);
      }

      .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
      }
      .nav-links a {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-muted);
        transition: color var(--transition-smooth);
        position: relative;
      }
      .nav-links a:hover {
        color: var(--color-green);
      }

    /* ================= ADMISSIONS CTA ================= */

.cta-btn {
  background: #d4a017;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
  display: inline-block;
  cursor: pointer;
  border: none;
}

.cta-btn:hover {
  background: #b8860b;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
  transform: translateY(-2px);
  color: white;
}

      .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
      }
      .mobile-menu-btn span {
        width: 28px;
        height: 3px;
        background: var(--color-green);
        border-radius: 3px;
        transition: 0.3s;
      }
      .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }
      .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
      }
      .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }

      .hero {
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding-top: 60px;
      }
      .slideshow-container,
      .slide,
      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      .slideshow-container {
        z-index: 0;
      }
      .slide {
        object-fit: cover;
        opacity: 0;
        transition:
          opacity 1.5s ease-in-out,
          transform 8s ease-out;
        transform: scale(1.05);
      }
      .slide.active {
        opacity: 1;
        transform: scale(1);
      }
      .hero-overlay {
        background: linear-gradient(
          135deg,
          rgba(15, 23, 42, 0.6) 0%,
          rgba(21, 128, 61, 0.4) 100%
        );
        z-index: 1;
      }

      .hero-content {
        text-align: center;
        max-width: 900px;
        z-index: 10;
        padding: 60px 40px;
        border-radius: 32px;
        margin: 0 20px;
        position: relative;
      }

      .trust-tag {
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--color-green);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
        animation: slideDown 1s ease forwards;
      }
      .badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 18px;
        background: var(--bg-surface);
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--color-green);
        margin-bottom: 25px;
        box-shadow: var(--shadow-soft);
        animation: slideDown 1s ease forwards;
      }
      .hero h1 {
        font-size: clamp(2.5rem, 6vw, 5.5rem);
        letter-spacing: -1.5px;
        margin-bottom: 1.5rem;
        animation: popIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        color: var(--text-main);
      }
      .text-highlight {
        color: var(--color-green);
        position: relative;
        display: inline-block;
      }
      .text-highlight::after {
        content: "";
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 14px;
        background: var(--color-orange-light);
        z-index: -1;
        border-radius: 4px;
      }
      .hero p {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: var(--text-muted);
        margin-bottom: 30px;
        max-width: 650px;
        margin-inline: auto;
        animation: fadeIn 1.5s ease forwards 0.5s;
        opacity: 0;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes popIn {
        from {
          opacity: 0;
          transform: scale(0.95);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
      @keyframes fadeIn {
        to {
          opacity: 1;
        }
      }

      .metrics-wrapper {
        margin-top: -80px;
        position: relative;
        z-index: 20;
        padding-bottom: 40px;
      }
      .metrics-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
      }
      .metric-card {
        border-radius: 28px;
        padding: 35px 20px;
        text-align: center;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      .metric-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: var(--color-green-light);
      }

      .ring-container {
        position: relative;
        width: 110px;
        height: 110px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .metric-ring {
        transform: rotate(-90deg);
        width: 100%;
        height: 100%;
        position: absolute;
      }
      .metric-ring circle {
        fill: transparent;
        stroke-width: 8;
        stroke-linecap: round;
        transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
      }
      .ring-track {
        stroke: var(--bg-page);
      }
      .ring-fill {
        stroke-dasharray: 283;
        stroke-dashoffset: 283;
      }

      .metric-card:nth-child(1) .ring-fill {
        stroke: var(--color-green);
      }
      .metric-card:nth-child(2) .ring-fill {
        stroke: var(--color-orange);
      }
      .metric-card:nth-child(3) .ring-fill {
        stroke: var(--color-blue);
      }
      .metric-card:nth-child(4) .ring-fill {
        stroke: var(--color-purple);
      }

      /* Trigger animation on reveal */
      .reveal.active .metric-card:nth-child(1) .ring-fill {
        stroke-dashoffset: 28; /* 90% */
      }
      .reveal.active .metric-card:nth-child(2) .ring-fill {
        stroke-dashoffset: 42; /* 85% */
      }
      .reveal.active .metric-card:nth-child(3) .ring-fill {
        stroke-dashoffset: 70; /* 75% */
      }
      .reveal.active .metric-card:nth-child(4) .ring-fill {
        stroke-dashoffset: 14; /* 95% */
      }

      .metric-value {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-main);
        position: absolute;
        z-index: 2;
      }
      .metric-label {
        color: var(--text-muted);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 700;
        z-index: 2;
      }

      .principal-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 50px;
        align-items: center;
        border-radius: 36px;
        padding: 50px;
        margin-bottom: 80px;
      }
      .principal-image {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        height: 100%;
        position: relative;
      }
      .principal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 400px;
      }
      .quote-icon {
        font-size: 4rem;
        color: var(--color-green-light);
        line-height: 0.5;
        margin-bottom: 10px;
        font-family: serif;
      }
      .principal-content h2 {
        margin-bottom: 20px;
      }
      .principal-content p {
        font-size: 1.05rem;
        color: var(--text-muted);
        margin-bottom: 15px;
        line-height: 1.8;
      }
      .principal-content .sign-off {
        margin-top: 25px;
        font-weight: 700;
        color: var(--color-green);
        font-size: 1.1rem;
      }

      /* Custom Infographic: Connected Node Network */
      .vm-network-container {
        position: relative;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 0;
      }

      .network-lines {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateY(-50%);
        z-index: 1;
        pointer-events: none;
      }
      .net-line {
        stroke: var(--color-green-light);
        stroke-width: 4;
        stroke-dasharray: 10 10;
        fill: none;
        animation: dashScroll 20s linear infinite;
      }
      .net-pulse {
        stroke: var(--color-green);
        stroke-width: 6;
        fill: none;
        stroke-dasharray: 50 1000;
        animation: pulseTravel 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
      }

      @keyframes dashScroll {
        to {
          stroke-dashoffset: -100;
        }
      }
      @keyframes pulseTravel {
        0% {
          stroke-dashoffset: 1050;
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          stroke-dashoffset: 0;
          opacity: 0;
        }
      }

      .network-node {
        background: var(--bg-surface);
        border: 2px solid var(--glass-border);
        border-radius: 32px;
        padding: 45px;
        width: 42%;
        position: relative;
        z-index: 2;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
      }
      .network-node:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
      }
      .network-node.vision {
        border-color: var(--color-blue-light);
      }
      .network-node.mission {
        border-color: var(--color-orange-light);
      }

      .core-hub {
        width: 160px;
        height: 160px;
        background: linear-gradient(
          135deg,
          var(--color-green),
          var(--color-orange)
        );
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-family: var(--font-display);
        box-shadow: var(--shadow-glow);
        border: 8px solid var(--bg-page);
        text-align: center;
        padding: 20px;
      }
      .core-hub::before {
        content: "";
        position: absolute;
        inset: -15px;
        border-radius: 50%;
        border: 2px dashed var(--color-green-light);
        animation: rotateShape 20s linear infinite;
      }
      @keyframes rotateShape {
        to {
          transform: rotate(360deg);
        }
      }
      .core-hub h4 {
        font-size: 1rem;
        color: white;
        margin-bottom: 5px;
        line-height: 1.2;
      }
      .core-hub span {
        font-size: 0.65rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.9;
      }

      .node-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
      }
      .vision .node-icon {
        background: var(--color-blue-light);
        color: var(--color-blue);
      }
      .mission .node-icon {
        background: var(--color-orange-light);
        color: var(--color-orange);
      }
      .network-node h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: var(--text-main);
      }
      .network-node p {
        font-size: 0.95rem;
        color: var(--text-muted);
        line-height: 1.7;
      }

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 700px;
        margin-inline: auto;
      }
      .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.2rem;
      }
      .section-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
      }

      .pathway-container {
        position: relative;
        padding: 60px 0;
      }

      .pathway-spine {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--glass-border);
        transform: translateX(-50%);
        z-index: 1;
        border-radius: 2px;
      }
      .pathway-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(
          to bottom,
          var(--color-green),
          var(--color-orange),
          var(--color-blue)
        );
        border-radius: 2px;
        transition: height 2s cubic-bezier(0.25, 1, 0.5, 1);
        height: 0;
      }
      .reveal.active .pathway-fill {
        height: 100%;
      }

      .path-step {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 80px;
        position: relative;
        z-index: 2;
      }
      .path-step:last-child {
        margin-bottom: 0;
      }
      .path-step:nth-child(even) {
        flex-direction: row-reverse;
      }

      .path-content {
        width: 45%;
        background: var(--bg-surface);
        padding: 40px;
        border-radius: 32px;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
        border: 1px solid var(--glass-border);
        position: relative;
      }
      .path-content:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
      }

      .path-connector {
        position: absolute;
        top: 50%;
        width: 11%;
        height: 2px;
        background: var(--color-green-light);
        z-index: -1;
      }
      .path-step:nth-child(odd) .path-connector {
        right: -11%;
      }
      .path-step:nth-child(even) .path-connector {
        left: -11%;
      }

      .path-node {
        width: 50px;
        height: 50px;
        background: var(--bg-surface);
        border: 8px solid var(--color-green);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        box-shadow: var(--shadow-glow);
        transition: 0.3s;
      }
      .path-step:nth-child(2) .path-node {
        border-color: var(--color-orange);
      }
      .path-step:nth-child(3) .path-node {
        border-color: var(--color-blue);
      }
      .path-step:hover .path-node {
        transform: translate(-50%, -50%) scale(1.2);
      }

      .path-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
        background: var(--color-green-light);
        color: var(--color-green);
      }
      .path-step:nth-child(2) .path-icon {
        background: var(--color-orange-light);
        color: var(--color-orange);
      }
      .path-step:nth-child(3) .path-icon {
        background: var(--color-blue-light);
        color: var(--color-blue);
      }



/*Innovation lab math and sceince lab font size*/
      .lab-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-left: 6px;
}

      .path-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
      }
      .path-content p {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.6;
      }

      .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(220px, auto);
        gap: 24px;
      }
      .bento-box {
        background: var(--bg-surface);
        border-radius: 32px;
        padding: 35px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--glass-border);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: var(--transition-smooth);
      }
      .bento-box:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
      }

      .bento-large-h {
        grid-column: span 2;
      }
      .bento-large-v {
        grid-row: span 2;
      }

      .bento-box h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        z-index: 2;
        position: relative;
      }
      .bento-box p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        z-index: 2;
        position: relative;
      }

      /* Bento Mini Chart Infographic */
      .bento-chart {
        display: flex;
        align-items: flex-end;
        gap: 10px;
        height: 80px;
        margin-top: auto;
        z-index: 2;
        position: relative;
      }
      .bento-bar {
        flex: 1;
        background: var(--color-green-light);
        border-radius: 8px 8px 0 0;
        position: relative;
        overflow: hidden;
      }
      .bento-bar-fill {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--color-green);
        transition: height 1.5s ease;
        height: 0;
      }
      .reveal.active .bento-bar:nth-child(1) .bento-bar-fill {
        height: 40%;
        transition-delay: 0.1s;
      }
      .reveal.active .bento-bar:nth-child(2) .bento-bar-fill {
        height: 70%;
        transition-delay: 0.2s;
      }
      .reveal.active .bento-bar:nth-child(3) .bento-bar-fill {
        height: 100%;
        transition-delay: 0.3s;
      }

      /* Bento Campus Map Area Infographic */
      .bento-area-svg {
        position: absolute;
        bottom: -10px;
        left: -10px;
        width: calc(100% + 20px);
        height: 120px;
        z-index: 1;
        opacity: 0.5;
      }
      .area-path {
        fill: var(--color-orange-light);
        stroke: var(--color-orange);
        stroke-width: 3;
        transition: transform 2s ease;
        transform: translateY(100px);
      }
      .reveal.active .area-path {
        transform: translateY(0);
      }

      /* Bento Faculty Dots Infographic */
      .faculty-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: auto;
        z-index: 2;
        position: relative;
      }
      .faculty-dot {
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--color-blue-light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transform: scale(0);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
      .reveal.active .faculty-dot {
        transform: scale(1);
      }

      /* Bento Parent Comm Pulse Infographic */
      .comm-nodes {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        z-index: 2;
        position: relative;
        padding: 20px 0;
      }
      .comm-node {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--color-purple);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        position: relative;
      }
      .comm-node::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid var(--color-purple);
        animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
      }
      .comm-line {
        flex: 1;
        height: 2px;
        background: repeating-linear-gradient(
          90deg,
          var(--color-purple-light) 0,
          var(--color-purple-light) 5px,
          transparent 5px,
          transparent 10px
        );
      }
      @keyframes ping {
        75%,
        100% {
          transform: scale(2);
          opacity: 0;
        }
      }

      .arts-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        border-radius: 36px;
        padding: 60px;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-soft);
      }
      .arts-content h2 {
        margin-bottom: 20px;
      }
      .arts-content p {
        font-size: 1.1rem;
        color: var(--text-muted);
        margin-bottom: 20px;
        line-height: 1.8;
      }

      .radar-dashboard {
        background: var(--bg-surface);
        border-radius: 32px;
        padding: 40px;
        box-shadow:
          inset 0 2px 20px rgba(0, 0, 0, 0.02),
          var(--shadow-soft);
        display: flex;
        justify-content: center;
        border: 1px solid var(--color-green-light);
      }
      .radar-svg {
        width: 100%;
        max-width: 400px;
        overflow: visible;
      }
      

      .r-web {
        stroke: var(--color-green-light);
        stroke-width: 1.5;
        fill: none;
      }
      .r-axis {
        stroke: var(--color-green-light);
        stroke-width: 1;
        stroke-dasharray: 4;
      }
      .r-poly {
        fill: rgba(21, 128, 61, 0.15);
        stroke: var(--color-green);
        stroke-width: 3;
        stroke-linejoin: round;
        transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
        opacity: 0;
        transform: scale(0.5);
        transform-origin: center;
      }
      .reveal.active .r-poly {
        opacity: 1;
        transform: scale(1);
      }

      .r-dot {
        fill: var(--bg-surface);
        stroke: var(--color-green);
        stroke-width: 3;
        r: 6;
        transition: 0.3s;
        cursor: crosshair;
      }
      .r-dot:hover {
        r: 10;
        fill: var(--color-orange);
        stroke: var(--color-orange);
        filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.6));
      }
      .r-label {
        font-size: 13px;
        fill: var(--text-muted);
        font-weight: 700;
        font-family: var(--font-body);
        text-anchor: middle;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .timeline-wrapper {
        position: relative;
        max-width: 900px;
        margin: 60px auto 0;
        padding: 20px 0;
      }
      .tl-spine {
        position: absolute;
        left: 40px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--color-orange-light);
        border-radius: 2px;
      }

      .tl-item {
        position: relative;
        padding-left: 100px;
        margin-bottom: 40px;
      }
      .tl-item:last-child {
        margin-bottom: 0;
      }

      .tl-node {
        position: absolute;
        left: 27px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: var(--color-orange);
        border: 6px solid var(--bg-surface);
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 0 0 4px var(--color-orange-light);
        transition: 0.3s;
      }
      .tl-item:hover .tl-node {
        transform: translateY(-50%) scale(1.3);
        background: var(--color-green);
        box-shadow: 0 0 0 4px var(--color-green-light);
      }

      .tl-card {
        background: var(--bg-surface);
        padding: 25px 30px;
        border-radius: 24px;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
        border: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .tl-item:hover .tl-card {
        transform: translateX(15px);
        border-color: var(--color-orange);
        box-shadow: var(--shadow-hover);
      }

      .tl-icon {
        font-size: 2rem;
        background: var(--color-orange-light);
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        flex-shrink: 0;
        transition: 0.3s;
      }
      .tl-item:hover .tl-icon {
        background: var(--color-green-light);
      }
      .tl-text {
        color: var(--text-main);
        font-weight: 600;
        font-size: 1.05rem;
        line-height: 1.5;
      }

      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        border-radius: 36px;
        padding: 60px;
      }
      .about-image {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        height: 100%;
        position: relative;
      }
      .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 350px;
        transition: transform 0.5s ease;
      }
      .about-grid:hover .about-image img {
        transform: scale(1.05);
      }

      .about-badge {
        position: absolute;
        bottom: 20px;
        left: -20px;
        background: var(--bg-surface);
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow-hover);
        display: flex;
        align-items: center;
        gap: 15px;
        border: 4px solid var(--bg-page);
        z-index: 10;
        animation: hoverFloat 5s infinite ease-in-out;
      }
      .ab-icon {
        font-size: 2rem;
        background: var(--color-green-light);
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
      }
      .ab-text h4 {
        color: var(--color-green);
        font-size: 1.5rem;
        margin: 0;
        line-height: 1;
      }
      .ab-text p {
        color: var(--text-muted);
        font-size: 0.75rem;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
      }
      @keyframes hoverFloat {
        0% {
          transform: translateY(0);
        }
        100% {
          transform: translateY(-15px);
        }
      }

      .compliance-dash {
        background: var(--bg-surface);
        border-radius: 32px;
        padding: 40px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--glass-border);
      }
      .dash-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 2px dashed var(--color-green-light);
      }
      .dash-stat-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: conic-gradient(var(--color-green) 100%, transparent 0);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .dash-stat-circle::before {
        content: "";
        position: absolute;
        inset: 8px;
        background: var(--bg-surface);
        border-radius: 50%;
      }
      .dash-stat-value {
        position: relative;
        z-index: 1;
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--color-green);
      }

      .table-container {
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--color-green) var(--bg-page);
      }
      table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        min-width: 650px;
      }
      th {
        text-align: left;
        padding: 18px 20px;
        color: var(--text-main);
        font-weight: 700;
        border-bottom: 2px solid rgba(0, 0, 0, 0.08);
        font-size: 1.05rem;
      }
      td {
        padding: 18px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-muted);
        vertical-align: middle;
      }
      tr:hover td {
        background-color: rgba(21, 128, 61, 0.02);
      }
      .status-valid {
        color: var(--color-green);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--color-green-light);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
      }
      .download-pill {
        display: inline-flex;
        align-items: center;
        padding: 8px 18px;
        background: var(--color-blue-light);
        color: var(--color-blue);
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 700;
        transition: var(--transition-smooth);
      }
      .download-pill:hover {
        background: var(--color-blue);
        color: white;
        box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
        transform: translateY(-2px);
      }

      .form-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px;
        border-radius: 32px;
      }
      .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: left;
      }
      .form-group.full-width {
        grid-column: 1 / -1;
      }
      .form-group label {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-main);
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 14px 18px;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.8);
        font-family: var(--font-body);
        font-size: 1rem;
        color: var(--text-main);
        transition: var(--transition-smooth);
      }
      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--color-green);
        box-shadow: 0 0 0 4px var(--color-green-light);
        background: #ffffff;
      }
      .submit-btn {
        width: 100%;
        padding: 16px;
        border: none;
        font-size: 1.1rem;
        cursor: pointer;
        text-align: center;
      }

      footer {
        background: linear-gradient(135deg, var(--color-green-dark), #064e3b);
        padding: 80px 0 30px;
        color: #ffffff;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 60px;
      }
      .footer-col h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #ffffff;
      }
      .footer-col p,
      .footer-col a {
        color: rgba(255, 255, 255, 0.85);
        display: block;
        margin-bottom: 12px;
        font-size: 1rem;
        transition: color var(--transition-smooth);
      }
      .footer-col a:hover {
        color: var(--color-orange);
        transform: translateX(4px);
        display: inline-block;
      }
      .footer-col .logo {
        color: #ffffff;
        font-size: 2rem;
      }
      .footer-bottom {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 25px;
        font-size: 0.9rem;
      }

      @media (max-width: 1024px) {
        .metrics-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .arts-grid,
        .about-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .arts-grid {
          display: flex;
          flex-direction: column-reverse;
        }
        .bento-grid {
          grid-template-columns: 1fr 1fr;
        }
        .bento-large-h {
          grid-column: span 1;
        }
        .bento-large-v {
          grid-row: span 1;
        }
        .vm-network-container {
          flex-direction: column;
          gap: 40px;
        }
        .network-node {
          width: 100%;
        }
        .network-lines {
          display: none;
        }
        .core-hub {
          position: relative;
          transform: none;
          left: auto;
          top: auto;
          margin: 20px 0;
        }
        .about-badge {
          left: 10px;
          bottom: 10px;
        }
        .path-step,
        .path-step:nth-child(even) {
          flex-direction: column;
          text-align: center;
        }
        .path-connector,
        .pathway-spine {
          display: none;
        }
        .path-content {
          width: 100%;
          margin-top: 30px;
        }
        .path-node {
          position: relative;
          transform: none !important;
          left: auto;
          top: auto;
          margin: 0 auto;
        }
      }

      @media (max-width: 768px) {
        section {
          padding: 60px 0;
        }
        header {
          width: 100%;
          border-radius: 0;
          top: 0;
          padding: 15px 20px;
        }
        .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          width: 80%;
          height: 100vh;
          background: var(--glass-bg);
          backdrop-filter: blur(30px);
          -webkit-backdrop-filter: blur(30px);
          flex-direction: column;
          justify-content: center;
          gap: 2rem;
          transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
          z-index: 1000;
        }
        .nav-links.active {
          right: 0;
        }
        .nav-links a {
          font-size: 1.5rem;
          color: var(--text-main);
        }
        .cta-btn {
          margin-top: 1rem;
          font-size: 1.2rem;
          padding: 15px 35px;
        }
        .mobile-menu-btn {
          display: flex;
        }
        .bento-grid {
          grid-template-columns: 1fr;
        }
        .metrics-wrapper {
          margin-top: -40px;
          padding-bottom: 20px;
        }
        .metrics-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }
        .arts-grid,
        .about-grid {
          padding: 30px 20px;
        }
        .form-grid {
          grid-template-columns: 1fr;
        }
        .form-container {
          padding: 30px 20px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          text-align: center;
        }
        .footer-col a:hover {
          transform: translateX(0);
        }
        .hero h1 {
          font-size: 2.8rem;
        }
        .table-container {
          padding: 20px 15px;
          border-radius: 16px;
        }
        .tl-item {
          padding-left: 70px;
        }
        .tl-spine {
          left: 20px;
        }
        .tl-node {
          left: 7px;
          width: 26px;
          height: 26px;
        }
        .tl-card {
          flex-direction: column;
          text-align: center;
        }
        .dash-header {
          flex-direction: column;
          text-align: center;
        }
      }

      /* ================= GALLERY ================= */

      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
        margin-top: 50px;
      }

      .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 28px;
        background: #fff;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--glass-border);
        transition: var(--transition-smooth);
        cursor: pointer;
      }

      .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
      }

      .gallery-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        transition: 0.6s;
      }

      .gallery-item:hover img {
        transform: scale(1.08);
      }

      .gallery-overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.75),
          rgba(0, 0, 0, 0.05)
        );
        color: #fff;
      }

      .gallery-overlay h3 {
        color: #fff;
        margin: 0;
        font-size: 1.25rem;
        font-family: var(--font-display);
      }

      /*logo*/
      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        font-size: 28px;
        font-weight: 700;
      }

      .logo-img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        display: block;
      }




      /* ================= ACHIEVEMENTS ================= */

.achievements-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

/* Achievement Card */
.achievement-card {
  position: relative;
  padding: 35px 30px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  overflow: hidden;
}

/* Top decorative line */
.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-green),
    var(--color-orange)
  );
}

/* Hover */
.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Big Icon */
.achievement-icon {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  font-size: 38px;

  background: rgba(255, 255, 255, 0.12);

  margin-bottom: 22px;

  transition: transform 0.4s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Heading */
.achievement-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

/* List */
.achievement-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-content li {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 13px 0;

  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

.achievement-content li:last-child {
  border-bottom: none;
}

/* Small emoji */
.achievement-content li > span {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.1);

  font-size: 18px;

  flex-shrink: 0;
}

/* Text */
.achievement-content li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.achievement-content li strong {
  font-size: 0.95rem;
}

.achievement-content li small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* View All */
.achievement-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 22px;

  text-decoration: none;

  font-weight: 600;

  color: var(--color-green);

  transition: gap 0.3s ease;
}

.achievement-link:hover {
  gap: 14px;
}

.achievement-link span {
  font-size: 1.2rem;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 600px) {

  .achievements-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-card {
    padding: 28px 24px;
  }

}





/* Clickable Achievement pop up css */
.achievement-item {
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.achievement-item:hover {
  transform: translateY(-2px);
}

/* Achievement Modal */
.achievement-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.achievement-modal.show {
  display: flex;
}

.achievement-modal-content {
  position: relative;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: achievementPopup 0.25s ease;
}

@keyframes achievementPopup {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.achievement-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.achievement-modal-image {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.achievement-modal-body {
  padding: 28px;
}

.achievement-modal-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 20px;
  background: #fff7d6;
  color: #9a6b00;
  font-size: 14px;
  font-weight: 700;
}

.achievement-modal-body h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #15803d;
}

.achievement-modal-body p {
  margin: 0 0 22px;
  color: #555;
  line-height: 1.7;
}

.achievement-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.achievement-details div {
  padding: 14px;
  border-radius: 10px;
  background: #f5f5f5;
}

.achievement-details strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  color: #777;
}

.achievement-details span {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

@media (max-width: 600px) {
  .achievement-modal-image {
    height: 220px;
  }

  .achievement-modal-body {
    padding: 20px;
  }

  .achievement-modal-body h2 {
    font-size: 23px;
  }

  .achievement-details {
    grid-template-columns: 1fr;
  }
}




/* ================= CAREERS ================= */

.careers-section {
  padding-top: 20px;
  padding-bottom: 100px;
}


/* Intro */

.career-intro {
  display: flex;
  align-items: center;
  gap: 30px;

  padding: 40px;

  margin-top: 45px;

  border-radius: 24px;
}


.career-icon {
  min-width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  font-size: 45px;

  background: linear-gradient(
    135deg,
    var(--color-green-light),
    var(--color-orange-light)
  );
}


.career-intro-content h3 {
  font-family: var(--font-display);

  font-size: 1.8rem;

  margin-bottom: 12px;
}


.career-intro-content p {
  color: var(--text-muted);

  margin-bottom: 8px;
}


/* Career Cards */

.career-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin-top: 30px;
}


.career-card {
  padding: 32px;

  border-radius: 24px;

  background: var(--bg-surface);

  border: 1px solid var(--glass-border);

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


.career-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-hover);

  border-color: var(--color-green);
}


/* Card Icon */

.career-card-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  font-size: 32px;

  margin-bottom: 20px;

  background: var(--color-green-light);
}


.career-card:nth-child(2) .career-card-icon {
  background: var(--color-orange-light);
}


.career-card:nth-child(3) .career-card-icon {
  background: var(--color-blue-light);
}


/* Card Heading */

.career-card h3 {
  font-family: var(--font-display);

  font-size: 1.35rem;

  margin-bottom: 12px;
}


.career-card p {
  color: var(--text-muted);

  margin-bottom: 20px;
}


/* Job List */

.career-card ul {
  list-style: none;

  padding: 0;

  margin: 0;
}


.career-card li {
  padding: 9px 0;

  border-bottom: 1px solid rgba(128, 128, 128, 0.15);

  font-size: 0.95rem;
}


.career-card li:last-child {
  border-bottom: none;
}


/* Apply Area */

.career-apply {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-top: 30px;

  padding: 35px 40px;

  border-radius: 24px;
}


.career-apply h3 {
  font-family: var(--font-display);

  font-size: 1.5rem;

  margin-bottom: 8px;
}


.career-apply p {
  color: var(--text-muted);

  margin: 0;
}


/* Responsive */

@media (max-width: 900px) {

  .career-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 650px) {

  .careers-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }


  .career-intro {
    flex-direction: column;

    align-items: flex-start;

    padding: 28px;
  }


  .career-grid {
    grid-template-columns: 1fr;
  }


  .career-apply {
    flex-direction: column;

    align-items: flex-start;

    padding: 28px;
  }





}


  /* ================= LATEST NEWS & EVENTS ================= */

.news-events-section {
  padding-top: 20px;
  padding-bottom: 100px;
}


/* News Grid */

.news-events-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;

  margin-top: 45px;
}


/* News Card */

.news-card {
  position: relative;

  display: flex;

  gap: 20px;

  padding: 28px;

  border-radius: 22px;

  background: var(--bg-surface);

  border: 1px solid var(--glass-border);

  box-shadow: var(--shadow-soft);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* Top Border */

.news-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    var(--color-green),
    var(--color-orange)
  );
}


/* Hover */

.news-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow-hover);

  border-color: var(--color-green);
}


/* Date */

.news-date {
  min-width: 75px;
  height: 90px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: var(--color-green-light);

  color: var(--color-green-dark);

  flex-shrink: 0;
}


.news-day {
  font-family: var(--font-display);

  font-size: 1.8rem;

  font-weight: 800;

  line-height: 1;
}


.news-month {
  font-size: 0.75rem;

  font-weight: 700;

  margin-top: 5px;
}


.news-year {
  font-size: 0.7rem;

  opacity: 0.7;

  margin-top: 2px;
}


/* Icon */

.news-icon {
  position: absolute;

  top: 22px;

  right: 22px;

  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 14px;

  background: var(--color-orange-light);

  font-size: 23px;
}


/* Content */

.news-content {
  padding-right: 45px;
}


.news-category {
  display: inline-block;

  padding: 5px 10px;

  border-radius: 20px;

  background: var(--color-green-light);

  color: var(--color-green-dark);

  font-size: 0.72rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  margin-bottom: 10px;
}


.news-content h3 {
  font-family: var(--font-display);

  font-size: 1.3rem;

  margin-bottom: 10px;
}


.news-content p {
  color: var(--text-muted);

  font-size: 0.9rem;

  line-height: 1.6;

  margin-bottom: 15px;
}


/* Read More */

.news-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  text-decoration: none;

  color: var(--color-green);

  font-weight: 700;

  font-size: 0.9rem;

  transition: gap 0.3s ease;
}


.news-link:hover {
  gap: 13px;
}


.news-link span {
  font-size: 1.1rem;
}


/* View All */

.news-view-all {
  display: flex;

  justify-content: center;

  margin-top: 40px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .news-events-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 600px) {

  .news-events-section {
    padding-top: 30px;

    padding-bottom: 70px;
  }


  .news-card {
    padding: 22px;

    gap: 15px;
  }


  .news-date {
    min-width: 65px;

    height: 80px;
  }


  .news-day {
    font-size: 1.5rem;
  }


  .news-content h3 {
    font-size: 1.15rem;
  }


  .news-content p {
    font-size: 0.85rem;
  }


  .news-icon {
    width: 38px;

    height: 38px;

    font-size: 19px;

    top: 18px;

    right: 18px;
  }

}


/* ================= TESTIMONIALS ================= */

.testimonials-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

/* ================= VIDEO TESTIMONIALS ================= */

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.testimonial-video-card {
  position: relative;
  overflow: hidden;

  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 24px;

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.testimonial-video-card::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    var(--color-green),
    var(--color-orange)
  );

  z-index: 2;
}

.testimonial-video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-green);
}

/* Video */

.testimonial-video {
  width: 100%;
  aspect-ratio: 16 / 9;

  background: #0f172a;
  overflow: hidden;
}

.testimonial-video video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* Video Content */

.testimonial-video-content {
  padding: 28px 30px 30px;
}

/* Person */

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 16px;

  background: linear-gradient(
    135deg,
    var(--color-green-light),
    var(--color-orange-light)
  );

  font-size: 25px;
}

.testimonial-person h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;

  margin-bottom: 4px;
}

.testimonial-person span {
  display: block;

  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Video Review Text */

.testimonial-video-content > p {
  color: var(--text-muted);

  font-size: 0.95rem;
  line-height: 1.7;

  margin: 0;
}


/* ================= WRITTEN TESTIMONIALS ================= */

 /* ================= WRITTEN TESTIMONIAL SLIDER ================= */

/* ================= TESTIMONIAL SLIDER ================= */

.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.testimonial-review-grid {
  display: flex;
  gap: 25px;
  width: 100%;
  margin-top: 0;

  animation: testimonialSlide 12s ease-in-out infinite;
}


/* ================= REVIEW CARD ================= */

.testimonial-review-card {
  position: relative;

  /* EXACTLY 3 CARDS */
  flex: 0 0 calc((100% - 50px) / 3);

  padding: 35px 30px 30px;

  border-radius: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* ================= SLIDE ANIMATION ================= */

@keyframes testimonialSlide {

  /* First 3 cards */
  0%,
  40% {
    transform: translateX(0);
  }

  /* Move exactly 3 cards */
  50%,
  90% {
    transform: translateX(calc(-100% - 25px));
  }

  /* Reset */
  100% {
    transform: translateX(0);
  }
}



/* ================= HOVER ================= */

.testimonial-review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-green);
}


/* ================= DECORATIVE TOP LINE ================= */

.testimonial-review-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    var(--color-green),
    var(--color-orange)
  );
}


/* ================= QUOTE ================= */

.testimonial-quote {
  font-family: Georgia, serif;

  font-size: 5rem;

  line-height: 0.7;

  color: var(--color-green-light);

  margin-bottom: 20px;
}


/* ================= REVIEW TEXT ================= */

.testimonial-review-card > p {
  color: var(--text-muted);

  font-size: 0.95rem;

  line-height: 1.75;

  margin-bottom: 25px;
}


/* ================= REVIEW AUTHOR ================= */

.review-author {
  display: flex;

  align-items: center;

  gap: 14px;

  padding-top: 18px;

  border-top: 1px solid rgba(128, 128, 128, 0.15);
}

.review-avatar {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--color-green-light);

  color: var(--color-green);

  font-family: var(--font-display);

  font-size: 1.1rem;

  font-weight: 800;
}

.review-author h4 {
  font-family: var(--font-display);

  font-size: 1rem;

  margin-bottom: 3px;
}

.review-author span {
  display: block;

  color: var(--text-muted);

  font-size: 0.78rem;
}


/* ================= TABLET ================= */

@media (max-width: 900px) {

  .testimonial-review-grid {
    animation: testimonialSlideTablet 12s linear infinite;
  }

  .testimonial-review-card {
    flex: 0 0 calc((100vw - 55px) / 2);
  }

@keyframes testimonialSlide {

  0% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-100%);
  }

  95% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }

}

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

  .testimonials-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .testimonial-slider {
    margin-top: 25px;
  }

  .testimonial-review-grid {
    gap: 20px;
    animation: testimonialSlideMobile 12s linear infinite;
  }

  .testimonial-review-card {
    flex: 0 0 calc(100vw - 40px);

    padding: 30px 24px 25px;
  }

  .testimonial-review-card > p {
    font-size: 0.9rem;
  }

  .testimonial-quote {
    font-size: 4.5rem;
  }

  @keyframes testimonialSlideMobile {

    0%,
    45% {
      transform: translateX(0);
    }

    50%,
    95% {
      transform: translateX(
        calc(-3 * (100vw - 40px + 20px))
      );
    }

    100% {
      transform: translateX(0);
    }

  }

}

/* =========================================================
   CONTACT & ENQUIRY SECTION
   ========================================================= */

.contact-section {
  padding-top: 20px;
  padding-bottom: 110px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

/* ================= CONTACT INFO ================= */

.contact-info-card {
 padding: 40px 40px 270px 40px;
  border-radius: 26px;
  margin-bottom: 28px;
}

.contact-small-label,
.form-label,
.map-header span,
.callback-content > span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.8px;
color: var(--color-green);
  margin-bottom: 8px;
}

.contact-info-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  margin: 0 0 10px;
}

.contact-info-header p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}


/* Contact Items */

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);

  font-size: 1.35rem;
}

.contact-info-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-info-item strong {
  line-height: 1.5;
}

.contact-info-item small {
  color: var(--text-muted);
}

.contact-info-item a {
   color: var(--color-green);
  font-weight: 700;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}


/* ================= CONTACT BUTTONS ================= */

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.contact-action {
  flex: 1;
  padding: 14px 18px;

  border-radius: 13px;

  text-align: center;
  text-decoration: none;

  font-weight: 700;

  transition: all 0.3s ease;
}

.call-action {
  color: white;
  background: var(--color-orange);
}

.call-action:hover {
  transform: translateY(-3px);
}

.whatsapp-action {
  color: white;
  background: #25d366;
}

.whatsapp-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}


/* ================= GOOGLE MAP ================= */

.contact-map-card {
  overflow: hidden;
  border-radius: 26px;
}

.map-header {
  padding: 24px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.map-header h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
}

.map-open-btn {
  padding: 10px 15px;
  border-radius: 10px;

  color: var(--color-orange-light);
  border: 1px solid rgba(255, 255, 255, 0.12);

  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;

  transition: all 0.3s ease;
}

.map-open-btn:hover {
  background: rgba(255, 255, 255, 0.07);
}

.map-container {
  width: 100%;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.9);
}


/* ================= ENQUIRY FORM ================= */

.contact-form-card {
  padding: 34px;
  border-radius: 26px;
}

.form-card-header {
  margin-bottom: 28px;
}

.form-card-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  margin: 0 0 8px;
}

.form-card-header p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;

  padding: 14px 15px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.045);
  color: inherit;

  font-family: inherit;
  font-size: 0.9rem;

  outline: none;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(255, 130, 50, 0.08);
}

.contact-form select option {
  background: #151515;
  color: white;
}

.contact-submit-btn {
  width: 100%;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}


/* ================= CALLBACK ================= */

.callback-card {
  margin-top: 22px;
  padding: 25px;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 145, 50, 0.14),
      rgba(255, 255, 255, 0.035)
    );

  border: 1px solid rgba(255, 145, 50, 0.2);
}

.callback-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.08);

  font-size: 1.4rem;

  margin-bottom: 15px;
}

.callback-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  margin: 0 0 7px;
}

.callback-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.callback-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.callback-input-row input {
  width: 100%;
  box-sizing: border-box;

  padding: 13px 14px;

  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.05);
  color: inherit;

  font-family: inherit;
  outline: none;
}

.callback-input-row input:focus {
  border-color: var(--color-orange);
}

.callback-btn {
  padding: 13px 18px;

  border: none;
  border-radius: 11px;

  background: var(--color-orange);
  color: white;

  font-family: inherit;
  font-weight: 700;

  cursor: pointer;
  white-space: nowrap;

  transition: all 0.3s ease;
}

.callback-btn:hover {
  transform: translateY(-2px);
}


/* ================= QUICK CONTACT ================= */

.quick-contact-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 22px;
}

.quick-contact-item {
  padding: 17px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);

  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-contact-item > span {
  font-size: 1.2rem;
}

.quick-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quick-contact-item small {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.quick-contact-item a,
.quick-contact-item strong {
  font-size: 0.82rem;
  color: var(--color-orange-green);
  text-decoration: none;
}

.quick-contact-item strong {
  color: inherit;
}


/* ================= FLOATING WHATSAPP ================= */

.floating-whatsapp {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;
  color: white;

  text-decoration: none;

  font-size: 1.7rem;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25);

  z-index: 999;

  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow:
    0 15px 35px rgba(37, 211, 102, 0.3);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .callback-input-row {
    grid-template-columns: 1fr 1fr;
  }

  .callback-btn {
    grid-column: 1 / -1;
  }

}


@media (max-width: 650px) {

  .contact-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 23px;
    border-radius: 20px;
  }

  .contact-info-header h3,
  .form-card-header h3 {
    font-size: 1.6rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form .full-width {
    grid-column: auto;
  }

  .contact-actions {
    flex-direction: column;
  }

  .map-header {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .map-container iframe {
    min-height: 320px;
  }

  .callback-input-row {
    grid-template-columns: 1fr;
  }

  .callback-btn {
    grid-column: auto;
    width: 100%;
  }

  .quick-contact-card {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

}



/* ================= CAMPUS DRONE VIDEO ================= */

.campus-video-section {
  padding-top: 20px;
  padding-bottom: 100px;
}



.drone-video-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

  max-width: 850px;
  margin: 35px auto 0;
}


.drone-video {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: #000;
}

.drone-video-caption {
  padding: 28px 32px 32px;
}

.drone-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-green);
}

.drone-video-caption h3 {
  margin: 0 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.drone-video-caption p {
  margin: 0;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.7;
}


/* Mobile */

@media (max-width: 768px) {

  .campus-video-section {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .drone-video-container {
    width: 95%;
  }

  .drone-video {
    height: 250px;
  }

  .drone-video-caption {
    padding: 22px;
  }

  .drone-video-caption h3 {
    font-size: 1.4rem;
  }
}


/* ================= GALLERY CATEGORIES ================= */


#gallery {
  padding-top: 10px;
  padding-bottom: 50px;
}

.gallery-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gallery-category-card {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.gallery-card-image {
  height: 220px;
  overflow: hidden;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-category-card:hover .gallery-card-image img {
  transform: scale(1.08);
}

.gallery-card-content {
  padding: 20px;
}

.gallery-card-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.gallery-card-content p {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.gallery-card-content span {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green);
}

/* Tablet */
@media (max-width: 1000px) {
  .gallery-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-categories {
    grid-template-columns: 1fr;
  }

  .gallery-card-image {
    height: 240px;
  }
}



.bento-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(21, 128, 61, 0.1);
  color: var(--color-green);
  margin-bottom: 18px;
}

.bento-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.8;
}


.faculty-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 128, 61, 0.1);
  color: var(--color-green);
}

.faculty-dot svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
/* ================= 3D FLOATING ADMISSION BUTTON ================= */

.floating-admission-btn {
  position: fixed;

  left: 25px;
  top: 50%;

  z-index: 9999;

  width: 105px;
  height: 105px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-decoration: none;

  color: #ffffff;

  /* ================= WEBSITE GREEN THEME ================= */

  background:
    radial-gradient(
      circle at 30% 25%,
      #4ade80 0%,
      #22a447 20%,
      #15803d 52%,
      #0f6b32 78%,
      #084c25 100%
    );

  font-family: var(--font-display);

  border: 2px solid rgba(255, 255, 255, 0.45);

  /* ================= 3D EFFECT ================= */


  transform-style: preserve-3d;

  animation: admissionFloat 8s ease-in-out infinite;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* ================= GLOSSY HIGHLIGHT ================= */

.floating-admission-btn::before {
  content: "";

  position: absolute;

  top: 8px;
  left: 17px;

  width: 48px;
  height: 24px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.50);

  filter: blur(3px);

  transform: rotate(-25deg);

  pointer-events: none;
}


/* ================= GOLDEN ACCENT ================= */

.floating-admission-btn::after {
  content: "";

  position: absolute;

  width: 13px;
  height: 13px;

  right: 18px;
  top: 18px;

  border-radius: 50%;

  background: #f59e0b;

  box-shadow:
    0 0 8px rgba(245, 158, 11, 0.65);

  pointer-events: none;
}


/* ================= ICON ================= */

.admission-icon {
  font-size: 1.7rem;

  line-height: 1;

  margin-bottom: 6px;

  filter:
    drop-shadow(0 3px 3px rgba(0, 0, 0, 0.35));
}


/* ================= TEXT ================= */

.admission-text {
  font-size: 0.78rem;

  line-height: 1.15;

  font-weight: 800;

  letter-spacing: 0.2px;

  color: #ffffff;

  text-shadow:
    0 2px 3px rgba(0, 0, 0, 0.40);
}


/* ================= FLOATING MOVEMENT ================= */

@keyframes admissionFloat {

  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  20% {
    transform: translate(100px, -70px) rotate(4deg);
  }

  40% {
    transform: translate(170px, 0) rotate(-3deg);
  }

  60% {
    transform: translate(100px, 75px) rotate(4deg);
  }

  80% {
    transform: translate(20px, 35px) rotate(-2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}


/* ================= HOVER ================= */

.floating-admission-btn:hover {

  animation-play-state: paused;

  transform:
    scale(1.12)
    translateZ(20px);

  box-shadow:
    0 10px 0 #084c25,
    0 20px 35px rgba(21, 128, 61, 0.45),
    0 30px 55px rgba(21, 128, 61, 0.25),
    inset 0 6px 12px rgba(255, 255, 255, 0.55),
    inset 0 -10px 18px rgba(0, 60, 25, 0.40);
}


/* ================= CLICK EFFECT ================= */

.floating-admission-btn:active {
  transform: scale(0.96);
}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

  .floating-admission-btn {

    width: 78px;
    height: 78px;

    left: 12px;

    border-width: 1px;

    animation-duration: 8s;
  }


  .admission-icon {
    font-size: 1.25rem;
    margin-bottom: 3px;
  }


  .admission-text {
    font-size: 0.62rem;
  }


  .floating-admission-btn::before {

    top: 6px;
    left: 12px;

    width: 35px;
    height: 18px;
  }


  .floating-admission-btn::after {

    width: 9px;
    height: 9px;

    right: 13px;
    top: 13px;
  }


  @keyframes admissionFloat {

    0% {
      transform: translate(0, 0);
    }

    25% {
      transform: translate(55px, -45px);
    }

    50% {
      transform: translate(100px, 0);
    }

    75% {
      transform: translate(55px, 45px);
    }

    100% {
      transform: translate(0, 0);
    }
  }
}



/* ================= MANDATORY DOCUMENTS ================= */

.mandatory-menu {
  position: relative;
  display: inline-block;
}

.mandatory-btn {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);

  text-decoration: none;

  white-space: nowrap;

  cursor: pointer;

  transition: color var(--transition-smooth);
}

.mandatory-btn:hover {
  color: var(--color-green);
}

/* Dropdown */

.mandatory-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  z-index: 9999;
}

/* Show dropdown */

.mandatory-dropdown.show {
  display: block;
}

/* Dropdown links */

.mandatory-dropdown a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.mandatory-dropdown a:hover {
  background: #f1f8f3;
  color: #15803d;
}