/* ===== BRAND FONT: BULLPEN ===== */
        @font-face {
            font-family: "Bullpen";
            src: url("assets/fonts/Bullpen.ttf") format("truetype");
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        .brand-font { font-family: "Bullpen", "Cinzel", serif; white-space: nowrap; }
        :root {
            --red: #fd3132;
            --blue: #114fb4;
            --dark-blue: #0a3a8c;
            --deep-blue: #071e52;
            --gold: #FFD700;
            --gold-dark: #c9a227;
            --white: #ffffff;
            --off-white: #f8f9fc;
            --gray: #666;
            --dark: #111827;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: "Raleway", sans-serif;
            color: var(--dark);
            background: #fff;
            overflow-x: hidden;
        }

        /* ===== ROW 2: LOGO ROW ===== */
        .logo-row {
            background: white;
            border-bottom: 1px solid rgba(17,79,180,0.12);
            padding: 10px 0;
        }
        .logo-row-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            row-gap: 8px;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo-wrap img {
            height: 86px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
        }
        .logo-row-right {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-end;
            margin-left: auto;
            margin-right: 8%;
        }
        .logo-contact-items {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .logo-contact-item {
            display: flex; align-items: center; gap: 7px;
            color: var(--blue); font-weight: 600; font-size: 13px;
            text-decoration: none;
            padding: 7px 12px;
            border-radius: 6px;
            background: rgba(17,79,180,0.05);
            border: 1px solid rgba(17,79,180,0.12);
            transition: all 0.25s;
            letter-spacing: 0.2px;
        }
        .logo-contact-item i { color: var(--red); font-size: 14px; }
        .logo-contact-item:hover {
            background: rgba(17,79,180,0.1);
            border-color: var(--red);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .logo-social-links { display: flex; gap: 6px; }
        .logo-social-links a {
            width: 32px; height: 32px; border-radius: 50%;
            background: var(--blue); color: white;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; text-decoration: none;
            transition: all 0.25s;
        }
        .logo-social-links a:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
        .logo-social-links a:nth-child(1):hover { background: #1DA1F2; }
        .logo-social-links a:nth-child(2):hover { background: #1877F2; }
        .logo-social-links a:nth-child(3):hover { background: #E4405F; }
        .logo-social-links a:nth-child(4):hover { background: #FF0000; }
        .logo-social-links a:nth-child(5):hover { background: #0A66C2; }

        /* ===== ROW 3: STICKY NAV ===== */
        .site-header {
            background: var(--blue);
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(10,58,140,0.35);
        }
        .site-header::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 56px;
        }

        /* Desktop Nav */
        .desktop-nav { display: flex; align-items: center; flex: 1; }
        .desktop-nav ul { display: flex; list-style: none; gap: 10px; width: 100%; justify-content: center; }
        .desktop-nav > ul > li { position: relative; }
        .desktop-nav > ul > li > a {
            display: flex; align-items: center; gap: 6px;
            padding: 18px 13px;
            color: rgba(255,255,255,0.92);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .desktop-nav > ul > li > a::after {
            content: "";
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 0; height: 3px;
            background: var(--gold);
            transition: width 0.3s;
        }
        .desktop-nav > ul > li > a:hover { color: white; background: var(--deep-blue); }
        .desktop-nav > ul > li > a:hover::after,
        .desktop-nav > ul > li > a.active::after { width: 0; }
        .desktop-nav > ul > li > a.active { color: white; background: var(--deep-blue); }
        .desktop-nav > ul > li > a i { font-size: 11px; color: var(--gold); }

        /* Dropdown */
        .nav-dropdown {
            position: absolute; top: 100%; left: 0;
            background: var(--deep-blue);
            min-width: 210px;
            border-top: 3px solid var(--red);
            box-shadow: 0 12px 40px rgba(0,0,0,0.35);
            opacity: 0; visibility: hidden;
            transform: translateY(8px);
            transition: all 0.25s;
            z-index: 9999;
            border-radius: 0 0 8px 8px;
            display: flex !important;
            flex-direction: column !important;
        }
        .desktop-nav > ul > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .nav-dropdown li { border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; }
        .nav-dropdown li:last-child { border: none; }
        .nav-dropdown a {
            display: flex; align-items: center; gap: 8px;
            padding: 11px 18px;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .nav-dropdown a::before { content: "›"; color: var(--gold); font-size: 16px; transition: transform 0.2s; }
        .nav-dropdown a:hover { background: var(--deep-blue); color: white; padding-left: 24px; }
        .nav-dropdown a:hover::before { color: white; transform: translateX(4px); }

        /* Mobile toggle */
        .mob-toggle {
            display: none;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            color: white;
            width: 44px; height: 44px;
            border-radius: 6px;
            font-size: 20px;
            cursor: pointer;
            align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .mob-toggle:hover { background: var(--red); border-color: var(--red); }

        /* ===== HERO ===== */
        .hero {
            min-height: 92vh;
            position: relative;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
            background: var(--deep-blue);
        }
        .hero-bg {
            position: absolute; inset: 0;
            background: url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
            filter: brightness(0.3);
            transform: scale(1.04);
            animation: heroZoom 16s ease-in-out infinite alternate;
        }
        @keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
        .hero-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(7,30,82,0.85) 0%, rgba(10,58,140,0.6) 50%, rgba(253,49,50,0.25) 100%);
        }
        /* Film strip decoration */
        .film-strip {
            position: absolute; left: 0; top: 0; bottom: 0; width: 70px;
            background: rgba(0,0,0,0.6);
            display: flex; flex-direction: column; gap: 0;
            overflow: hidden;
        }
        .film-strip::before, .film-strip::after {
            content: "";
            position: absolute; left: 10px; right: 10px;
            top: 0; bottom: 0;
            background: repeating-linear-gradient(
                180deg,
                transparent 0px, transparent 20px,
                rgba(255,215,0,0.15) 20px, rgba(255,215,0,0.15) 22px,
                transparent 22px, transparent 42px
            );
        }
        .film-strip-r {
            position: absolute; right: 0; top: 0; bottom: 0; width: 70px;
            background: rgba(0,0,0,0.6);
            overflow: hidden;
        }
        .film-strip-r::after {
            content: "";
            position: absolute; left: 10px; right: 10px;
            top: 0; bottom: 0;
            background: repeating-linear-gradient(
                180deg,
                transparent 0px, transparent 20px,
                rgba(255,215,0,0.15) 20px, rgba(255,215,0,0.15) 22px,
                transparent 22px, transparent 42px
            );
        }
        .hero-content {
            position: relative; z-index: 2;
            text-align: center;
            padding: 0 30px;
            max-width: 900px;
            animation: heroFadeUp 1s ease-out 0.2s both;
        }
        @keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 12px;
            font-family: "Raleway", sans-serif;
            font-size: 12px; font-weight: 700;
            letter-spacing: 5px; text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .hero-eyebrow span { width: 40px; height: 1px; background: var(--gold); display: inline-block; }
        .hero-title {
            font-family: "Cinzel", serif;
            font-size: clamp(48px, 8vw, 90px);
            font-weight: 900;
            color: white;
            line-height: 0.95;
            letter-spacing: 4px;
            margin-bottom: 8px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        .hero-title .accent { color: var(--red); display: block; }
        .hero-sub {
            font-family: "Cinzel", serif;
            font-size: clamp(14px, 2vw, 18px);
            color: var(--gold);
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 24px;
            font-weight: 400;
        }
        .hero-divider {
            display: flex; align-items: center; justify-content: center; gap: 12px;
            margin: 20px auto 28px;
        }
        .hero-divider i { color: var(--red); font-size: 10px; }
        .hero-divider span { height: 1px; width: 80px; background: linear-gradient(90deg, transparent, rgba(255,215,0,0.6)); }
        .hero-divider span:last-child { background: linear-gradient(270deg, transparent, rgba(255,215,0,0.6)); }
        .hero-desc {
            font-size: 16px; color: rgba(255,255,255,0.8);
            max-width: 620px; margin: 0 auto 40px;
            line-height: 1.8; font-weight: 400;
        }
        .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-hero-primary {
            padding: 15px 42px;
            background: var(--red);
            color: white;
            text-decoration: none;
            font-family: "Raleway", sans-serif;
            font-weight: 700; font-size: 13px;
            letter-spacing: 3px; text-transform: uppercase;
            border: 2px solid var(--red);
            border-radius: 2px;
            transition: all 0.3s;
            position: relative; overflow: hidden;
        }
        .btn-hero-primary::before {
            content: ""; position: absolute; inset: 0;
            background: rgba(255,255,255,0.12);
            transform: translateX(-100%) skewX(-10deg);
            transition: transform 0.4s;
        }
        .btn-hero-primary:hover::before { transform: translateX(110%) skewX(-10deg); }
        .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(253,49,50,0.4); }
        .btn-hero-secondary {
            padding: 15px 42px;
            background: transparent;
            color: white;
            text-decoration: none;
            font-family: "Raleway", sans-serif;
            font-weight: 700; font-size: 13px;
            letter-spacing: 3px; text-transform: uppercase;
            border: 2px solid rgba(255,215,0,0.6);
            border-radius: 2px;
            transition: all 0.3s;
        }
        .btn-hero-secondary:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,215,0,0.3); }

        /* Hero stats bar */
        .hero-stats {
            position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
            background: rgba(7,30,82,0.92);
            border-top: 2px solid rgba(253,49,50,0.5);
            backdrop-filter: blur(10px);
        }
        .hero-stats-inner {
            max-width: 1280px; margin: 0 auto;
            padding: 16px 24px;
            display: grid; grid-template-columns: repeat(4,1fr);
            gap: 0;
        }
        .stat-item {
            display: flex; flex-direction: column; align-items: center;
            padding: 10px 16px;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .stat-item:last-child { border: none; }
        .stat-num {
            font-family: "Cinzel", serif; font-size: 26px; font-weight: 900;
            color: var(--gold); line-height: 1;
        }
        .stat-label { font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 2px; text-transform: uppercase; margin-top: 5px; font-weight: 600; }

        /* ===== BANNER SLIDER ===== */
        .banner-slider {
            position: relative; width: 100%;
            min-height: 86vh; overflow: hidden;
            background: var(--deep-blue);
        }
        .bslides { position: absolute; inset: 0; }
        .bslide {
            position: absolute; inset: 0;
            background-size: cover; background-position: center; background-repeat: no-repeat;
            opacity: 0; transition: opacity 1s ease-in-out; z-index: 1;
        }
        .bslide.active { opacity: 1; z-index: 2; }
        .bnav {
            position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
            width: 50px; height: 50px; border-radius: 50%;
            background: rgba(7,30,82,0.55); color: #fff;
            border: 1px solid rgba(255,255,255,0.35);
            font-size: 22px; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.25s;
        }
        .bnav:hover { background: var(--red); border-color: var(--red); }
        .bprev { left: 22px; }
        .bnext { right: 22px; }
        .bdots {
            position: absolute; left: 0; right: 0; bottom: 26px; z-index: 5;
            display: flex; gap: 10px; justify-content: center;
        }
        .bdot {
            width: 12px; height: 12px; border-radius: 50%;
            background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0;
            transition: all 0.25s;
        }
        .bdot.active { background: var(--red); transform: scale(1.25); }
        .stats-band {
            background: var(--deep-blue);
            border-top: 2px solid rgba(253,49,50,0.5);
        }

        /* ===== SECTION BASE ===== */
        section { position: relative; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

        .section-head {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-label {
            display: inline-flex; align-items: center; gap: 10px;
            font-size: 11px; font-weight: 700;
            letter-spacing: 4px; text-transform: uppercase;
            color: var(--red); margin-bottom: 14px;
        }
        .section-label::before, .section-label::after {
            content: ""; display: inline-block;
            width: 30px; height: 1px; background: var(--red);
        }
        .section-title {
            font-family: "Cinzel", serif;
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .section-title span { color: var(--red); }
        .section-desc {
            font-size: 15px; color: var(--gray);
            max-width: 600px; margin: 0 auto;
            line-height: 1.8; font-weight: 400;
        }
        .section-title-bar {
            width: 60px; height: 4px;
            background: linear-gradient(90deg, var(--red), var(--gold));
            margin: 16px auto 0;
            border-radius: 2px;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section { padding: 100px 0; background: var(--off-white); }
        .about-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        .about-img-wrap {
            position: relative;
        }
        .about-img-frame {
            position: relative; border-radius: 4px; overflow: hidden;
            box-shadow: 0 20px 60px rgba(10,58,140,0.2);
        }
        .about-img-frame img {
            width: 100%; height: 420px; object-fit: cover; display: block;
            transition: transform 0.5s;
        }
        .about-img-frame:hover img { transform: scale(1.04); }
        .about-img-badge {
            position: absolute; bottom: -20px; right: -20px;
            width: 120px; height: 120px;
            background: var(--red);
            border-radius: 50%;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            color: white; text-align: center;
            box-shadow: 0 10px 30px rgba(253,49,50,0.4);
            border: 4px solid white;
        }
        .about-img-badge .big { font-family: "Cinzel", serif; font-size: 26px; font-weight: 900; line-height: 1; }
        .about-img-badge .sm { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 3px; }
        .about-img-deco {
            position: absolute; top: -15px; left: -15px;
            width: 80px; height: 80px;
            border: 4px solid var(--gold);
            border-radius: 4px;
            z-index: -1;
        }
        .about-text h3 {
            font-family: "Cinzel", serif; font-size: 20px; color: var(--deep-blue);
            margin-bottom: 8px; font-weight: 700;
        }
        .about-intro {
            font-size: 16px; font-weight: 600; color: var(--blue);
            margin-bottom: 16px; line-height: 1.7;
        }
        .about-text p { font-size: 14.5px; color: #555; line-height: 1.85; margin-bottom: 14px; }
        .about-text p:last-of-type { font-style: italic; color: var(--blue); font-weight: 500; }
        .about-features {
            display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
            margin-top: 24px;
        }
        .af-item {
            display: flex; align-items: center; gap: 10px;
            padding: 12px 14px;
            background: white;
            border-radius: 6px;
            border-left: 3px solid var(--red);
            box-shadow: 0 3px 12px rgba(0,0,0,0.06);
            font-size: 13px; font-weight: 600; color: var(--deep-blue);
        }
        .af-item i { color: var(--red); font-size: 14px; width: 16px; }
        /* ===== GOVERNMENT HIGHLIGHT BUTTON ===== */
        .govt-highlight { margin-top: 28px; }
        .govt-btn {
            display: flex; align-items: center; gap: 16px;
            padding: 18px 22px;
            background: linear-gradient(135deg, var(--blue), var(--deep-blue));
            border-radius: 12px; border-left: 5px solid var(--gold);
            text-decoration: none; color: #fff;
            box-shadow: 0 10px 30px rgba(7,30,82,0.25);
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .govt-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(7,30,82,0.35); }
        .govt-ico {
            flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
            background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; color: var(--gold);
        }
        .govt-txt { display: flex; flex-direction: column; gap: 5px; flex: 1; }
        .govt-txt strong { font-size: 19px; font-weight: 800; letter-spacing: .5px; }
        .govt-txt small { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.55; }
        .govt-arr { font-size: 16px; color: var(--gold); flex-shrink: 0; transition: transform .3s ease; }
        .govt-btn:hover .govt-arr { transform: translateX(5px); }
        /* ===== OUR ACHIEVEMENTS ===== */
        .achv-section { padding: 90px 0; background: linear-gradient(180deg, #f7f9fc, #eaeff7); }
        .achv-scroll {
            display: flex; gap: 24px; margin-top: 40px;
            overflow-x: auto; scroll-snap-type: x mandatory;
            padding: 6px 4px 18px; -webkit-overflow-scrolling: touch;
        }
        .achv-scroll::-webkit-scrollbar { height: 8px; }
        .achv-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 10px; }
        .achv-scroll::-webkit-scrollbar-track { background: rgba(17,79,180,0.12); border-radius: 10px; }
        .achv-card {
            flex: 0 0 280px; scroll-snap-align: start;
            background: #fff; border-radius: 14px; padding: 30px 26px;
            box-shadow: 0 8px 30px rgba(7,30,82,0.08);
            border-bottom: 4px solid var(--red);
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .achv-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(7,30,82,0.16); }
        .achv-ico {
            width: 58px; height: 58px; border-radius: 14px;
            background: linear-gradient(135deg, var(--blue), var(--deep-blue));
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-size: 24px; margin-bottom: 18px;
        }
        .achv-num { font-family: "Bullpen", "Cinzel", serif; font-size: 38px; font-weight: 900; color: var(--red); line-height: 1; }
        .achv-card h3 { font-size: 18px; color: var(--deep-blue); margin: 10px 0 8px; font-weight: 700; }
        .achv-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin: 0; }

        /* ===== SERVICES ===== */
        .services-section { padding: 100px 0; background: white; }
        .services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 48px; }
        .svc-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
            position: relative;
            border: 1px solid rgba(0,0,0,0.06);
        }
        .svc-card::before {
            content: ""; position: absolute;
            top: 0; left: 0; right: 0; height: 4px;
            background: linear-gradient(90deg, var(--blue), var(--red));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s;
        }
        .svc-card:hover::before { transform: scaleX(1); }
        .svc-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(10,58,140,0.15); }
        .svc-img { height: 190px; overflow: hidden; position: relative; }
        .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .svc-card:hover .svc-img img { transform: scale(1.07); }
        .svc-icon-badge {
            position: absolute; bottom: -18px; right: 18px;
            width: 44px; height: 44px;
            background: var(--red);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            color: white; font-size: 16px;
            border: 3px solid white;
            box-shadow: 0 4px 12px rgba(253,49,50,0.35);
            z-index: 2;
        }
        .svc-body { padding: 28px 20px 22px; }
        .svc-body h3 { font-family: "Cinzel", serif; font-size: 16px; color: var(--deep-blue); margin-bottom: 10px; font-weight: 700; }
        .svc-body p { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
        .svc-link {
            display: inline-flex; align-items: center; gap: 6px;
            color: var(--red); font-size: 12px; font-weight: 700;
            text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
            transition: gap 0.2s;
        }
        .svc-link:hover { gap: 10px; }
        .svc-link i { font-size: 10px; }
        .center-btn { text-align: center; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 40px;
            background: var(--red); color: white;
            text-decoration: none; border: none; cursor: pointer;
            font-family: "Raleway", sans-serif;
            font-size: 13px; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase;
            border-radius: 3px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(253,49,50,0.3);
        }
        .btn-primary:hover { background: #d4282a; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(253,49,50,0.4); }
        .btn-outline {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 40px;
            background: transparent; color: var(--blue);
            text-decoration: none; border: 2px solid var(--blue); cursor: pointer;
            font-family: "Raleway", sans-serif;
            font-size: 13px; font-weight: 700;
            letter-spacing: 2px; text-transform: uppercase;
            border-radius: 3px;
            transition: all 0.3s;
        }
        .btn-outline:hover { background: var(--blue); color: white; transform: translateY(-2px); }

        /* ===== GALLERY ===== */
        .gallery-section { padding: 100px 0; background: var(--deep-blue); }
        .services-section .section-title { font-size: clamp(30px, 4.6vw, 46px); }
        .gallery-section .section-title { color: white; }
        .gallery-section .section-desc { color: rgba(255,255,255,0.65); }
        .gallery-tabs {
            display: flex; flex-wrap: wrap; gap: 8px;
            justify-content: center; margin-bottom: 40px;
        }
        .g-tab {
            padding: 10px 22px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.75);
            font-family: "Raleway", sans-serif;
            font-size: 12px; font-weight: 600;
            letter-spacing: 2px; text-transform: uppercase;
            border-radius: 25px; cursor: pointer;
            transition: all 0.25s;
            display: flex; align-items: center; gap: 8px;
        }
        .g-tab i { color: var(--gold); font-size: 13px; }
        .g-tab:hover, .g-tab.active {
            background: var(--red); border-color: var(--red); color: white;
        }
        .g-tab.active i { color: white; }
        .gallery-pane { display: none; }
        .gallery-pane.active { display: block; animation: fadeSlideIn 0.4s ease-out; }
        @keyframes fadeSlideIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
        .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
        .g-item {
            position: relative; height: 220px;
            border-radius: 6px; overflow: hidden;
            cursor: pointer;
        }
        .g-item:first-child { grid-column: span 2; grid-row: span 2; height: 450px; }
        .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
        .g-item:hover img { transform: scale(1.08); }
        .g-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(7,30,82,0.7), rgba(253,49,50,0.4));
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.3s;
        }
        .g-overlay i { color: white; font-size: 28px; }
        .g-item:hover .g-overlay { opacity: 1; }

        /* ===== VIDEO SECTION ===== */
        .video-section { padding: 100px 0; background: var(--off-white); }
        .videos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
        .v-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
        }
        .v-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
        .v-thumb {
            position: relative; height: 200px;
            overflow: hidden; background: #000;
        }
        .v-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; opacity: 0.85; }
        .v-card:hover .v-thumb img { transform: scale(1.05); opacity: 1; }
        .v-play {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
        }
        .v-play-btn {
            width: 60px; height: 60px;
            background: rgba(253,49,50,0.9);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 22px;
            transition: all 0.3s;
            box-shadow: 0 0 0 6px rgba(253,49,50,0.25);
        }
        .v-card:hover .v-play-btn { transform: scale(1.12); background: var(--red); }
        .v-duration {
            position: absolute; bottom: 10px; right: 10px;
            background: rgba(0,0,0,0.8); color: white;
            padding: 3px 8px; border-radius: 3px; font-size: 11px; font-weight: 700;
        }
        .v-body { padding: 20px; }
        .v-title { font-family: "Cinzel", serif; font-size: 14px; color: var(--deep-blue); margin-bottom: 10px; line-height: 1.5; font-weight: 700; }
        .v-views { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
        .v-views i { color: var(--red); }
        .v-meta { display: flex; justify-content: space-between; font-size: 12px; color: #999; border-top: 1px solid #f0f0f0; padding-top: 14px; }
        .v-meta i { color: var(--blue); margin-right: 4px; }
        .v-section-btn { text-align: center; margin-top: 48px; }

        /* ===== CLIENTS ===== */
        .clients-section { padding: 70px 0; background: white; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
        .clients-scroll { overflow: hidden; position: relative; margin-top: 40px; }
        .clients-scroll::before, .clients-scroll::after {
            content: ""; position: absolute; top: 0; bottom: 0; z-index: 2; width: 80px;
        }
        .clients-scroll::before { left: 0; background: linear-gradient(90deg, white, transparent); }
        .clients-scroll::after { right: 0; background: linear-gradient(270deg, white, transparent); }
        .clients-track {
            display: flex; gap: 0;
            animation: clientScroll 22s linear infinite;
            width: max-content;
        }
        @keyframes clientScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .client-logo {
            width: 170px; padding: 0 20px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .client-logo img { max-width: 100%; max-height: 60px; width: auto; filter: grayscale(100%) opacity(0.5); transition: all 0.3s; }
        .client-logo img:hover { filter: none; transform: scale(1.08); }

        /* ===== FOOTER ===== */
        .site-footer { background: var(--deep-blue); color: white; padding: 80px 0 0; position: relative; }
        .site-footer::before {
            content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
            background: linear-gradient(90deg, var(--red), var(--gold), var(--blue), var(--red));
        }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
        .f-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
        .f-logo-wrap img { height: 60px; width: auto; object-fit: contain; }
        .f-brand-name { font-family: "Bullpen", "Cinzel", serif; color: #fff; font-size: 28px; font-weight: 900; letter-spacing: 1px; line-height: 1; }
        .f-brand { font-family: "Bullpen", "Cinzel", serif; font-size: 18px; font-weight: 900; color: white; letter-spacing: 2px; }
        .f-brand span { color: var(--red); }
        .f-about { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 20px; }
        .f-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
        .f-contact-item i { color: var(--gold); margin-top: 2px; width: 14px; flex-shrink: 0; }
        .f-social { display: flex; gap: 10px; margin-top: 24px; }
        .f-social a {
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 14px; text-decoration: none;
            transition: all 0.25s;
        }
        .f-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
        .f-col h4 {
            font-family: "Cinzel", serif; font-size: 14px; color: white;
            font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
            margin-bottom: 22px; padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }
        .f-col h4::after {
            content: ""; position: absolute; bottom: -1px; left: 0;
            width: 40px; height: 2px; background: var(--red);
        }
        .f-col a, .f-col p {
            display: flex; align-items: center; gap: 8px;
            color: rgba(255,255,255,0.65); font-size: 13.5px;
            text-decoration: none; margin-bottom: 10px;
            transition: all 0.2s; line-height: 1.5;
        }
        .f-col a i { color: var(--red); width: 14px; font-size: 12px; }
        .f-col a:hover { color: var(--gold); transform: translateX(4px); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 22px 0;
            display: flex; justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 10px;
        }
        .footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.5); }
        .footer-bottom a { color: var(--gold); text-decoration: none; }

        /* ===== MOBILE MENU ===== */
        .mob-menu {
            display: block; position: fixed;
            top: 0; right: -320px; bottom: 0; width: 300px;
            background: var(--deep-blue);
            z-index: 9998;
            overflow-y: auto;
            transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
            box-shadow: -6px 0 30px rgba(0,0,0,0.3);
        }
        .mob-menu.open { right: 0; }
        .mob-menu-head {
            background: rgba(0,0,0,0.3);
            padding: 18px 20px;
            display: flex; align-items: center; justify-content: space-between;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mob-menu-head span { font-family: "Bullpen", "Cinzel", serif; color: white; font-size: 14px; letter-spacing: 2px; }
        .mob-close { background: none; border: none; color: white; font-size: 22px; cursor: pointer; }
        .mob-nav { padding: 10px 0; }
        .mob-nav > ul { list-style: none; }
        .mob-nav > ul > li > a {
            display: flex; align-items: center; justify-content: space-between;
            padding: 13px 20px;
            color: rgba(255,255,255,0.85);
            text-decoration: none; font-size: 13px;
            font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.2s;
        }
        .mob-nav > ul > li > a i:first-child { color: var(--gold); margin-right: 10px; }
        .mob-nav > ul > li > a:hover { background: rgba(253,49,50,0.15); color: white; }
        .mob-sub { display: none; background: rgba(0,0,0,0.25); }
        .mob-sub.open { display: block; }
        .mob-sub a {
            display: block; padding: 11px 20px 11px 40px;
            color: rgba(255,255,255,0.7);
            text-decoration: none; font-size: 13px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            transition: all 0.2s;
        }
        .mob-sub a::before { content: "› "; color: var(--gold); }
        .mob-sub a:hover { color: white; padding-left: 46px; }
        .mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9997; }
        .mob-overlay.show { display: block; }

        /* ===== MODALS ===== */
        .modal-wrap {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,0.85); z-index: 10000;
            align-items: center; justify-content: center; padding: 20px;
        }
        .modal-wrap.open { display: flex; }
        .modal-box {
            background: white; border-radius: 10px;
            max-width: 1020px; width: 100%; max-height: 90vh; overflow-y: auto;
            padding: 50px 40px; position: relative;
            animation: modalIn 0.3s ease-out;
        }
        @keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(-20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
        .modal-close {
            position: absolute; top: 18px; right: 22px;
            font-size: 28px; color: var(--gray); cursor: pointer;
            transition: color 0.2s; background: none; border: none;
            line-height: 1;
        }
        .modal-close:hover { color: var(--red); }
        .modal-title { text-align: center; margin-bottom: 40px; }
        .modal-title h2 { font-family: "Cinzel", serif; font-size: 28px; color: var(--deep-blue); margin-bottom: 8px; }
        .modal-title p { color: var(--gray); font-size: 14px; }
        .all-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
        .asvc-item {
            padding: 18px 16px;
            background: var(--off-white);
            border-radius: 6px;
            border-left: 4px solid var(--blue);
            transition: all 0.25s;
        }
        .asvc-item:hover { transform: translateY(-4px); border-left-color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
        .asvc-item h4 { font-size: 13px; font-weight: 700; color: var(--deep-blue); margin-bottom: 7px; letter-spacing: 0.5px; text-transform: uppercase; }
        .asvc-item p { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

        /* Video modal */
        .vmodal-box {
            background: #0a0a0a; border-radius: 10px;
            max-width: 920px; width: 100%;
            overflow: hidden; position: relative;
            animation: modalIn 0.3s ease-out;
        }
        .vmodal-head {
            display: flex; justify-content: space-between; align-items: center;
            padding: 14px 20px;
            background: #111; color: white;
        }
        .vmodal-head h3 { font-size: 14px; font-weight: 600; color: white; }
        .vmodal-close { background: none; border: none; color: white; font-size: 26px; cursor: pointer; transition: color 0.2s; }
        .vmodal-close:hover { color: var(--red); }
        .vmodal-player { height: 480px; background: #000; }
        .vmodal-player iframe { width: 100%; height: 100%; border: none; display: block; }
        .vmodal-info { padding: 18px 20px; background: #111; }
        .vmodal-stats { display: flex; gap: 20px; color: #888; font-size: 12px; margin-bottom: 10px; }
        .vmodal-desc { font-size: 13px; color: #bbb; line-height: 1.7; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .desktop-nav > ul > li > a { padding: 28px 9px; font-size: 11.5px; }
        }
        @media (max-width: 960px) {
            .desktop-nav { display: none; }
            .mob-toggle { display: flex; margin-left: auto; }
            .header-inner { justify-content: flex-end; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-img-badge { right: 10px; bottom: 10px; }
            .services-grid { grid-template-columns: 1fr 1fr; }
            .videos-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
            .hero-stats-inner { grid-template-columns: 1fr 1fr; }
            .logo-row-right { display: none; }
            .logo-row-inner { justify-content: center; padding: 0 12px; }
            .logo-wrap { max-width: 100%; width: 100%; justify-content: center; }
            .logo-wrap img { height: auto; width: auto; max-width: 94%; }
            .logo-row { padding: 8px 0; }
            .banner-slider { min-height: 0; height: 52vh; }
        }
        @media (max-width: 640px) {
            .hero-title { font-size: 40px; letter-spacing: 2px; }
            .services-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .g-item:first-child { grid-column: 1; grid-row: 1; height: 220px; }
            .videos-grid { grid-template-columns: 1fr; }
            .all-svc-grid { grid-template-columns: 1fr 1fr; }
            .logo-wrap img { max-width: 90%; }
            .footer-grid { grid-template-columns: 1fr; }
            .hero-stats-inner { grid-template-columns: 1fr 1fr; }
            .film-strip, .film-strip-r { display: none; }
            .banner-slider { min-height: 0; height: 34vh; }
            .bnav { width: 40px; height: 40px; font-size: 18px; }
            .bprev { left: 12px; } .bnext { right: 12px; }
            .bdots { bottom: 16px; }
            .achv-scroll { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; overflow: visible; margin-top: 28px; padding: 0; }
            .achv-card { flex: 0 0 auto; width: auto; padding: 18px 14px; border-radius: 10px; }
            .achv-ico { width: 44px; height: 44px; font-size: 18px; border-radius: 10px; margin-bottom: 12px; }
            .achv-num { font-size: 28px; }
            .achv-card h3 { font-size: 14px; margin: 8px 0 6px; }
            .achv-card p { font-size: 11.5px; line-height: 1.5; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        @media (max-width: 400px) {
            .all-svc-grid { grid-template-columns: 1fr; }
            .logo-wrap img { max-width: 96%; }
            .hero-btns { flex-direction: column; align-items: center; }
        }

/* ===== INNER PAGES ===== */
        .inner-banner { position:relative; min-height:350px; height:350px; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; background-size:cover; background-position:center; }
        .inner-banner::before { content:""; position:absolute; inset:0; background:linear-gradient(rgba(7,30,82,0.80), rgba(11,42,74,0.88)); }
        .inner-banner-content { position:relative; z-index:2; padding:0 20px; }
        .inner-banner h1 { font-family:"Bullpen","Cinzel",serif; color:#fff; font-size:clamp(34px,6vw,56px); font-weight:900; letter-spacing:1px; text-transform:uppercase; margin-bottom:10px; }
        .inner-crumb { color:rgba(255,255,255,0.85); font-size:14px; letter-spacing:1px; }
        .inner-crumb a { color:var(--gold); text-decoration:none; }
        .inner-crumb a:hover { text-decoration:underline; }
        .ip-section { padding:80px 0; }
        .ip-alt { background:linear-gradient(180deg,#f7f9fc,#eef2f8); }
        .ip-prose p { font-size:15px; color:var(--gray); line-height:1.9; margin-bottom:16px; }
        .ip-btn { display:inline-flex; align-items:center; gap:10px; background:var(--red); color:#fff; padding:14px 30px; border-radius:8px; text-decoration:none; font-weight:700; border:none; cursor:pointer; font-size:14px; transition:all .3s; }
        .ip-btn:hover { background:var(--deep-blue); transform:translateY(-2px); }
        /* about intro split */
        .about-split { display:grid; grid-template-columns:1.08fr 0.92fr; gap:48px; align-items:center; margin-top:34px; }
        .about-split-img { border-radius:16px; overflow:hidden; min-height:360px; background-size:cover; background-position:center; box-shadow:0 16px 44px rgba(7,30,82,0.20); }
        /* timeline */
        .timeline { position:relative; max-width:840px; margin:46px auto 0; }
        .timeline::before { content:""; position:absolute; left:19px; top:8px; bottom:8px; width:2px; background:rgba(17,79,180,0.22); }
        .tl-item { position:relative; padding:0 0 34px 60px; }
        .tl-item:last-child { padding-bottom:0; }
        .tl-dot { position:absolute; left:10px; top:3px; width:20px; height:20px; border-radius:50%; background:var(--red); border:4px solid #fff; box-shadow:0 0 0 2px var(--red); }
        .tl-year { font-family:"Bullpen","Cinzel",serif; font-size:22px; font-weight:900; color:var(--deep-blue); line-height:1; }
        .tl-item h4 { font-size:16px; color:var(--blue); margin:6px 0 6px; }
        .tl-item p { font-size:13.5px; color:var(--gray); line-height:1.7; }
        /* service cards with image */
        .about-svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:42px; }
        .about-svc-card { background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 8px 30px rgba(7,30,82,0.08); border-bottom:4px solid var(--red); transition:transform .3s,box-shadow .3s; }
        .about-svc-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(7,30,82,0.16); }
        .asc-img { height:175px; background-size:cover; background-position:center; }
        .asc-body { padding:26px 24px 28px; position:relative; }
        .asc-ico { position:absolute; top:-28px; left:24px; width:54px; height:54px; border-radius:14px; background:linear-gradient(135deg,var(--blue),var(--deep-blue)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:22px; box-shadow:0 8px 20px rgba(7,30,82,0.3); }
        .asc-body h3 { font-size:18px; color:var(--deep-blue); margin:14px 0 8px; }
        .asc-body p { font-size:13px; color:var(--gray); line-height:1.6; }
        /* contact */
        .contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
        .ci-lead { font-size:14px; color:var(--gray); line-height:1.8; margin:18px 0 26px; }
        .ci-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:20px; }
        .ci-ico { flex-shrink:0; width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--deep-blue)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:17px; }
        .ci-item strong { display:block; color:var(--deep-blue); font-size:15px; margin-bottom:3px; }
        .ci-item span { color:var(--gray); font-size:13.5px; line-height:1.6; }
        .ci-social { display:flex; gap:10px; margin-top:24px; }
        .ci-social a { width:40px; height:40px; border-radius:50%; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; text-decoration:none; transition:.3s; }
        .ci-social a:hover { background:var(--red); transform:translateY(-3px); }
        .contact-form-wrap { background:#fff; border-radius:16px; padding:36px; box-shadow:0 10px 40px rgba(7,30,82,0.1); }
        .contact-form-wrap h3 { font-size:22px; color:var(--deep-blue); margin-bottom:22px; }
        .cf-row { display:flex; gap:14px; }
        .contact-form-wrap input, .contact-form-wrap textarea { width:100%; padding:13px 16px; margin-bottom:14px; border:1px solid #dde3ee; border-radius:8px; font-family:inherit; font-size:14px; background:#f8fafc; transition:.2s; }
        .contact-form-wrap input:focus, .contact-form-wrap textarea:focus { outline:none; border-color:var(--blue); background:#fff; }
        .contact-map { line-height:0; }
        .contact-map iframe { width:100%; height:380px; border:0; }
        @media (max-width:860px){ .about-split{grid-template-columns:1fr; gap:30px;} .about-split-img{min-height:240px;} }
        @media (max-width:768px){ .about-svc-grid{grid-template-columns:1fr 1fr;} .contact-grid{grid-template-columns:1fr;gap:36px;} .cf-row{flex-direction:column;gap:0;} .inner-banner{min-height:280px;height:280px;} .ip-section{padding:56px 0;} }
        @media (max-width:480px){ .about-svc-grid{grid-template-columns:1fr;} }
