﻿ :root {
      --orange: #F0B800;
      --orange-dark: #C89000;
      --orange-light: #FFD740;
      --orange-pale: #FFF8D6;
      --gold: #FFC200;
      --dark: #1A1A2E;
      --darker: #0f0f1a;
      --white: #FFFFFF;
      --gray: #F8F8F8;
      --text: #333;
      --text-light: #666;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      background: #fff;
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─── PRELOADER ─── */
    #preloader {
      position: fixed; inset: 0; background: var(--dark);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity .6s ease;
    }
    .preloader-logo {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem; color: var(--orange); letter-spacing: 4px;
      animation: pulse 1.2s ease-in-out infinite;
    }
    .preloader-bar {
      width: 200px; height: 4px; background: rgba(255,255,255,.15);
      border-radius: 10px; margin-top: 20px; overflow: hidden;
    }
    .preloader-fill {
      height: 100%; width: 0; background: linear-gradient(90deg,var(--orange),var(--gold));
      border-radius: 10px; animation: load 2s ease forwards;
    }
    @keyframes load { to { width: 100%; } }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(.97)} }

    /* ─── PARTICLES CANVAS ─── */
    #particles-canvas {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 0; opacity: .35;
    }

    /* ─── TOP BAR ─── */
    .top-bar {
      background: linear-gradient(135deg, var(--dark), #2d2d4e);
      color: #ccc; font-size: .82rem; padding: 7px 0;
      border-bottom: 2px solid var(--orange);
    }
    .top-bar a { color: var(--orange-light); text-decoration: none; }
    .top-bar a:hover { color: var(--gold); }
    .social-icons a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(240,184,0,.2); color: var(--orange-light);
      margin-left: 5px; font-size: .75rem; transition: all .3s;
    }
    .social-icons a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

    /* ─── NAVBAR ─── */
    .navbar {
      background: rgba(255,255,255,.97) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 3px 30px rgba(240,184,0,.15);
      padding: 10px 0;
      position: sticky; top: 0; z-index: 1000;
      transition: all .4s;
    }
    .navbar.scrolled {
      padding: 6px 0;
      box-shadow: 0 5px 40px rgba(240,184,0,.3);
    }
    .navbar-brand {
      display: flex; align-items: center; gap: 12px;
    }
    .brand-logo {
      width: 54px; height: 54px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.4rem; font-weight: 900;
      box-shadow: 0 4px 15px rgba(240,184,0,.4);
      animation: spin-slow 12s linear infinite;
    }
    @keyframes spin-slow { from{transform:rotate(0)} to{transform:rotate(360deg)} }
    .brand-text h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; color: var(--dark); margin: 0; line-height: 1.2;
    }
    .brand-text small { color: var(--orange); font-size: .7rem; font-weight: 700; }
    .nav-link {
      font-weight: 700; color: var(--dark) !important; font-size: .88rem;
      padding: 8px 14px !important; border-radius: 6px; transition: all .3s;
      position: relative;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 2px; background: var(--orange); transition: all .3s;
    }
    .nav-link:hover { color: #B8860B !important; background: var(--orange-pale); }
    .nav-link:hover::after { left: 10%; right: 10%; }
    .nav-item.active .nav-link { color: #B8860B !important; }
    .btn-admission {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff !important; border-radius: 25px !important;
      padding: 8px 22px !important;
      box-shadow: 0 4px 15px rgba(240,184,0,.4);
      animation: glow-btn 2s ease-in-out infinite;
    }
    @keyframes glow-btn {
      0%,100%{box-shadow:0 4px 15px rgba(240,184,0,.4)}
      50%{box-shadow:0 6px 30px rgba(240,184,0,.7)}
    }
    .btn-admission:hover { transform: translateY(-2px) scale(1.05); }
    .dropdown-menu { border: none; box-shadow: 0 10px 40px rgba(0,0,0,.12); border-top: 3px solid var(--orange); }
    .dropdown-item:hover { background: var(--orange-pale); color: var(--orange); }

    /* ─── NAV ICONS ─── */
    .nav-icon { font-size: .75rem; opacity: .7; }

    /* ─── MEGA MENU ─── */
    .mega-dropdown { position: static; }
    .mega-menu {
      position: fixed !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: min(900px, 96vw) !important;
      padding: 0 !important;
      border: none !important;
      border-radius: 16px !important;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(240,184,0,.12) !important;
      border-top: 3px solid var(--orange) !important;
      margin-top: 8px !important;
      animation: megaFadeIn .22s ease both;
    }
    .narrow-mega { width: min(640px, 96vw) !important; }
    @keyframes megaFadeIn {
      from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    .mega-menu-inner {
      display: flex; background: #fff;
    }
    .mega-col {
      flex: 1; padding: 24px 22px; border-right: 1px solid #f0f0f0;
    }
    .mega-col:last-of-type { border-right: none; }
    .mega-col-header {
      font-size: .7rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--orange); margin-bottom: 14px;
      padding-bottom: 10px; border-bottom: 2px solid var(--orange-pale);
      display: flex; align-items: center; gap: 6px;
    }
    .mega-item {
      display: flex; align-items: center; gap: 12px;
      padding: 9px 10px; border-radius: 10px;
      text-decoration: none; color: var(--dark);
      transition: all .22s; margin-bottom: 2px;
      cursor: pointer;
    }
    .mega-item:hover {
      background: var(--orange-pale); color: var(--orange);
      transform: translateX(4px);
    }
    .mega-item:hover .mega-item-icon { transform: scale(1.1) rotate(-5deg); }
    .mega-item-icon {
      width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: .85rem; transition: all .22s;
      box-shadow: 0 3px 10px rgba(240,184,0,.3);
    }
    .mega-item span { display: block; font-size: .88rem; font-weight: 700; line-height: 1.2; }
    .mega-item small { font-size: .75rem; color: var(--text-light); display: block; margin-top: 1px; }
    .mega-item:hover small { color: rgba(240,184,0,.7); }
    .mega-highlight {
      width: 200px; flex-shrink: 0;
      background: linear-gradient(160deg, var(--dark) 0%, #2d2d4e 100%);
      padding: 28px 22px; display: flex; flex-direction: column; justify-content: center;
    }
    .mega-highlight-badge {
      display: inline-block; background: linear-gradient(135deg, var(--orange), var(--gold));
      color: #fff; font-size: .7rem; font-weight: 800;
      padding: 4px 12px; border-radius: 20px; letter-spacing: 1px;
      margin-bottom: 12px; width: fit-content;
    }
    .mega-highlight h6 { color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
    .mega-highlight p { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.5; margin-bottom: 16px; }
    .mega-cta {
      display: inline-block; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; font-size: .8rem; font-weight: 700; padding: 8px 16px;
      border-radius: 8px; text-decoration: none; transition: all .3s;
    }
    .mega-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,184,0,.5); color: #fff; }

    /* ─── STYLED DROPDOWN (small) ─── */
    .dropdown-menu-styled {
      border: none !important; padding: 10px 6px !important;
      border-radius: 14px !important; border-top: 3px solid var(--orange) !important;
      box-shadow: 0 15px 45px rgba(0,0,0,.14) !important;
      min-width: 220px !important;
      animation: dropFadeIn .2s ease both;
    }
    @keyframes dropFadeIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .dropdown-section-label {
      font-size: .68rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--orange); padding: 6px 14px 4px;
    }
    .dropdown-divider-styled { border-color: var(--orange-pale); margin: 6px 10px; }
    .dropdown-menu-styled .dropdown-item {
      border-radius: 8px; padding: 8px 14px; font-weight: 600;
      font-size: .88rem; color: var(--dark); transition: all .2s;
      display: flex; align-items: center;
    }
    .dropdown-menu-styled .dropdown-item:hover {
      background: var(--orange-pale); color: var(--orange);
      transform: translateX(4px);
    }
    .text-orange { color: #B8860B !important; }

    /* ─── NEWS TICKER ─── */
    .news-ticker {
      background: linear-gradient(90deg, var(--orange), var(--orange-dark));
      color: #fff; padding: 9px 0; overflow: hidden;
      box-shadow: 0 3px 15px rgba(240,184,0,.4);
    }
    .ticker-label {
      background: var(--dark); color: var(--gold);
      padding: 4px 16px; font-weight: 800; font-size: .8rem;
      letter-spacing: 2px; white-space: nowrap; border-radius: 0 20px 20px 0;
      margin-right: 20px;
    }
    .ticker-wrap { overflow: hidden; flex: 1; }
    .ticker-text {
      display: inline-block;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
      font-weight: 600; font-size: .85rem;
    }
    @keyframes ticker { 0%{transform:translateX(100%)} 100%{transform:translateX(-100%)} }

    /* ─── HERO CAROUSEL ─── */
    .hero-section { position: relative; z-index: 1; }
    .carousel-item { height: 580px; overflow: hidden; position: relative; }
    .carousel-item::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(240,184,0,.75) 0%, rgba(26,26,46,.85) 100%);
      z-index: 1;
    }
    .carousel-item img {
      width: 100%; height: 100%; object-fit: cover;
      transform: scale(1.05);
      transition: transform 8s ease;
    }
    .carousel-item.active img { transform: scale(1); }
    .carousel-caption {
      z-index: 2; text-align: left; bottom: 0; top: 0;
      display: flex; flex-direction: column; justify-content: center;
      padding-bottom: 60px;
    }
    .hero-badge {
      display: inline-block; background: var(--gold);
      color: var(--dark); font-weight: 800; font-size: .8rem;
      padding: 5px 18px; border-radius: 20px; letter-spacing: 2px;
      margin-bottom: 15px; animation: fadeInDown .8s both;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800;
      line-height: 1.1; color: #fff;
      text-shadow: 0 3px 15px rgba(0,0,0,.3);
      animation: fadeInLeft .9s .2s both;
    }
    .hero-title span { color: var(--gold); }
    .hero-subtitle {
      font-size: 1.1rem; color: rgba(255,255,255,.9);
      margin: 15px 0 25px; animation: fadeInLeft 1s .4s both;
    }
    .hero-btns { animation: fadeInUp 1s .6s both; display: flex; gap: 15px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; padding: 12px 32px; border-radius: 30px;
      font-weight: 700; text-decoration: none; border: none;
      box-shadow: 0 6px 25px rgba(240,184,0,.5);
      transition: all .3s;
    }
    .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(240,184,0,.7); color:#fff; }
    .btn-hero-outline {
      background: transparent; color: #fff;
      padding: 12px 32px; border-radius: 30px;
      font-weight: 700; text-decoration: none;
      border: 2px solid rgba(255,255,255,.8);
      transition: all .3s;
    }
    .btn-hero-outline:hover { background: #fff; color: var(--orange); transform: translateY(-3px); }
    .hero-stats {
      position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
      width: 90%; max-width: 900px; z-index: 10;
      display: flex; gap: 0;
    }
    .stat-card {
      flex: 1; background: #fff; padding: 18px 20px;
      text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,.12);
      transition: all .3s; cursor: default;
      border-bottom: 3px solid transparent;
    }
    .stat-card:first-child { border-radius: 12px 0 0 12px; }
    .stat-card:last-child { border-radius: 0 12px 12px 0; }
    .stat-card:not(:last-child) { border-right: 1px solid #eee; }
    .stat-card:hover { transform: translateY(-5px); border-bottom-color: var(--orange); box-shadow: 0 15px 50px rgba(240,184,0,.2); }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 800; color: var(--orange); }
    .stat-label { font-size: .78rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

    /* ─── SECTION STYLES ─── */
    section { position: relative; z-index: 1; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
      color: var(--dark);
    }
    .section-title span { color: var(--orange); }
    .title-line {
      width: 60px; height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px; margin: 12px auto 0;
    }
    .title-line.left { margin-left: 0; }
    .section-subtitle { color: var(--text-light); font-size: 1.05rem; margin-top: 10px; }

    /* ─── ABOUT SECTION ─── */
    .about-section { padding: 100px 0 80px; background: #fff; }
    .about-img-wrap {
      position: relative; border-radius: 20px; overflow: hidden;
      box-shadow: 20px 20px 60px rgba(240,184,0,.2);
    }
    .about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
    .about-badge-float {
      position: absolute; bottom: 20px; right: -20px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; padding: 20px 28px; border-radius: 12px;
      text-align: center; box-shadow: 0 10px 30px rgba(240,184,0,.4);
    }
    .about-badge-float .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; line-height: 1; }
    .about-feature {
      display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px;
    }
    .feature-icon {
      width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.2rem;
      box-shadow: 0 5px 15px rgba(240,184,0,.3);
      transition: all .3s;
    }
    .about-feature:hover .feature-icon { transform: rotate(10deg) scale(1.1); }
    .feature-text h6 { font-weight: 800; color: var(--dark); margin-bottom: 4px; }
    .feature-text p { font-size: .9rem; color: var(--text-light); margin: 0; }

    /* ─── FACILITIES ─── */
    .facilities-section { padding: 90px 0; background: var(--gray); }
    .facility-card {
      background: #fff; border-radius: 18px; padding: 35px 25px;
      text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,.07);
      transition: all .4s cubic-bezier(.175,.885,.32,1.275);
      cursor: pointer; position: relative; overflow: hidden;
      border: 2px solid transparent;
    }
    .facility-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(240,184,0,.05), rgba(240,184,0,.1));
      opacity: 0; transition: opacity .4s;
    }
    .facility-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--orange); box-shadow: 0 20px 50px rgba(240,184,0,.2); }
    .facility-card:hover::before { opacity: 1; }
    .facility-icon {
      width: 70px; height: 70px; border-radius: 18px; margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.8rem;
      box-shadow: 0 8px 25px rgba(240,184,0,.35);
      transition: all .4s;
    }
    .facility-card:hover .facility-icon { transform: scale(1.15) rotate(-5deg); box-shadow: 0 12px 35px rgba(240,184,0,.5); }
    .facility-card h5 { font-weight: 800; color: var(--dark); margin-bottom: 10px; }
    .facility-card p { font-size: .88rem; color: var(--text-light); margin: 0; }

    /* ─── SCHOLAR SPOTLIGHT ─── */
    .scholars-section { padding: 90px 0; background: linear-gradient(135deg, var(--dark) 0%, #2d2d4e 100%); overflow: hidden; }
    .scholar-card {
      background: rgba(255,255,255,.05); border: 1px solid rgba(240,184,0,.3);
      border-radius: 18px; padding: 25px; text-align: center;
      transition: all .4s; backdrop-filter: blur(10px);
    }
    .scholar-card:hover { background: rgba(240,184,0,.15); border-color: var(--orange); transform: translateY(-8px); }
    .scholar-avatar {
      width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 15px;
      border: 3px solid var(--orange);
      background: linear-gradient(135deg, var(--orange), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; color: #fff; font-weight: 800;
      box-shadow: 0 5px 20px rgba(240,184,0,.4);
    }
    .scholar-score {
      display: inline-block;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      color: #fff; font-weight: 800; font-size: 1.3rem;
      padding: 5px 18px; border-radius: 20px;
      box-shadow: 0 4px 15px rgba(240,184,0,.4); margin: 10px 0 5px;
    }
    .scholar-card h6 { color: #fff; font-weight: 700; margin: 0; }
    .scholar-card small { color: rgba(255,255,255,.5); }

    /* ─── TEACHERS ─── */
    .teachers-section { padding: 90px 0; background: #fff; }
    .teacher-card {
      background: var(--gray); border-radius: 18px; overflow: hidden;
      text-align: center; transition: all .4s; cursor: pointer;
      border: 2px solid transparent;
    }
    .teacher-card:hover { border-color: var(--orange); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(240,184,0,.15); }
    .teacher-img {
      width: 100%; height: 220px; object-fit: cover;
      transition: transform .4s;
    }
    .teacher-card:hover .teacher-img { transform: scale(1.05); }
    .teacher-info { padding: 20px; }
    .teacher-info h6 { font-weight: 800; color: var(--dark); margin-bottom: 4px; }
    .teacher-info small { color: var(--orange); font-weight: 700; }
    .btn-profile {
      display: inline-block; margin-top: 12px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; padding: 7px 22px; border-radius: 20px;
      font-size: .8rem; font-weight: 700; text-decoration: none;
      transition: all .3s;
    }
    .btn-profile:hover { transform: scale(1.05); color: #fff; box-shadow: 0 5px 20px rgba(240,184,0,.4); }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section { padding: 90px 0; background: var(--orange-pale); }
    .testimonial-card {
      background: #fff; border-radius: 18px; padding: 30px;
      box-shadow: 0 5px 25px rgba(0,0,0,.07);
      transition: all .4s; border-top: 4px solid var(--orange);
      position: relative; overflow: hidden;
    }
    .testimonial-card::before {
      content: '\201C'; font-size: 8rem; color: rgba(240,184,0,.08);
      font-family: 'Playfair Display', serif;
      position: absolute; top: -20px; left: 15px; line-height: 1;
    }
    .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 45px rgba(240,184,0,.15); }
    .testimonial-avatar {
      width: 55px; height: 55px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 800; font-size: 1.3rem;
      box-shadow: 0 4px 15px rgba(240,184,0,.3);
    }
    .stars { color: var(--gold); font-size: .9rem; }
    .testimonial-text { color: var(--text); font-style: italic; line-height: 1.7; }

    /* ─── GALLERY ─── */
    .gallery-section { padding: 90px 0; background: #fff; }
    .gallery-filter .btn {
      border-radius: 25px; padding: 7px 22px; font-weight: 700;
      font-size: .85rem; transition: all .3s;
    }
    .gallery-filter .btn.active,
    .gallery-filter .btn:hover {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; border-color: transparent;
      box-shadow: 0 5px 20px rgba(240,184,0,.4);
    }
    .gallery-item {
      overflow: hidden; border-radius: 14px;
      box-shadow: 0 5px 20px rgba(0,0,0,.1);
      transition: all .4s; cursor: pointer;
    }
    .gallery-item:hover { transform: scale(1.04); box-shadow: 0 15px 40px rgba(240,184,0,.25); }
    .gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-placeholder {
      width: 100%; height: 200px;
      background: linear-gradient(135deg, var(--orange-pale), #ffe8cc);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: var(--orange); border-radius: 14px;
    }

    /* ─── CONTACT ─── */
    .contact-section { padding: 90px 0; background: linear-gradient(135deg, var(--dark), #2d2d4e); }
    .contact-form-wrap {
      background: rgba(255,255,255,.05); border: 1px solid rgba(240,184,0,.3);
      border-radius: 20px; padding: 40px;
      backdrop-filter: blur(10px);
    }
    .form-control {
      background: rgba(255,255,255,.08); border: 1px solid rgba(240,184,0,.3);
      color: #fff; border-radius: 10px; padding: 12px 18px;
    }
    .form-control::placeholder { color: rgba(255,255,255,.4); }
    .form-control:focus { background: rgba(255,255,255,.12); border-color: var(--orange); color: #fff; box-shadow: 0 0 0 .25rem rgba(240,184,0,.25); }
    .contact-info-item {
      display: flex; align-items: flex-start; gap: 15px;
      margin-bottom: 25px; color: rgba(255,255,255,.8);
    }
    .contact-icon {
      width: 45px; height: 45px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem;
      box-shadow: 0 5px 15px rgba(240,184,0,.3);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--darker); color: rgba(255,255,255,.7);
      padding: 60px 0 0; border-top: 3px solid var(--orange);
    }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--orange); }
    .footer-links h6 { color: #fff; font-weight: 800; margin-bottom: 18px; }
    .footer-links ul { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,.6); text-decoration: none;
      font-size: .9rem; transition: all .3s;
    }
    .footer-links a:hover { color: var(--orange); padding-left: 5px; }
    .footer-bottom {
      background: rgba(0,0,0,.3); text-align: center;
      padding: 18px 0; margin-top: 50px;
      font-size: .85rem; color: rgba(255,255,255,.4);
    }
    .footer-bottom span { color: var(--orange); }
    .footer-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(240,184,0,.15); color: var(--orange-light);
      margin-right: 8px; transition: all .3s; font-size: .9rem;
    }
    .footer-social a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

    /* ─── FLOATING BUTTONS ─── */
    .floating-btns {
      position: fixed; right: 20px; bottom: 80px; z-index: 999;
      display: flex; flex-direction: column; gap: 10px;
    }
    .fab {
      width: 48px; height: 48px; border-radius: 50%; border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .3s; font-size: 1.1rem;
      box-shadow: 0 5px 20px rgba(0,0,0,.2);
    }
    .fab-enquire {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; animation: bounce 2s ease-in-out infinite;
    }
    .fab-whatsapp { background: #25D366; color: #fff; }
    .fab-phone { background: var(--dark); color: var(--orange); }
    .fab:hover { transform: scale(1.15); }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

    /* ─── SCROLL TO TOP ─── */
    #scrollTop {
      position: fixed; right: 20px; bottom: 20px; z-index: 999;
      width: 44px; height: 44px; border-radius: 50%; border: none;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; font-size: 1rem;
      box-shadow: 0 5px 20px rgba(240,184,0,.4);
      cursor: pointer; opacity: 0; transition: all .3s;
      display: flex; align-items: center; justify-content: center;
    }
    #scrollTop.show { opacity: 1; }
    #scrollTop:hover { transform: translateY(-3px); }

    /* ─── ENQUIRY SIDEBAR ─── */
    .enquiry-sidebar {
      position: fixed; right: -320px; top: 50%; transform: translateY(-50%);
      width: 300px; background: #fff; border-radius: 16px 0 0 16px;
      box-shadow: -10px 0 40px rgba(240,184,0,.2);
      z-index: 998; transition: right .4s ease;
      padding: 30px 25px; border-left: 4px solid var(--orange);
    }
    .enquiry-sidebar.open { right: 0; }
    .enquiry-sidebar h5 { font-family: 'Playfair Display', serif; color: var(--dark); }
    .sidebar-trigger {
      position: fixed; right: 0; top: 50%; transform: translateY(-50%) translateX(0);
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #fff; padding: 12px 6px; border-radius: 8px 0 0 8px;
      writing-mode: vertical-rl; font-weight: 700; font-size: .8rem;
      cursor: pointer; z-index: 997; letter-spacing: 2px;
      box-shadow: -4px 0 15px rgba(240,184,0,.4);
      transition: all .3s;
    }
    .sidebar-trigger:hover { background: var(--orange-dark); }

    /* ─── COUNTER ANIMATION ─── */
    .counter { display: inline-block; }

    /* ─── WAVE DIVIDER ─── */
    .wave-divider { overflow: hidden; line-height: 0; }
    .wave-divider svg { display: block; }

    /* ─── ACHIEVEMENTS ─── */
    .achievements-section { padding: 90px 0; background: var(--orange-pale); }
    .achieve-card {
      background: #fff; border-radius: 18px; padding: 30px 20px;
      text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,.07);
      transition: all .4s; position: relative; overflow: hidden;
    }
    .achieve-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px; background: linear-gradient(90deg, var(--orange), var(--gold));
      transform: scaleX(0); transition: transform .4s;
    }
    .achieve-card:hover::after { transform: scaleX(1); }
    .achieve-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(240,184,0,.15); }
    .achieve-icon {
      width: 65px; height: 65px; border-radius: 50%; margin: 0 auto 15px;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: #fff;
      box-shadow: 0 6px 20px rgba(240,184,0,.3);
    }
    .achieve-pct {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 800; color: var(--orange);
    }
    .achieve-card h6 { font-weight: 800; color: var(--dark); }
    .achieve-card small { color: var(--text-light); }

    /* Responsive */
    @media(max-width:768px){
      .carousel-item{height:380px}
      .hero-stats{flex-direction:column;gap:10px;position:static;transform:none;width:100%;margin-top:20px}
      .stat-card{border-radius:10px !important;border-right:none !important;border-bottom:1px solid #eee}
      .about-badge-float{right:10px;bottom:10px;padding:12px 16px}
    }