:root {
            --primary: #1a237e;
            --secondary: #ff3d00;
            --accent: #00b0ff;
            --dark: #0d1321;
            --light: #f8f9fa;
            --gray: #6c757d;
            --font-heading: 'Orbitron', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }
        body {
            font-family: var(--font-body);
            color: #333;
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--dark);
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--secondary) !important;
        }
        .navbar-brand span {
            color: var(--accent);
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 19, 33, 0.85), rgba(13, 19, 33, 0.9)), url('https://images.unsplash.com/photo-1551836026-d5c2c0b4d7a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .card-hover {
            transition: transform 0.4s, box-shadow 0.4s;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary), var(--accent));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            color: white;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
            color: white;
        }
        .footer {
            background-color: var(--dark);
            color: #ccc;
            padding-top: 4rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            margin: 0.3rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            border-color: var(--accent);
            transform: scale(1.05);
        }
        .contact-info li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 0.3rem;
            color: var(--accent);
        }
        .stats-number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-bottom: 1.5rem;
        }
        .accordion-button {
            font-family: var(--font-heading);
            font-weight: 600;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 35, 126, 0.05);
            color: var(--primary);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 6rem 0;
                min-height: 90vh;
                text-align: center;
            }
            .navbar-nav {
                text-align: center;
                background: rgba(13, 19, 33, 0.95);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
        }
