
        :root {
            /* Color Palette */
            --color-navy: #0B132B;
            --color-charcoal: #1C1C1C;
            --color-gold-light: #FFD700;
            --color-gold-dark: #D4AF37;
            --color-royal-blue: #1E3A8A;
            --color-emerald: #0F766E;
            --color-white: #FFFFFF;
            --color-light-grey: #E5E5E5;
            --color-dark-grey: #2A2A2A;
            --color-footer-bg: #FFFFFF;
            --color-footer-text: #333333;
            
            /* Gradients */
            --gradient-gold: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-light) 100%);
            --gradient-gold-hover: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
            --gradient-dark: linear-gradient(to bottom, #0c1429, #1a1a1a);
            
            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-xxl: 4rem;
            
            /* Typography */
            --font-primary: 'Space Grotesk', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            
            /* Shadows */
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
            
            /* Border Radius */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 9999px;
            
            /* Transitions */
            --transition-fast: 0.15s ease-in-out;
            --transition-normal: 0.3s ease-in-out;
            --transition-slow: 0.5s ease-in-out;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-secondary);
            color: var(--color-white);
            background: var(--gradient-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-primary);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: var(--space-md);
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 1.75rem;
        }

        p {
            margin-bottom: var(--space-md);
            color: var(--color-light-grey);
        }

        a {
            color: var(--color-white);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--color-gold-light);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        section {
            padding: var(--space-xxl) 0;
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .text-gold {
            color: var(--color-gold-light);
        }

        .text-emerald {
            color: var(--color-emerald);
        }

        .bg-charcoal {
            background-color: var(--color-charcoal);
        }

        .bg-navy {
            background-color: var(--color-navy);
        }

        .bg-royal-blue {
            background-color: var(--color-royal-blue);
        }

        .bg-emerald {
            background-color: var(--color-emerald);
        }

        .bg-dark-gradient {
            background: var(--gradient-dark);
        }

        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .items-center {
            align-items: center;
        }

        .justify-center {
            justify-content: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .gap-sm {
            gap: var(--space-sm);
        }

        .gap-md {
            gap: var(--space-md);
        }

        .gap-lg {
            gap: var(--space-lg);
        }

        .gap-xl {
            gap: var(--space-xl);
        }

        .mb-sm {
            margin-bottom: var(--space-sm);
        }

        .mb-md {
            margin-bottom: var(--space-md);
        }

        .mb-lg {
            margin-bottom: var(--space-lg);
        }

        .mb-xl {
            margin-bottom: var(--space-xl);
        }

        .pb-sm {
            padding-bottom: var(--space-sm);
        }

        .pb-md {
            padding-bottom: var(--space-md);
        }

        .pb-lg {
            padding-bottom: var(--space-lg);
        }

        .pb-xl {
            padding-bottom: var(--space-xl);
        }

        .rounded-sm {
            border-radius: var(--radius-sm);
        }

        .rounded-md {
            border-radius: var(--radius-md);
        }

        .rounded-lg {
            border-radius: var(--radius-lg);
        }

        .rounded-xl {
            border-radius: var(--radius-xl);
        }

        .rounded-full {
            border-radius: var(--radius-full);
        }

        .shadow-sm {
            box-shadow: var(--shadow-sm);
        }

        .shadow-md {
            box-shadow: var(--shadow-md);
        }

        .shadow-lg {
            box-shadow: var(--shadow-lg);
        }

        .shadow-gold {
            box-shadow: var(--shadow-gold);
        }

        .glass {
            background: rgba(11, 19, 43, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-sm) var(--space-lg);
            font-weight: 600;
            border-radius: var(--radius-xl);
            transition: all var(--transition-normal);
            cursor: pointer;
            border: none;
            font-family: var(--font-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .btn-primary {
            background: var(--gradient-gold);
            color: var(--color-navy);
        }

        .btn-primary:hover {
            background: var(--gradient-gold-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background-color: var(--color-royal-blue);
            color: var(--color-white);
        }

        .btn-secondary:hover {
            background-color: #1a3a9a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
        }

        .btn-outline {
            background:#FFD700;
            color: #000000;
;
            border: 2px solid var(--color-gold-light);
        }

        .btn-outline:hover {
            background: var(--gradient-gold-hover);
            border-color: var(--color-white);
            color: var(--color-navy);
        }

        .btn-lg {
            padding: var(--space-md) var(--space-xl);
            font-size: 1.1rem;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: var(--space-sm) 0;
            z-index: 1000;
            transition: all var(--transition-normal);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .navbar.scrolled {
            padding: var(--space-xs) 0;
            box-shadow: var(--shadow-md);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .navbar-brand img {
            height: 50px;
            transition: all var(--transition-normal);
        }

        .brand-text {
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: 1.4rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .navbar-menu {
            display: flex;
            align-items: center;
        }

        .navbar-nav {
            display: flex;
            list-style: none;
            gap: var(--space-sm);
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--color-navy);
            font-weight: 500;
            padding: var(--space-xs) var(--space-sm);
            transition: all var(--transition-fast);
            position: relative;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: var(--color-gold-dark);
        }

        .nav-link.active {
            color: var(--color-gold-dark);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 2px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
        }

        .navbar-toggler {
            display: none;
            background: none;
            border: none;
            color: var(--color-navy);
            font-size: 1.5rem;
            cursor: pointer;
            padding: var(--space-xs);
            z-index: 1001;
        }

        /* Mobile Menu */
        @media (max-width: 992px) {
            .navbar-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--color-navy);
                flex-direction: column;
                align-items: flex-start;
                padding: var(--space-xxl) var(--space-xl) var(--space-xl);
                box-shadow: var(--shadow-lg);
                transition: all var(--transition-normal);
                z-index: 999;
            }

            .navbar-menu.active {
                right: 0;
            }

            .navbar-nav {
                flex-direction: column;
                width: 100%;
                text-align: left;
                gap: var(--space-sm);
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                display: block;
                padding: var(--space-sm) 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                color: var(--color-white);
            }

            .navbar-toggler {
                display: block;
            }

            .navbar-btns {
                display: flex;
                flex-direction: column;
                width: 100%;
                margin-top: var(--space-md);
                gap: var(--space-sm);
            }

            .navbar-btns .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(11, 19, 43, 0.9) 0%, rgba(28, 28, 28, 0.9) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            padding: var(--space-xl) 0;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: var(--space-md);
            line-height: 1.1;
        }

        .hero h1 span {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 600px;
            margin-bottom: var(--space-xl);
        }

        .hero-actions {
            display: flex;
            gap: var(--space-md);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-xl);
            max-width: 800px;
        }

        .stat-card {
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            font-family: var(--font-primary);
            margin-bottom: var(--space-xs);
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--color-light-grey);
        }

        /* Features Section */
        .section-title {
            text-align: center;
            margin-bottom: var(--space-xxl);
        }

        .section-title h2 {
            position: relative;
            display: inline-block;
            margin-bottom: var(--space-md);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
        }

        .section-title p {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-xl);
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            transition: all var(--transition-normal);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-gold);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-lg);
            background: var(--gradient-gold);
            color: var(--color-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: var(--space-md);
        }

        .feature-card h3 {
            margin-bottom: var(--space-sm);
        }

        /* About Section */
        .about {
            background-color: var(--color-charcoal);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-xl);
            align-items: center;
        }

         .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 450px;
            /* background: linear-gradient(45deg, var(--color-navy), var(--color-charcoal)); */
            display: flex;
            align-items: center;
            justify-content: center;
        } 


        .coin-face.front {
            transform: translateZ(10px);
        }

        .coin-face.back {
            transform: rotateY(180deg) translateZ(10px);
        }

        .coin-face i {
            font-size: 4rem;
            color: var(--color-navy);
        }

        @keyframes rotateCoin {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

/* Mission Section */
.mission {
    background-color: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.mission-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-text {
    padding: var(--space-md);
}

@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        height: 350px;
        order: -1;
    }
}

