:root {
            --primary: #0a0e17;
            --secondary: #00d9ff;
            --accent: #ff2a6d;
            --light: #f8f9fa;
            --dark: #1a1f2e;
            --gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--light);
            background: linear-gradient(135deg, var(--primary) 0%, #151a2d 100%);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .text-gradient {
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .navbar {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 217, 255, 0.2);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--secondary) !important;
        }
        .nav-link {
            color: var(--light) !important;
            font-weight: 600;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            background: rgba(0, 217, 255, 0.15);
            color: var(--secondary) !important;
            transform: translateY(-2px);
        }
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            background: radial-gradient(ellipse at center, rgba(26, 31, 46, 0.7) 0%, rgba(10, 14, 23, 1) 70%);
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.15;
            z-index: -1;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .btn-primary-custom {
            background: linear-gradient(90deg, var(--secondary), #00a8d7);
            border: none;
            color: var(--primary);
            font-weight: 700;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            transition: all 0.4s;
            box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
        }
        .btn-primary-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 217, 255, 0.6);
            color: var(--primary);
        }
        .section {
            padding: 6rem 0;
            position: relative;
        }
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), transparent);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        .card-custom {
            background: rgba(26, 31, 46, 0.7);
            border: 1px solid rgba(0, 217, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
            backdrop-filter: blur(10px);
        }
        .card-custom:hover {
            transform: translateY(-15px);
            border-color: var(--secondary);
            box-shadow: 0 15px 30px rgba(0, 217, 255, 0.2);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary), #0086b3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto;
            font-size: 2rem;
            color: var(--primary);
        }
        .stats-box {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid rgba(0, 217, 255, 0.2);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(0, 217, 255, 0.3);
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        .team-member:hover .team-img {
            border-color: var(--secondary);
            transform: scale(1.05);
        }
        .contact-info-box {
            background: rgba(26, 31, 46, 0.7);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-left: 5px solid var(--secondary);
            transition: all 0.3s;
        }
        .contact-info-box:hover {
            background: rgba(26, 31, 46, 0.9);
            transform: translateX(10px);
        }
        footer {
            background: #0a0b11;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0, 217, 255, 0.2);
        }
        .friendlink {
            background: rgba(26, 31, 46, 0.5);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 3rem;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            color: var(--light);
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
            border-color: var(--secondary);
        }
        .form-control-custom {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--light);
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            background: rgba(255,255,255,0.08);
            border-color: var(--secondary);
            color: var(--light);
            box-shadow: 0 0 0 0.25rem rgba(0, 217, 255, 0.25);
        }
        ::selection {
            background-color: var(--secondary);
            color: var(--primary);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section {
                padding: 4rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
