* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #00D9FF;
            --dark: #363665;
            --light: #F7F9FC;
            --cream: #f5f0e8;
            --text-dark: #2d2a26;
            --accent-gold: #c5a35d;
            --orange: #FF6B35;
            --violet: #8B5CF6;
            --blue: #3B82F6;
            --green: #3bf64b;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ==================== NAVIGATION ==================== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0) 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #000;
            position: relative;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #fbbf24;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            color: #fbbf24;
        }

        .logo:hover::after {
            transform: scaleX(1);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #000;
            font-weight: 500;
            font-size: 1.2rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-links a:hover {
            color: #fbbf24;
        }

        .nav-links a:hover::before {
            width: 100%;
            left: 0;
        }



        

        /* ==================== HERO SECTION ==================== */
.hero-services {
    position: relative;
    min-height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Video Background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Gradient Overlay */
.hero-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 40, 0.767) 0%,
        rgba(20, 30, 70, 0.798) 50%,
        rgba(30, 60, 120, 0.774) 100%
    );
    z-index: 2;
}

/* Subtle Glow Effect */
.hero-services::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(255, 107, 53, 0.25), transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(139, 92, 246, 0.25), transparent 50%);
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 3;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 5%;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading */
.hero-services h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Highlight Text */
.hero-services h1 span {
    background: linear-gradient(90deg, #FF6B35, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subheading */
.hero-services .subheader {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Paragraph */
.hero-services p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: linear-gradient(90deg, #FF6B35, #FF8A50);
    color: #fff;
}

.hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-services h1 {
        font-size: 2.8rem;
    }

    .hero-services p {
        font-size: 1rem;
    }
}




       /* ==================== SERVICES SECTION ==================== */
        .services-section {
            padding: 120px 5%;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 100px;
            animation: fadeInDown 0.8s ease-out;
            position: relative;
            z-index: 10;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title .tagline {
            display: inline-block;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 3px;
            font-size: 1rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--orange), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title h2 {
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 2rem;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--violet), var(--blue));
            border-radius: 3px;
        }

        .services-grid {
            display: flex;
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            transition: flex 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        background 0.6s ease,
                        box-shadow 0.6s ease;
            border: 3px solid transparent;
            animation: popIn 0.6s ease-out backwards;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            flex: 1;
        }

        .service-card:nth-child(1) { 
            animation-delay: 0.1s;
            background: linear-gradient(135deg, #3c3c86 0%, #1c1c53 100%);
        }

        .service-card:nth-child(2) { 
            animation-delay: 0.2s;
            background: linear-gradient(135deg, #3c3c86 0%, #1c1c53 100%);
        }

        .service-card:nth-child(3) { 
            animation-delay: 0.3s;
            background: linear-gradient(135deg, #3c3c86 0%, #1c1c53 100%);
        }

        .service-card:nth-child(4) { 
            animation-delay: 0.4s;
            background: linear-gradient(135deg, #3c3c86 0%, #1c1c53 100%);
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Glowing border effect on hover */
        .service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 3px;
            background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 0;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        /* Expand card on hover using flex */
        .service-card:hover {
            flex: 2;
            text-align: left;
            align-items: flex-start;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
            z-index: 100;
        }

        .service-card:nth-child(1):hover {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
        }

        .service-card:nth-child(2):hover {
            background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
        }

        .service-card:nth-child(3):hover {
            background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
        }

        .service-card:nth-child(4):hover {
            background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 25px;
            transform: scale(0);
            transition: transform 0.6s ease;
            z-index: 1;
            transform-origin: center;
        }

        .service-card:nth-child(1)::before {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
        }

        .service-card:nth-child(2)::before {
            background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
        }

        .service-card:nth-child(3)::before {
            background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
        }

        .service-card:nth-child(4)::before {
            background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
        }

        .service-card:hover::before {
            transform: scale(1);
        }

        .service-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }

        .service-card:nth-child(1):hover { border-color: #FF6B35; }
        .service-card:nth-child(2):hover { border-color: #8B5CF6; }
        .service-card:nth-child(3):hover { border-color: #3B82F6; }
        .service-card:nth-child(4):hover { border-color: #F97316; }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 2;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(5deg);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0;
            font-family: 'Outfit', sans-serif;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0;
            font-family: 'Outfit', sans-serif;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 2;
        }

        .service-card:nth-child(1) h3 { color: #FF6B35; }
        .service-card:nth-child(2) h3 { color: #8B5CF6; }
        .service-card:nth-child(3) h3 { color: #3B82F6; }
        .service-card:nth-child(4) h3 { color: #F97316; }

        .service-card:hover h3 {
            color: white;
            margin-bottom: 1rem;
            transform: translateX(5px);
        }

        

        .service-card h5 {
            margin-top: 5rem;
            color: rgb(240, 238, 238);

        }

        

        .service-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 1.5rem;
            transition: opacity 1s ease 0.2s, 
                        max-height 1s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        transform 1s cubic-bezier(0.34, 1.56, 0.64, 1),
                        color 0.5s ease;
            position: relative;
            z-index: 2;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transform: translateX(-50px);
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.95);
            opacity: 1;
            max-height: 200px;
            transform: translateX(0);
            transition: opacity 1s ease 0.2s, 
                        max-height 1s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        transform 1s cubic-bezier(0.34, 1.56, 0.64, 1),
                        color 0.5s ease;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transform: translateX(-50px);
            transition: opacity 1s ease 0.3s, 
                        max-height 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s, 
                        transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
        }

        .service-card:hover .service-features {
            opacity: 1;
            max-height: 300px;
            transform: translateX(0);
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #555;
            font-size: 0.95rem;
            transition: color 0.4s ease;
            position: relative;
            padding-left: 25px;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            transition: color 0.4s ease;
        }

        .service-card:nth-child(1) .service-features li::before { color: #FF6B35; }
        .service-card:nth-child(2) .service-features li::before { color: #8B5CF6; }
        .service-card:nth-child(3) .service-features li::before { color: #3B82F6; }
        .service-card:nth-child(4) .service-features li::before { color: #F97316; }

        .service-card:hover .service-features li,
        .service-card:hover .service-features li::before {
            color: rgba(255, 255, 255, 0.95);
        }

        .service-btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: opacity 1s ease 0.4s, 
                        transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s,
                        background 0.3s ease,
                        box-shadow 0.3s ease;
            position: relative;
            z-index: 2;
            border: 2px solid;
            opacity: 0;
            transform: translateX(-50px);
        }

        .service-card:hover .service-btn {
            opacity: 1;
            transform: translateX(0);
        }

        /* Click here indicator for mobile */
        .click-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: #999;
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 1;
            transition: opacity 0.3s ease;
            z-index: 2;
            display: none;
            pointer-events: none;
            text-align: center;
        }

        .click-indicator::before {
            content: '👆';
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
            animation: pointUp 1.5s ease-in-out infinite;
        }

        @keyframes pointUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* Show click indicator only on touch devices */
        @media (hover: none) and (pointer: coarse) {
            .click-indicator {
                display: block;
            }

            .service-card:hover .click-indicator,
            .service-card.expanded .click-indicator {
                opacity: 0;
            }
        }

        /* Expanded state for mobile */
        .service-card.expanded {
            flex: 2;
            text-align: left;
            align-items: flex-start;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
            z-index: 100;
        }

        .service-card.expanded::after {
            opacity: 1;
        }

        .service-card:nth-child(1).expanded {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
        }

        .service-card:nth-child(2).expanded {
            background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
        }

        .service-card:nth-child(3).expanded {
            background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
        }

        .service-card:nth-child(4).expanded {
            background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
        }

        .service-card.expanded .service-icon {
            transform: scale(1.2) rotate(5deg);
            margin-bottom: 1rem;
        }

        .service-card.expanded h3 {
            color: white;
            margin-bottom: 1rem;
            transform: translateX(5px);
        }

        .service-card.expanded p {
            color: rgba(255, 255, 255, 0.95);
            opacity: 1;
            max-height: 200px;
            transform: translateX(0);
        }

        .service-card.expanded .service-features {
            opacity: 1;
            max-height: 300px;
            transform: translateX(0);
        }

        .service-card.expanded .service-features li,
        .service-card.expanded .service-features li::before {
            color: rgba(255, 255, 255, 0.95);
        }

        .service-card.expanded .service-btn {
            opacity: 1;
            transform: translateX(0);
        }

        .service-card:nth-child(1) .service-btn {
            background: #FF6B35;
            color: white;
            border-color: #FF6B35;
        }

        .service-card:nth-child(2) .service-btn {
            background: #8B5CF6;
            color: white;
            border-color: #8B5CF6;
        }

        .service-card:nth-child(3) .service-btn {
            background: #3B82F6;
            color: white;
            border-color: #3B82F6;
        }

        .service-card:nth-child(4) .service-btn {
            background: #F97316;
            color: white;
            border-color: #F97316;
        }

        .service-card .service-btn:hover {
            background: white;
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card:nth-child(1) .service-btn:hover { color: #FF6B35; }
        .service-card:nth-child(2) .service-btn:hover { color: #8B5CF6; }
        .service-card:nth-child(3) .service-btn:hover { color: #3B82F6; }
        .service-card:nth-child(4) .service-btn:hover { color: #F97316; }




        /* ==================== PROCESS SECTION ==================== */
        .process-section {
            padding: 120px 5%;
            background: linear-gradient(135deg, #f5f0e8 0%, #ebe5dc 100%);
            position: relative;
            overflow: hidden;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .process-step {
            text-align: center;
            position: relative;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-step:nth-child(2) { animation-delay: 0.2s; }
        .process-step:nth-child(3) { animation-delay: 0.3s; }
        .process-step:nth-child(4) { animation-delay: 0.4s; }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dark), var(--violet));
            color: white;
            font-size: 2rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'Outfit', sans-serif;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            transition: all 0.4s ease;
        }

        .process-step:nth-child(2) .step-number {
            background: linear-gradient(135deg, var(--dark), var(--blue));
        }

        .process-step:nth-child(3) .step-number {
            background: linear-gradient(135deg, var(--dark), var(--orange));
        }

        .process-step:nth-child(4) .step-number {
            background: linear-gradient(135deg, var(--dark), var(--green));
        }

        .process-step:hover .step-number {
            transform: scale(1.2) rotateY(360deg);
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
        }

        .process-step h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
            font-family: 'Outfit', sans-serif;
        }

        .process-step p {
            color: #666;
            line-height: 1.6;
        }

        /* Process connection line */
        .process-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            top: 40px;
            right: -30px;
            font-size: 2rem;
            color: var(--primary);
            opacity: 0.3;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            padding: 120px 5%;
            background: linear-gradient(135deg, 
                rgb(22, 25, 58) 0%,
                rgb(37, 33, 85) 50%,
                rgb(23, 31, 71) 100%
            );
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light) 50%, var(--light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-content p {
            font-size: 1.3rem;
            color: #dbd9d9;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            padding: 1.3rem 3.5rem;
            background: linear-gradient(135deg, var(--light), var(--cream), var(--light));
            color: rgb(20, 25, 49);
            font-size: 1.2rem;
            font-weight: 800;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
            font-family: 'Outfit', sans-serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(127, 151, 247, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(53, 93, 255, 0.5);
        }

        /* ==================== FOOTER ==================== */
.main-footer {
    padding: 30px 5% 30px;
    background: var(--cream);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

/* Update 1: Align Logo and Text on the same line */
.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    display: flex;          
    align-items: center;    
    left: 2%;              
}


.footer-brand h2 span {
    color: var(--accent-gold);
}

.footer-brand p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}


.footer-bottom {
    padding-top: 30px;     
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
    gap: 20px;      
    margin-top: -30px;        
}

/* --- Scroll Animation States --- */
.reveal, 
.reveal-left, 
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

/* Active states with proper specificity */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .services-grid {
                flex-wrap: wrap;
            }

            .service-card {
                flex: 1 1 calc(50% - 10px);
                min-width: 280px;
            }

            .service-card:hover {
                flex: 1 1 calc(50% - 10px);
            }
        }

        @media (max-width: 968px) {
            .services-grid {
                flex-direction: column;
                gap: 40px;
            }

            .service-card {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }

            .service-card:hover {
                flex: 1;
                width: 100%;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-step:nth-child(2)::after,
            .process-step:nth-child(4)::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 5%;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 2rem;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .hero-services {
                margin-top: 150px;
                min-height: 60vh;
            }

            .hero-services h1 {
                font-size: 2.5rem;
            }

            .hero-services .subheader {
                font-size: 1rem;
            }

            .hero-services p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .cta-content h2 {
                font-size: 2.2rem;
            }

            .cta-content p {
                font-size: 1.1rem;
            }
        }
