/* CSS extracted from all-services.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }



        /* Hero Section */
        .hero-section {
            padding: 1rem 0 1rem;
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            color: white;
            position: relative;
            overflow: hidden;
        }

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

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: normal;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #bfdbfe;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Floating background elements */
        .floating-elements {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Services Section */
        .services-section {
            padding: 1rem 0;
            background: #f8fafc;
        }

        .services-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-top: 3rem;
            max-width: none;
        }

        .service-card {
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            height: 280px;
            width: 100%;
            cursor: pointer;
            display: flex;
            align-items: flex-end;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 40px rgba(0, 0, 0, 0.15);
        }

        .service-title-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            background: white;
            padding: 1.5rem;
            z-index: 2;
            border-radius: 0 0 2rem 2rem;
        }

        /* Blue variant - Full image background with name at bottom */
        .service-card.blue-variant .service-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1f2937;
            text-align: center;
            margin: 0;
        }

        /* Yellow variant - Full image background with name at bottom */
        .service-card.yellow-variant .service-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1f2937;
            text-align: center;
            margin: 0;
        }

        /* Explore Button Styles */
        .explore-button {
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .explore-button.blue-variant {
            background: white;
            color: #1d4ed8;
            border: 2px solid white;
        }

        .explore-button.blue-variant:hover {
            background: transparent;
            color: white;
            border-color: white;
        }

        .explore-button.yellow-variant {
            background: #1e3a8a;
            color: white;
            border: 2px solid #1e3a8a;
        }

        .explore-button.yellow-variant:hover {
            background: transparent;
            color: #1e3a8a;
            border-color: #1e3a8a;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            text-align: center;
            color: white;
        }

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

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            color: #bfdbfe;
            margin-bottom: 3rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .cta-btn-primary {
            background: #FDC30B;
            color: #1e3a8a;
            padding: 1rem 3rem;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        .cta-btn-primary:hover {
            background: #fcd34d;
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 3rem;
            border: 2px solid white;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .cta-btn-secondary:hover {
            background: white;
            color: #1e3a8a;
        }



        /* Responsive Design */
        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-container {
                padding: 0 1rem;
            }

            .hero-section {
                padding: 4rem 0 3rem;
            }

            .services-section {
                padding: 3rem 0;
            }

            .cta-section {
                padding: 3rem 0;
            }
        }

        @media (min-width: 769px) and (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1201px) and (max-width: 1400px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 2.5rem;
            }
        }

        /* SVG Icons */
        .icon {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }
