/* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: white;
            padding: 20px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 28px;
            font-weight: 700;
        }

        .logo-icon {
            width: 35px;
            height: 35px;
            background: #22c55e;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #22c55e;
        }

        .cta-btn {
            background: #22c55e;
            color: white !important;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .cta-btn:hover {
            background: #16a34a;
        }

        /* Hero Section */
        /* .hero {
          background: 
        linear-gradient(to right, rgba(30, 64, 175, 0.85) 0%, rgba(30, 64, 175, 0) 70%),
        url('images/d7b5f0f090051966b9242bd04f413a4dd8c33e62.jpg');
            padding: 100px 80px;
            position: relative;
            overflow: hidden;
            background-size: cover;
        } */

        .hero {
    position: relative;
    padding: 100px 80px;

    background-image: 
        linear-gradient(to right, rgba(30, 64, 175, 0.85) 0%, rgba(30, 64, 175, 0) 60%),
        url('images/d7b5f0f090051966b9242bd04f413a4dd8c33e62.jpg');

    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat;
}

        .hero-content {
            max-width: 600px;
            color: white;
        }

        .hero h1 {
            font-size: 56px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero h1 .highlight {
            text-decoration: underline;
            text-decoration-color: white;
            text-decoration-thickness: 3px;
        }

        .hero-subtitle {
            font-size: 22px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }

        .trust-icon {
            color: #22c55e;
            font-size: 20px;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 40px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 5px;
        }

        /* Services Section */
        .services {
            padding: 80px 80px;
            background: #f9fafb;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 60px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .service-card:nth-child(1) .service-icon {
            background: #dbeafe;
            color: #3b82f6;
        }

        .service-card:nth-child(2) .service-icon {
            background: #d1fae5;
            color: #10b981;
        }

        .service-card:nth-child(3) .service-icon {
            background: #e9d5ff;
            color: #a855f7;
        }

        .service-card:nth-child(4) .service-icon {
            background: #fed7aa;
            color: #f97316;
        }

        .service-card:nth-child(5) .service-icon {
            background: #ccfbf1;
            color: #14b8a6;
        }

        .service-card:nth-child(6) .service-icon {
            background: #fecdd3;
            color: #f43f5e;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .learn-more {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .learn-more:hover {
            gap: 10px;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 80px 80px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .why-content {
            color: white;
        }

        .why-content h2 {
            font-size: 48px;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .feature {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
        }

        .feature-text h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .feature-text p {
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Clients Section */
        .clients {
            padding: 80px 80px;
            background: white;
        }

        .client-logos {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto 60px;
            align-items: center;
        }

        .client-logo {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s;
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .client-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        /* Industries Section */
        .industries {
    padding: 80px 80px 40px;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
    font-size: 28px;
    font-weight: 600;
}


        /* Testimonials */
        .testimonials {
            padding: 80px 80px;
            background: #f9fafb;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .testimonial-header {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e5e7eb;
        }

        .testimonial-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .testimonial-info p {
            font-size: 13px;
            color: #6b7280;
        }

        .testimonial-text {
            color: #374151;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .stars {
            color: #fbbf24;
            font-size: 18px;
        }

        /* Blog Section */
        .blog {
            padding: 80px 80px;
            background: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-content h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .blog-content p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .read-more {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 80px;
             padding: 80px 0;     
            background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 22px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-button {
            background: white;
            color: #3b82f6;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Footer */
 footer {
    background: #111;
    color: white;
    padding: 60px 80px 40px;
    width: 100%;
}

/* MAIN GRID — 4 columns */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* BRAND SECTION */
.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 35px;
    height: 35px;
    background: #3b82f6;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* SOCIAL ICONS */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #3b82f6;
}

/* COLUMN HEADINGS */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

/* LIST ITEMS */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

/* CONTACT INFO */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    margin-bottom: 10px;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 25px;
    margin-top: 40px;

    max-width: 1400px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}



/* RESPONSIVE — Tablets */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
        /* Responsive Styles */
        @media (max-width: 1024px) {
            header, .hero, .services, .why-choose, .clients, .industries, .testimonials, .blog, .cta-section, footer {
                padding-left: 40px;
                padding-right: 40px;
            }

            .services-grid, .industries-grid, .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-choose {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .services-grid, .industries-grid, .testimonials-grid, .blog-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 36px;
            }

            nav {
                display: none;
            }
        }


.feature-icon{
    background-color: #f2f2f2;
}
.feature-icon i {
    font-size: 32px;
    color: #2563eb;  /* Blue theme */
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-text h3 {
    margin-bottom: 8px;
}
