:root {
            --primary-dark: #0a1931;
            --primary-blue: #185adb;
            --accent-teal: #17b978;
            --accent-gold: #ffc947;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a237e 100%);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,201,71,0.1) 0%, transparent 70%);
            top: -50%;
            left: -50%;
            animation: pulse 15s infinite alternate;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.05); opacity: 0.8; }
        }
        .nav-shadow {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            background-color: rgba(10, 25, 49, 0.95);
        }
        .service-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(24, 90, 219, 0.15);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary-blue), #17b978);
            color: white;
        }
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .portfolio-img {
            transition: transform 0.6s ease;
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.08);
        }
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10,25,49,0.9), transparent);
            color: white;
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        .team-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .team-card:hover {
            box-shadow: 0 20px 40px rgba(24, 90, 219, 0.15);
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            object-fit: cover;
            object-position: top;
        }
        .contact-form .form-control {
            border-radius: 10px;
            border: 2px solid #e9ecef;
            padding: 1rem;
            transition: all 0.3s;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(24, 90, 219, 0.25);
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), #17b978);
            border: none;
            border-radius: 50px;
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(24, 90, 219, 0.3);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background: var(--light-bg);
            border-radius: 50px;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        footer {
            background: var(--primary-dark);
            color: var(--text-light);
        }
        .footer-link {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--accent-gold);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }
            .hero-section {
                min-height: 90vh;
                text-align: center;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
        }
