:root {
            --primary: #2A4365;
            --secondary: #D69E2E;
            --accent: #38B2AC;
            --light: #F7FAFC;
            --dark: #1A202C;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary) 0%, #4C51BF 100%);
        }
        .hero-section {
            min-height: 90vh;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            opacity: 0.1;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            background: var(--secondary);
            transform: scale(1.1);
        }
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 30px;
        }
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(42, 67, 101, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            color: white;
        }
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        .team-member {
            text-align: center;
            margin-bottom: 40px;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        .team-member:hover .team-img {
            transform: scale(1.05);
        }
        .testimonial-card {
            border-left: 4px solid var(--secondary);
            padding-left: 25px;
            margin: 30px 0;
        }
        .contact-form .form-control {
            border-radius: 10px;
            padding: 15px;
            border: 2px solid #E2E8F0;
            transition: all 0.3s ease;
        }
        .contact-form .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
        }
        footer {
            background: var(--dark);
            color: var(--light);
            padding-top: 80px;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 25px;
            color: white;
            text-decoration: none;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
            border-color: var(--secondary);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        .blog-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .blog-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
        }
        .cta-section {
            background: linear-gradient(rgba(42, 67, 101, 0.9), rgba(42, 67, 101, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            padding: 100px 0;
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                padding-top: 100px;
            }
            .section-title::after {
                width: 60px;
            }
            .stats-counter {
                font-size: 2.5rem;
            }
            .team-img {
                width: 150px;
                height: 150px;
            }
        }
        .loading {
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
