:root {
            --primary-blue: #0d6efd;
            --secondary-indigo: #6610f2;
            --dark-navy: #1a237e;
            --light-accent: #e3f2fd;
            --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-indigo));
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-navy);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: var(--gradient-primary), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            background-blend-mode: overlay;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        .service-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .service-icon {
            font-size: 2.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .portfolio-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            margin-bottom: 1.5rem;
        }
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 35, 126, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background-color: #f8f9fa;
            border-radius: 50px;
            color: var(--dark-navy);
            text-decoration: none;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-blue);
            transform: scale(1.05);
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info i {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
        }
        .timeline-item {
            position: relative;
            padding-left: 40px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--gradient-primary);
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 9px;
            top: 28px;
            width: 2px;
            height: calc(100% + 10px);
            background: #ccc;
        }
        .timeline-item:last-child:after {
            display: none;
        }
        .btn-gradient {
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
            color: white;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
            }
            .section-title:after {
                left: 0;
                transform: none;
            }
        }