@media (max-width: 576px) {
    .mission-image {
        height: 250px;
    }
}        /* Testimonial Section */
        .testimonial {
            background-color: var(--color-charcoal);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(212, 175, 55, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: var(--space-xl);
            position: relative;
            z-index: 1;
        }

        .testimonial-text strong {
            color: var(--color-gold-light);
            font-weight: 600;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-full);
            object-fit: cover;
            border: 2px solid var(--color-gold-light);
        }

        .author-info h4 {
            margin-bottom: var(--space-xs);
        }

        .author-info p {
            color: var(--color-light-grey);
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-royal-blue) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: var(--space-xxl) 0;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            margin-bottom: var(--space-md);
        }

        .cta p {
            margin-bottom: var(--space-xl);
            font-size: 1.1rem;
        }

        /* Footer - Fixed */
        .footer {
            background-color: var(--color-footer-bg);
            padding: var(--space-xxl) 0 var(--space-md) 0;
            position: relative;
            overflow: hidden;
            color: var(--color-footer-text);
        }

        /* .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
            z-index: 0;
        } */

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-xl);
            margin-bottom: var(--space-xl);
            position: relative;
            z-index: 1;
        }

        .footer-about {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-logo .brand-text {
            font-size: 1.3rem;
        }

        .footer-links h3 {
            font-size: 1.25rem;
            margin-bottom: var(--space-lg);
            position: relative;
            color: var(--color-footer-text);
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-gold);
            border-radius: var(--radius-full);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: var(--space-sm);
        }

        .footer-links a {
            color: var(--color-footer-text);
            transition: all var(--transition-fast);
            display: block;
        }

        .footer-links a:hover {
            color: var(--color-gold-dark);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: var(--space-sm);
            margin-top: var(--space-md);
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: rgba(0, 0, 0, 0.05);
            color: var(--color-footer-text);
            transition: all var(--transition-fast);
        }

        .social-links a:hover {
            background: var(--gradient-gold);
            color: var(--color-navy);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--space-xl);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--color-footer-text);
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        .footer-bottom a {
            color: var(--color-gold-dark);
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: var(--space-lg);
            right: var(--space-lg);
            width: 50px;
            height: 50px;
            border-radius: var(--radius-full);
            background: var(--gradient-gold);
            color: var(--color-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-normal);
            z-index: 999;
            box-shadow: var(--shadow-md);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--color-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader-inner {
            text-align: center;
        }

        .preloader-icon {
            display: inline-block;
            position: relative;
            width: 80px;
            height: 80px;
        }

        .preloader-icon span {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-top-color: var(--color-gold-light);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .preloader-icon span:nth-child(2) {
            border-top-color: var(--color-royal-blue);
            animation-delay: 0.2s;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            section {
                padding: var(--space-xl) 0;
            }
            
            .section-title {
                margin-bottom: var(--space-xl);
            }
            
            .about-content,
            .mission-content {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .about-image,
            .mission-image {
                height: 350px;
                order: -1;
            }
            
            .feature-card {
                padding: var(--space-lg);
            }
            
            .testimonial-card {
                padding: var(--space-lg);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero-actions {
                flex-direction: column;
                gap: var(--space-sm);
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .footer-about {
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .navbar-brand .brand-text {
                font-size: 1.2rem;
            }
            
            .coin-animation {
                width: 150px;
                height: 150px;
            }
            
            .blockchain-block {
                width: 100px;
                height: 100px;
            }
        }
        .hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
/* About Section with Video Background */
.about {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 100px 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.about-content {
    position: relative;
    z-index: 1;
}
@media (max-width: 1200px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card {
        padding: var(--space-lg);
    }
}

@media (max-width: 992px) {
    section {
        padding: var(--space-xl) 0;
    }
    
    .section-title {
        margin-bottom: var(--space-xl);
    }
    
    .about-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image,
    .mission-image {
        height: 350px;
        order: -1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile menu improvements */
    .navbar-menu {
        width: 80%;
    }
    
    .nav-link {
        padding: var(--space-sm) 0;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: var(--space-lg) var(--space-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .mission-image,
    .about-image {
        height: 250px;
    }
    
    .hero-stats .stat-card {
        padding: var(--space-sm);
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: var(--space-md) var(--space-lg);
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: var(--space-md);
        right: var(--space-md);
    }
}

    