﻿:root {
            --primary-red: #c026d3;
            --brand-red: #b62d1e;
            --brand-dark: #6b0d04;
            --brand-gold: #fbbf24;
            --brand-gold-glow: rgba(251, 191, 36, 0.35);
            --bg-dark: #0f172a;
            --card-bg: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f8fafc;
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* Top Announcement Bar */
        .top-ticker {
            background: #1e1b4b;
            color: #f1f5f9;
            font-size: 0.875rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .ticker-badge {
            background: var(--brand-gold);
            color: #000;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            text-transform: uppercase;
        }
/* =========================
   Header & Navbar
========================= */

header {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-red));
    border-bottom: 3px solid var(--brand-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

/* Logo */
.logo {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px var(--brand-gold-glow);
}

.logo span {
    color: var(--brand-gold);
}

/* Desktop Menu */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    padding: 8px 14px;
    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.08);
}

/* Toggle Button */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;

    color: #fff;
    font-size: 1.45rem;
    cursor: pointer;

    transition: 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
}


/* =========================
   Mobile Navbar
========================= */

@media (max-width: 768px) {

    .navbar-custom {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Toggle show */
    .mobile-toggle {
        display: flex;
    }

    /* Mobile Menu */
    .nav-links {
        position: absolute;

        top: calc(100% + 3px);
        left: 0;

        width: 100%;

        background: linear-gradient(
            135deg,
            var(--brand-dark),
            var(--brand-red)
        );

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease;

        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);

        z-index: 999;
    }

    /* Menu open */
    .nav-links.show {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;

        padding: 15px 22px;

        border-radius: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.10);
        color: var(--brand-gold);
    }
}

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(107, 13, 4, 0.88)), 
                        url('banner.1.jpg') center/cover no-repeat;
            padding: 90px 0 110px;
            color: #1e1b4b;
            text-align: center;
            position: relative;
        }

        .hero-title {
            font-size: 3.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 620px;
            margin: 0 auto 35px;
        }

        .hero-stats {
            display: inline-flex;
            gap: 30px;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(12px);
            padding: 16px 32px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--brand-gold);
        }

        .stat-label {
            font-size: 0.75rem;
            color: #cbd5e1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .hero-stats { display: none; }
        }

        @media (max-width: 768px) {
            .mobile-toggle { display: block; }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--brand-dark);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }

            .nav-links.show {
                max-height: 280px;
            }

            .nav-links li { width: 100%; }

            .nav-links a {
                display: block;
                padding: 15px 24px;
                border-radius: 0;
                border-top: 1px solid rgba(255,255,255,0.05);
            }

            .hero-section { padding: 60px 0 90px; }
            .hero-title { font-size: 2rem; }
            .cards-container { margin-top: -30px; }
        }

        /* Banner Card Section */
        .banner-wrapper {
            max-width: 600px;
            margin: 40px auto 0;
            padding: 0 20px;
        }

        .neon-box {
            background: #000;
            border-radius: 16px 16px 0 0;
            padding: 16px;
            text-align: center;
            border: 2px solid #0088ff;
            border-bottom: none;
            box-shadow: 0 0 20px rgba(0, 136, 255, 0.3);
        }

        .neon-text {
            color: #4da6ff;
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: 4px;
            text-shadow: 0 0 10px #0088ff, 0 0 20px #0088ff;
        }

        .header-box {
            background: linear-gradient(135deg, #1e1b4b, #0f172a);
            border: 2px solid var(--brand-gold);
            border-radius: 0 0 16px 16px;
            text-align: center;
            padding: 24px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .header-title {
            color: #ef4444;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 4px;
        }

        .header-subtitle {
            color: var(--brand-gold);
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 3px;
        }

        /* About Us Main Section */
        .about-section {
            padding: 60px 0 80px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--brand-dark);
            position: relative;
            display: inline-block;
        }

        .section-header h1::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: var(--brand-gold);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .history-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }

        .history-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.1);
            border-color: var(--brand-gold);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: #fef3c7;
            color: #d97706;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .history-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .history-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

     
     
        /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 40px 0 25px;
        }

        .footer-brand {
            color: #fff;
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            margin: 0 12px;
            font-size: 0.9rem;
            transition: var(--transition-smooth);
        }

        .footer-links a:hover {
            color: var(--brand-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 25px;
            margin-top: 30px;
            font-size: 0.85rem;
        }
 /* Responsive Mobile Navigation */
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--brand-dark);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }

            nav.show {
                max-height: 250px;
            }

            nav a {
                display: block;
                width: 100%;
                padding: 14px 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 0;
            }

            .section-header h1 {
                font-size: 2rem;
            }

            .neon-text {
                font-size: 1.4rem;
            }

            .header-title {
                font-size: 1.4rem;
            }
        }