/* 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: #202020;
            min-height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }



        /* Hero Section */
        .hero-section {
            padding: 1rem 0 1rem;
            background: linear-gradient(90deg, #008AFF 0%, #48D6FF 100%);
            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: clamp(3rem, 6vw, 5rem);
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: normal;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #EDFBFF;
            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: #FAFAFA;
        }

        .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 {
            background: white;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            perspective: 1000px;
            height: 280px;
            width: 100%;
            cursor: pointer;
        }

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

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

        .service-card-front,
        .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 2rem;
            overflow: hidden;
        }

        .service-card-back {
            transform: rotateY(180deg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .service-card-back .service-icon {
            font-size: 6rem;
            margin-bottom: 1rem;
        }

        .service-card-back .service-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Blue variant - Image with blue background */
        .service-card.blue-variant .service-image-container {
            background: linear-gradient(90deg, #008AFF 0%, #48D6FF 100%);
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-card.blue-variant .service-image-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .service-card.blue-variant .service-icon {
            font-size: 4rem;
            z-index: 2;
            position: relative;
        }

        .service-card.blue-variant .service-content {
            padding: 1rem 1rem 0;
            display: flex;
            flex-direction: column;
            height: calc(100% - 100px);
        }

        .service-card.blue-variant .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #202020;
            margin-bottom: 1rem;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .service-card.blue-variant .service-details {
            background: #48D6FF;
            padding: 1rem 1.5rem 2rem;
            border-radius: 1rem;
            margin: auto -2rem 0;
            margin-top: auto;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-card.blue-variant .service-buddy {
            font-weight: 600;
            color: #0E365D;
            margin-bottom: 0.5rem;
        }

        .service-card.blue-variant .service-duration {
            color: #0E365D;
            font-size: 0.9rem;
        }

        /* Yellow variant - Image with yellow background */
        .service-card.yellow-variant .service-image-container {
            background: linear-gradient(135deg, #48D6FF, #48D6FF);
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-card.yellow-variant .service-image-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .service-card.yellow-variant .service-icon {
            font-size: 4rem;
            color: #0E365D;
            z-index: 2;
            position: relative;
        }

        .service-card.yellow-variant .service-content {
            padding: 1rem 1rem 0;
            display: flex;
            flex-direction: column;
            height: calc(100% - 100px);
        }

        .service-card.yellow-variant .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #202020;
            margin-bottom: 1rem;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .service-card.yellow-variant .service-details {
            background: linear-gradient(90deg, #008AFF 0%, #48D6FF 100%);
            padding: 1rem 1.5rem 2rem;
            border-radius: 1rem;
            margin: auto -2rem 0;
            margin-top: auto;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-card.yellow-variant .service-buddy {
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .service-card.yellow-variant .service-duration {
            color: #EDFBFF;
            font-size: 0.9rem;
        }

        /* 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: #0E365D;
            border: 2px solid white;
        }

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

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

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

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(90deg, #008AFF 0%, #48D6FF 100%);
            text-align: center;
            color: white;
        }

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

        .cta-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

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

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

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

        .cta-btn-primary:hover {
            background: #48D6FF;
            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.25rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .cta-btn-secondary:hover {
            background: white;
            color: #0E365D;
        }



        /* 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;
        }
