:root {
            --primary-dark: #1a1a2e;
            --primary-blue: #16213e;
            --accent-cyan: #0fccce;
            --accent-purple: #6a11cb;
            --light-bg: #f8f9fa;
            --text-light: #e6e6e6;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .navbar-brand {
            font-weight: 700;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--accent-purple) 100%);
            color: white;
            padding-top: 120px;
            padding-bottom: 80px;
        }
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: white;
            background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
            transition: transform 0.3s ease;
        }
        .icon-box:hover {
            transform: translateY(-5px);
        }
        .service-card, .team-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .service-card:hover, .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(106, 17, 203, 0.15);
        }
        .btn-gradient {
            background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-gradient:hover {
            color: white;
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(106, 17, 203, 0.4);
        }
        .footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        .flink {
            color: var(--accent-cyan);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            margin: 5px;
            display: inline-block;
            border: 1px solid rgba(15, 204, 206, 0.3);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: rgba(15, 204, 206, 0.1);
            color: white;
            border-color: var(--accent-cyan);
            transform: translateY(-2px);
        }
        .friendlink {
            background-color: rgba(26, 26, 46, 0.05);
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            line-height: 1;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            border-bottom: 2px solid transparent;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-cyan) !important;
            border-bottom-color: var(--accent-cyan);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-purple));
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--accent-cyan);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-cyan);
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 50px;
                padding-bottom: 50px;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .img-hover-zoom {
            overflow: hidden;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
