
        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #1e293b;
            background: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        
        .wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== TYPOGRAPHY - CONSISTENT SIZES ===== */
        p {
            max-width: 100%;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            font-size: 1rem;
            line-height: 1.7;
        }

        .section-header p,
        .hero-content p,
        .service-card p,
        .why-card p,
        .process-step p,
        .faq-answer p,
        .testimonial-content p,
        .client-logo p {
            max-width: 100%;
            width: 100%;
            line-height: 1.7;
        }

        .hero-content p {
            max-width: 100%;
            font-size: 1rem;
            margin-bottom: 20px;
            color: rgba(255,255,255,0.95);
        }

        .section-header p {
            max-width: 900px;
            margin: 0 auto 15px;
            font-size: 1rem;
        }

        /* ===== BUTTONS ===== */
        .btn-primary {
            background: linear-gradient(45deg, #105bbf, #0d4a9e);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            font-size: 0.95rem;
            box-shadow: 0 8px 20px rgba(16,91,191,0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(16,91,191,0.4);
        }

        .btn-outline {
            border: 2px solid #105bbf;
            color: #105bbf;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.4s ease;
            background: transparent;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #105bbf;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-outline:hover::before {
            left: 0;
        }

        .btn-outline:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(16,91,191,0.2);
            border-color: #105bbf;
        }

        /* ===== SECTION HEADER ===== */
        .section-header {
            text-align: center;
            max-width: 100%;
            margin: 0 auto 30px;
        }

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

        @keyframes zoomIn {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .section-header .subtitle {
            color: #105bbf;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 12px;
            color: #0b1e33;
            font-weight: 700;
            line-height: 1.3;
        }

        .section-header h2 span {
            color: #105bbf;
            position: relative;
            display: inline-block;
        }

        .section-header h2 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(16,91,191,0.2);
            z-index: -1;
            border-radius: 10px;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            padding: 50px 0 40px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.15;
            animation: zoomIn 20s infinite alternate;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: slideInLeft 1s ease;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
            line-height: 1.3;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-content h1 span {
            color: #ffd966;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0 25px;
        }

        .hero-feature {
            color: white;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            padding: 6px 14px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }

        .hero-feature i {
            color: #ffd966;
        }

        /* ===== FORM CARD ===== */
        .form-card {
            background: white;
            border-radius: 25px;
            padding: 25px 25px;
            box-shadow: 0 20px 35px rgba(0,0,0,0.15);
            animation: slideInRight 1s ease;
        }

        .form-card h3 {
            font-size: 1.6rem;
            margin-bottom: 5px;
            color: #105bbf;
            font-weight: 600;
        }

        .form-card p {
            color: #64748b;
            margin-bottom: 15px;
            font-size: 0.85rem;
        }

        /* Contact Form 7 Styling - Works when CF7 is active */
        .form-card .wpcf7 {
            margin: 0;
        }

        .form-card .wpcf7-form p {
            margin-bottom: 0;
        }

        .form-card .wpcf7-form input,
        .form-card .wpcf7-form select,
        .form-card .wpcf7-form textarea {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background: #f8fafc;
            margin-bottom: 12px;
        }

        .form-card .wpcf7-form input:focus,
        .form-card .wpcf7-form select:focus,
        .form-card .wpcf7-form textarea:focus {
            outline: none;
            border-color: #105bbf;
            box-shadow: 0 0 0 3px rgba(16,91,191,0.1);
        }

        .form-card .wpcf7-form .wpcf7-submit {
            background: linear-gradient(45deg, #105bbf, #0d4a9e);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            width: 100%;
            cursor: pointer;
            border: none;
            transition: all 0.4s ease;
            margin-top: 5px;
        }

        .form-card .wpcf7-form .wpcf7-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16,91,191,0.3);
            background: linear-gradient(45deg, #0d4a9e, #105bbf);
        }

        .form-card .wpcf7-form .wpcf7-not-valid-tip {
            font-size: 0.75rem;
            margin-top: -8px;
            margin-bottom: 8px;
            color: #dc3545;
        }

        .form-card .wpcf7-form .wpcf7-response-output {
            margin: 10px 0 0;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.8rem;
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 50px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 25px 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

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

        .service-card:hover {
            transform: translateY(-5px);
            border-color: transparent;
            box-shadow: 0 15px 30px rgba(16,91,191,0.25);
        }

        .service-card:hover h3 a,
        .service-card:hover p,
        .service-card:hover .service-desc {
            color: white;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e8f0fe, #d9e6ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: white;
            transform: rotateY(180deg);
        }

        .service-icon i {
            font-size: 1.8rem;
            color: #105bbf;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon i {
            color: #105bbf;
        }

        .service-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .service-card h3 a {
            color: #0b1e33;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .service-card:hover h3 a {
            color: white;
        }

        .service-card p {
            color: #64748b;
            font-size: 0.85rem;
            margin-bottom: 12px;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .service-desc {
            color: #105bbf;
            font-size: 0.8rem;
            padding-top: 8px;
            border-top: 1px dashed #e2e8f0;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-desc {
            border-top-color: rgba(255,255,255,0.3);
        }

        /* ===== WHY CHOOSE SECTION ===== */
        .why-choose-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .why-card {
            background: white;
            border-radius: 20px;
            padding: 25px 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(16,91,191,0.1);
            border-color: #105bbf;
        }

        .why-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #e8f0fe, #d9e6ff);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .why-card:hover .why-icon {
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
        }

        .why-icon i {
            font-size: 1.6rem;
            color: #105bbf;
            transition: all 0.4s ease;
        }

        .why-card:hover .why-icon i {
            color: white;
        }

        .why-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .why-card p {
            color: #64748b;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #105bbf 0%, #0d4a9e 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.1;
            animation: zoomIn 20s infinite alternate;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #ffd966;
        }

        .stat-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255,255,255,0.95);
        }

        /* ===== PROCESS SECTION ===== */
        .process-section {
            padding: 50px 0;
            background: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .process-step {
            text-align: center;
            padding: 25px 20px;
            background: #f8fafc;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-5px);
            border-color: #105bbf;
            box-shadow: 0 15px 25px rgba(16,91,191,0.1);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 15px;
            transition: all 0.4s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(16,91,191,0.3);
        }

        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .process-step p {
            color: #64748b;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ===== CLIENTS SECTION (LOGO GRID) ===== */
        .clients-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            margin-top: 30px;
            align-items: center;
            justify-items: center;
        }

        .client-logo {
            background: white;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid #e2e8f0;
            width: 100%;
            max-width: 180px;
            margin: 0 auto;
            cursor: pointer;
        }

        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(16,91,191,0.1);
            border-color: #105bbf;
        }

        .client-logo img {
            width: 100%;
            max-width: 120px;
            height: auto;
            filter: grayscale(0%);
            transition: all 0.3s ease;
        }

        .client-logo:hover img {
            transform: scale(1.05);
        }

        .client-logo p {
            margin-top: 12px;
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 500;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-section {
            padding: 50px 0;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 25px 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(16,91,191,0.1);
            border-color: #105bbf;
        }

        .testimonial-rating {
            color: #ffd966;
            margin-bottom: 12px;
            font-size: 0.85rem;
        }

        .testimonial-rating i {
            margin-right: 2px;
        }

        .testimonial-content {
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 15px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-image {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 0.95rem;
            margin-bottom: 2px;
            font-weight: 600;
        }

        .author-info p {
            color: #64748b;
            font-size: 0.8rem;
        }

        /* ===== PRICING SECTION ===== */
        .pricing-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 15px;
        }

        .pricing-card {
            background: white;
            border-radius: 25px;
            padding: 30px 25px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 2px solid #105bbf;
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(16,91,191,0.15);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(16,91,191,0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.02) translateY(-8px);
        }

        .popular-badge {
            position: absolute;
            top: 12px;
            right: -30px;
            background: linear-gradient(135deg, #105bbf, #0d4a9e);
            color: white;
            padding: 5px 30px;
            font-size: 0.7rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .pricing-card h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .price {
            font-size: 2rem;
            font-weight: 700;
            color: #105bbf;
            margin-bottom: 5px;
        }

        .pricing-card p {
            color: #64748b;
            margin-bottom: 15px;
            font-size: 0.85rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
        }

        .pricing-features li i {
            color: #105bbf;
            font-size: 0.85rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 50px 0;
            background: #f9f9f9;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            max-width: 900px;
            margin: 15px auto 0;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
            overflow: hidden;
        }

        .faq-item:hover {
            border-color: #105bbf;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .faq-question {
            font-weight: 600;
            font-size: 0.9rem;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            border-bottom: 1px solid transparent;
        }

        .faq-item.active .faq-question {
            border-bottom-color: #eaeaea;
        }

        .faq-question i:first-child {
            color: #105bbf;
            font-size: 0.9rem;
            width: 18px;
        }

        .faq-question i:last-child {
            transition: all 0.3s ease;
            margin-left: auto;
            color: #888;
            font-size: 0.7rem;
        }

        .faq-item.active .faq-question i:last-child {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #555;
            font-size: 0.85rem;
            background: white;
        }

        .faq-item.active .faq-answer {
            padding: 0 15px 15px;
            max-height: 300px;
        }

        .faq-answer p {
            margin: 0;
            max-width: 100%;
            font-size: 0.85rem;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #105bbf 0%, #0d4a9e 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            opacity: 0.1;
            animation: zoomIn 20s infinite alternate;
        }

        .cta-box {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-box h2 {
            font-size: 2rem;
            margin-bottom: 12px;
            color: white;
            font-weight: 700;
        }

        .cta-box p {
            font-size: 1rem;
            margin-bottom: 20px;
            color: rgba(255,255,255,0.95);
            max-width: 100%;
        }

        .cta-box .btn-outline {
            border-color: white;
            color: white;
            font-size: 1rem;
            padding: 10px 30px;
        }

        .cta-box .btn-outline:hover {
            background: white;
            color: #105bbf;
        }

        /* ===== ANIMATION DELAYS ===== */
        .service-card:nth-child(1) { animation: fadeInUp 0.6s 0.1s both; }
        .service-card:nth-child(2) { animation: fadeInUp 0.6s 0.15s both; }
        .service-card:nth-child(3) { animation: fadeInUp 0.6s 0.2s both; }
        .service-card:nth-child(4) { animation: fadeInUp 0.6s 0.25s both; }
        .service-card:nth-child(5) { animation: fadeInUp 0.6s 0.3s both; }
        .service-card:nth-child(6) { animation: fadeInUp 0.6s 0.35s both; }
        .service-card:nth-child(7) { animation: fadeInUp 0.6s 0.4s both; }
        .service-card:nth-child(8) { animation: fadeInUp 0.6s 0.45s both; }
        .service-card:nth-child(9) { animation: fadeInUp 0.6s 0.5s both; }
        .service-card:nth-child(10) { animation: fadeInUp 0.6s 0.55s both; }
        .service-card:nth-child(11) { animation: fadeInUp 0.6s 0.6s both; }
        .service-card:nth-child(12) { animation: fadeInUp 0.6s 0.65s both; }

        .why-card:nth-child(1) { animation: fadeInUp 0.6s 0.1s both; }
        .why-card:nth-child(2) { animation: fadeInUp 0.6s 0.15s both; }
        .why-card:nth-child(3) { animation: fadeInUp 0.6s 0.2s both; }
        .why-card:nth-child(4) { animation: fadeInUp 0.6s 0.25s both; }
        .why-card:nth-child(5) { animation: fadeInUp 0.6s 0.3s both; }
        .why-card:nth-child(6) { animation: fadeInUp 0.6s 0.35s both; }

        .process-step:nth-child(1) { animation: fadeInUp 0.6s 0.1s both; }
        .process-step:nth-child(2) { animation: fadeInUp 0.6s 0.15s both; }
        .process-step:nth-child(3) { animation: fadeInUp 0.6s 0.2s both; }
        .process-step:nth-child(4) { animation: fadeInUp 0.6s 0.25s both; }

        .client-logo:nth-child(1) { animation: fadeInUp 0.5s 0.05s both; }
        .client-logo:nth-child(2) { animation: fadeInUp 0.5s 0.1s both; }
        .client-logo:nth-child(3) { animation: fadeInUp 0.5s 0.15s both; }
        .client-logo:nth-child(4) { animation: fadeInUp 0.5s 0.2s both; }
        .client-logo:nth-child(5) { animation: fadeInUp 0.5s 0.25s both; }
        .client-logo:nth-child(6) { animation: fadeInUp 0.5s 0.3s both; }
        .client-logo:nth-child(7) { animation: fadeInUp 0.5s 0.35s both; }
        .client-logo:nth-child(8) { animation: fadeInUp 0.5s 0.4s both; }
        .client-logo:nth-child(9) { animation: fadeInUp 0.5s 0.45s both; }
        .client-logo:nth-child(10) { animation: fadeInUp 0.5s 0.5s both; }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .services-grid,
            .why-choose-grid,
            .process-grid,
            .testimonials-grid,
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
                text-align: center;
            }
            
            .hero-content p {
                text-align: center;
            }
            
            .hero-features {
                justify-content: center;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section,
            .services-section,
            .why-choose-section,
            .stats-section,
            .process-section,
            .clients-section,
            .testimonials-section,
            .pricing-section,
            .faq-section,
            .cta-section {
                padding: 40px 0;
            }
            
            .hero-grid,
            .services-grid,
            .why-choose-grid,
            .process-grid,
            .testimonials-grid,
            .pricing-grid,
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 0.9rem;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-feature {
                width: 100%;
                justify-content: center;
            }
            
            .section-header {
                margin-bottom: 20px;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .section-header p {
                font-size: 0.9rem;
            }
            
            .service-card,
            .why-card,
            .process-step,
            .testimonial-card,
            .pricing-card {
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .faq-question {
                font-size: 0.85rem;
                padding: 10px 12px;
            }
            
            .cta-box h2 {
                font-size: 1.6rem;
            }
            
            .cta-box p {
                font-size: 0.9rem;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.5rem;
            }
            
            .section-header h2 {
                font-size: 1.4rem;
            }
            
            .form-card {
                padding: 20px;
            }
            
            .form-card h3 {
                font-size: 1.4rem;
            }
            
            .cta-box h2 {
                font-size: 1.4rem;
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .client-logo {
                padding: 15px;
            }
            
            .client-logo img {
                max-width: 80px;
            }
        }