:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #00adb5;
            --secondary-accent: #ff2e63;
            --light-bg: #f0f5f9;
            --text-light: #eeeeee;
            --text-dark: #222831;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-accent) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-accent) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: var(--text-light);
            padding: 150px 0;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--primary-accent);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #009199;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 173, 181, 0.2);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-accent);
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-accent), #00ccd6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .icon-box i {
            font-size: 1.8rem;
            color: white;
        }
        .stats-box {
            background: var(--primary-dark);
            color: white;
            padding: 40px 20px;
            border-radius: 10px;
            text-align: center;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-accent);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--primary-accent);
        }
        .flink {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid transparent;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ddd;
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            background: rgba(0, 173, 181, 0.1);
            border-color: var(--primary-accent);
            color: white;
            transform: scale(1.03);
        }
        .company-cin {
            font-family: monospace;
            background: rgba(0, 0, 0, 0.1);
            padding: 5px 10px;
            border-radius: 4px;
            color: var(--primary-accent);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
        }
