
    :root {
      --red: #FE3050;
      --red-dark: #D71B3B;
      --red-deep: #8C1029;
      --red-tint: #FFE3E7;
      --navy: #01304E;
      --navy-2: #012238;
      --navy-light: #2F5A78;
      --navy-tint: #E4EDF2;
      --ink: #0B2230;
      --paper: #FBF8F2;
      --paper-2: #F4F6F8;
      --card: #FFFFFF;
      --line: #E4DFD3;
      --radius-lg: 26px;
      --radius-xl: 38px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", Sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    .display {
      font-family: "Oswald", Sans-serif;
      letter-spacing: -0.01em;
    }

    a {
      text-decoration: none;
    }

    :focus-visible {
      outline: 3px solid var(--red);
      outline-offset: 2px;
    }

    .eyebrow {
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--red);
    }

    .eyebrow.light {
      color: #FFC4CD;
    }

    .ribbon {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: var(--red);
      color: #fff;
      font-size: .82rem;
      font-weight: 600;
      padding: 9px 22px 9px 18px;
      clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
    }

    .ribbon .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
    }

    /* NAVBAR */
    .navbar {
      transition: .3s ease;
      padding-top: 14px;
      padding-bottom: 14px;
      z-index: 1050;
    }

    .glentree-logo {
      max-height: 46px;
      width: auto;
    }

    .navbar .nav-link {
      font-weight: 500;
      color: var(--navy);
      margin: 0 10px;
    }

    .navbar .nav-link:hover {
      color: var(--red);
    }

    .btn-ghost {
      border: 1.5px solid var(--navy);
      color: var(--navy);
      border-radius: 50px;
      padding: 9px 22px;
      font-weight: 600;
      transition: .2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-ghost:hover {
      background: var(--navy);
      color: #fff;
    }

    .btn-cta {
      background: linear-gradient(95deg, var(--red) 0%, var(--red-dark) 100%);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 50px;
      font-size: 1rem;
      transition: .2s;
      box-shadow: 0 10px 22px rgba(254, 48, 80, .28);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(254, 48, 80, .36);
      color: #fff;
    }

    @media (min-width:992px) {
      .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end;
      }
    }

    @media (max-width:991.98px) {
      .navbar-collapse {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--line);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
      }

      .navbar-nav {
        width: 100%;
      }

      .navbar-nav .nav-link {
        padding: 10px 2px;
        border-bottom: 1px solid var(--line);
      }

      .navbar .btn-ghost,
      .navbar .btn-cta {
        width: 100%;
      }
    }

    /* MARQUEE */
    .marquee-bar {
      background: var(--navy);
      overflow: hidden;
      white-space: nowrap;
      padding: 9px 0;
      margin-top: 76px;
      border-bottom: 3px solid var(--red);
    }

    .marquee-track {
      display: inline-flex;
      animation: scroll-left 24s linear infinite;
    }

    .marquee-track span {
      color: #fff;
      font-weight: 600;
      letter-spacing: .12em;
      font-size: .8rem;
      text-transform: uppercase;
      padding: 0 2.2rem;
      display: inline-flex;
      align-items: center;
      gap: .6rem;
    }

    .marquee-track span i {
      color: var(--red);
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee-track {
        animation: none;
      }
    }

    @media (max-width:768px) {
      .marquee-bar {
        margin-top: 68px;
      }
    }

    /* HERO */
    .hero-section {
      position: relative;
      background: url('images/banner.png') center center / cover no-repeat;
      padding-top: 64px;
      padding-bottom: 80px;
      z-index: 1;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(1, 34, 56, .90) 0%, rgba(1, 48, 78, .74) 100%);
    }

    .hero-section .container {
      position: relative;
      z-index: 2;
    }

    .section-title {
      font-size: 2.5rem;
      line-height: 1.16;
      color: #fff;
      font-weight: 800;
    }

    .section-title em {
      font-style: normal;
      color: #FF8A99;
    }

    .hero-section p {
      color: #E7EEF2;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-top: 1.6rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .82rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 50px;
    }

    .pill-white {
      background: #fff;
      color: var(--navy);
    }

    .pill-red {
      background: var(--red);
      color: #fff;
    }

    .pill-outline {
      background: rgba(255, 255, 255, .12);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .35);
    }

    /* FORM CARD */
    .form-box {
      background: var(--card);
      border-radius: var(--radius-xl);
      padding: 2rem;
      box-shadow: 0 30px 60px -16px rgba(1, 34, 56, .35);
      border: 1px solid var(--line);
    }

    .form-box h4 {
      color: var(--navy);
      font-weight: 800;
    }

    .form-control,
    .form-select {
      border-radius: 14px;
      padding: 11px 16px;
      border: 1.5px solid var(--line);
      font-size: .95rem;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 .18rem rgba(254, 48, 80, .14);
    }

    .error-msg {
      color: var(--red-dark);
      font-size: .8rem;
      display: none;
      margin-top: 5px;
      font-weight: 600;
    }

    .password-strength {
      font-size: .75rem;
      margin-top: 5px;
      font-weight: 600;
    }

    .login-link {
      text-align: center;
      margin-top: 1.2rem;
      font-size: .95rem;
    }

    .login-link a {
      color: var(--red-dark);
      font-weight: 700;
    }

    .login-link a:hover {
      text-decoration: underline;
    }

    /* TOAST */
    .custom-toast {
      padding: 12px 24px;
      border-radius: 40px;
      box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
      z-index: 9999;
      font-weight: 600;
    }

    /* STATS */
    .placement-stat {
      padding: 30px;
      border-radius: 22px;
      transition: transform .3s, background .3s;
    }

    .placement-stat:hover {
      transform: translateY(-5px);
    }

    .stat-navy {
      background: rgba(1, 48, 78, .07);
    }

    .stat-navy:hover {
      background: rgba(1, 48, 78, .13);
    }

    .stat-red {
      background: rgba(254, 48, 80, .07);
    }

    .stat-red:hover {
      background: rgba(254, 48, 80, .13);
    }

    .stat-num {
      font-family: 'Fraunces', serif;
    }

    /* AWARDS */
    .awards-section {
      background: var(--navy-2);
    }

    .award-icon {
      width: 62px;
      height: 62px;
      border-radius: 16px;
      background: rgba(254, 48, 80, .16);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.55rem;
      color: var(--red);
      flex-shrink: 0;
    }

    /* SECTION HEADERS */
    .section-heading {
      font-size: 2.3rem;
      line-height: 1.18;
      color: var(--navy);
    }

    .section-tag {
      display: inline-block;
      background: var(--navy);
      color: #fff;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: .8rem;
    }

    /* WHY GLENTREE */
    .why-glentree-card {
      background: linear-gradient(100deg, var(--red), var(--red-dark));
      color: #fff;
      font-weight: 600;
      padding: 1.05rem 1.6rem;
      border-radius: 20px;
      display: inline-block;
    }

    .why-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1.2rem;
    }

    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      margin-bottom: .6rem;
      font-weight: 500;
    }

    .why-list li i {
      color: var(--red);
      margin-top: 3px;
    }

    /* MISSION */
    .our-mission-section {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
    }

    .our_mission_card {
      transition: .3s;
      border: 1px solid rgba(255, 255, 255, .13);
      background: rgba(255, 255, 255, .06);
      backdrop-filter: blur(2px);
    }

    .our_mission_card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, .12);
    }

    .our_mission_text {
      color: #FF8A99;
    }

    /* ABOUT GALLERY */
    .about-glentree-card {
      padding: 1.3rem 1.4rem;
      background: #fff;
      border-radius: 0 0 22px 22px;
    }

    /* BRANCHES */
    .branch-pill {
      background: var(--navy);
      color: #fff;
      text-align: center;
      font-weight: 600;
      padding: 12px;
      border-radius: 14px;
      margin-bottom: .9rem;
    }

    /* ADMISSION CTA */
    .admission-box {
      background: linear-gradient(120deg, var(--navy), var(--navy-2));
      border-radius: var(--radius-xl);
      position: relative;
      overflow: hidden;
    }

    .admission-box::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(254, 48, 80, .18);
    }

    /* FOOTER */
    footer {
      background: var(--navy-2);
    }

    footer a {
      color: #BFD2DD;
      text-decoration: none;
    }

    footer a:hover {
      color: var(--red);
      text-decoration: underline;
    }

    footer h5 {
      color: #fff;
      font-size: .9rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    @media (max-width: 768px) {
      .hero-section {
        padding-top: 44px;
      }

      .section-title {
        font-size: 2rem;
      }

      .form-box {
        margin-top: 30px;
      }
    }
 