:root {
            --primary-color: #1a237e;
            --secondary-color: #00b0ff;
            --accent-color: #ff4081;
            --light-bg: #f5f7ff;
            --dark-text: #1a1a2e;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #283593 50%, #3949ab 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgNTBsNDAgMjVjNDAgMjUgODAgMjUgMTIwIDBDMjAwIDUwIDI0MCA1MCAyODAgNzVjNDAgMjUgODAgMjUgMTIwIDAgNDAtMjUgODAtMjUgMTIwIDAgNDAgMjUgODAgMjUgMTIwIDAgNDAtMjUgODAtMjUgMTIwIDAgNDAtMjUgODAtMjUgMTIwIDAgNDAtMjUgODAtMjUgMTIwLTI1czgwLTI1IDEyMC01MGM0MC0yNSA4MC0yNSAxMjAgMHM4MCAyNSAxMjAgMjVjNDAgMCA4MC0yNSAxMjAtMjVzODAgMjUgMTIwIDI1YzQwIDAgODAtMjUgMTIwLTI1czgwIDI1IDEyMCA1MGM0MCAyNSA4MCAyNSAxMjAgMCA0MC0yNSA4MC0yNSAxMjAgMCA0MCAyNSA4MCAyNSAxMjAgMHM4MC0yNSAxMjAtNTAiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+') no-repeat bottom center;
            background-size: cover;
        }
        .section-title {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        .stats-label {
            color: #666;
            font-size: 1.1rem;
        }
        .contact-info-card {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }
        .footer {
            background: #1a1a2e;
            color: #ddd;
            padding: 60px 0 20px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            color: white;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--secondary-color);
        }
        .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: var(--primary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .company-logo {
            max-height: 40px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
            }
            .stats-counter {
                font-size: 2.5rem;
            }
            .company-logo {
                max-height: 30px;
            }
        }
