.elementor-127 .elementor-element.elementor-element-549a87f{--display:flex;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-24e7609 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--gray-700);
            overflow-x: hidden;
        }

 

        /* Hero Section */
        .hero {
            background: var(--gradient-hero);
            color: var(--white);
            padding: 20rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Image at the back */
        url('https://profitsolutions.com/wp-content/uploads/2025/06/cb3bf570-f310-48e6-bb10-b1b8e1e7a465.webp') top/cover no-repeat,

        /* Radial gradients for visual accents */
        radial-gradient(circle at 10% 80%, rgba(30, 64, 175, 0.7) 0%, transparent 0%),
        radial-gradient(circle at 50% 70%, rgba(16, 185, 129, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.5) 0%, transparent 100%),

        /* NEW: 45° linear gradient hard split between two colors for stronger overlay */
        linear-gradient(45deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(30, 64, 175, 0.5) 50%, rgba(30, 64, 175, 0.6) 100%);
        
    background-blend-mode: overlay, overlay, overlay, multiply;
    z-index: 0;
}





        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: white
            margin-bottom: 2rem;
            backdrop-filter: blur(50px);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
        }

        .hero-subtitle {
            font-size: 1.375rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            font-weight: 400;
            line-height: 1.6;
            color: var(--gray-300);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn-hero-primary {
            background: var(--gradient-secondary);
            color: white !important;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
            color: #fff !important;
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white !important;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

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

        /* Service Categories */
        .service-categories {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .categories-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .categories-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .categories-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .categories-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            
        }

        .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive, up to 3 per row */
    gap: 2rem;
    justify-items: center; /* Centers each card horizontally */
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
   
}

        .category-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border: 2px solid var(--gray-200);
            text-align: center;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }

        .category-icon {
            width: 4rem;
            height: 4rem;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--white);
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }

        .category-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .category-card p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .category-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .category-link:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-secondary);
            color: var(--white);
            padding: 6rem 2rem;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        .cta-button {
            background: var(--white);
            color: var(--secondary);
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

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

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section ul li a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-400);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .categories-title,
            .cta-title {
                font-size: 2rem;
            }

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

        /* Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }/* End custom CSS */