  
        :root {
            --primary: #1e3a8a;
            --primary-light: #38bdf8;
            --primary-dark: #0369a1;
            --secondary: #14043a;
            --dark: #0f172a;
            --light: #f1f5f9;
            --accent: #0ea5e9;
            --white: #FFFFFF;
            --black: #121212;
            --gray: #F5F5F5;
            --dark-gray: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Hero Section */
        .service-hero {
            height: 70vh;
            min-height: 500px;
            width: 100%;
            background: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(135, 206, 235, 0.75) 100%), 
                        url('../images/wetransfer_blu-fashion_2025-07-31_0458/WOW00279-1280.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 0 5%;
            color: var(--white);
            position: relative;
            margin-top:20px;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.8rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content h1::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            margin-top: 15px;
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Service Showcase */
        .service-showcase {
            padding: 5rem 5%;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-family: 'Inter', sans-serif;
            color: #000;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0, 35, 102, 0.9), transparent);
            color: var(--white);
        }

        .service-overlay h3 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.3rem, 3vw, 1.8rem);
        }

        .service-content {
            padding: 2rem;
        }

        .service-content p {
            margin-bottom: 1.5rem;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .spec-item {
            display: flex;
            align-items: center;
            font-size: clamp(0.8rem, 1.2vw, 0.9rem);
        }

        .spec-icon {
            margin-right: 0.8rem;
            color: var(--accent);
            font-size: 1rem;
        }

        .cta-button {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--accent);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: clamp(0.9rem, 1.2vw, 1rem);
            text-align: center;
        }

        .cta-button:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Training Section */
        .training-section {
            padding: 5rem 5%;
            background-color: var(--gray);
        }

        .training-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 3rem;
            align-items: center;
        }

        .training-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .training-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .training-content h2 {
            font-family: 'Inter', sans-serif;
            color: #000;
            margin-bottom: 1.5rem;
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        .training-content p, .training-content li {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 5rem 5%;
            background-color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Scroll Animations */
        .scroll-animate {
            opacity: 0;
            transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
        }
        .scroll-up { transform: translateY(40px); }
        .scroll-down { transform: translateY(-40px); }
        .scroll-left { transform: translateX(-40px); }
        .scroll-right { transform: translateX(40px); }
        .scroll-animate.visible {
            opacity: 1;
            transform: translate(0,0);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .service-hero {
                height: 60vh;
                min-height: 400px;
            }
            
            .service-image, .gallery-item {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                height: 50vh;
                min-height: 350px;
                text-align: center;
            }
            
            .hero-content h1::after {
                margin: 15px auto 0;
            }
            
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .cta-button {
                margin: 0 auto;
                display: block;
                max-width: 200px;
            }
            
            .specs-grid {
                grid-template-columns: 1fr;
            }
            
            .training-container {
                grid-template-columns: 1fr;
            }
            
            .training-image {
                height: 300px;
                order: -1;
            }
        }

        @media (max-width: 576px) {
            .service-hero {
                height: 70vh;
                min-height: 300px;
            }
            
            .service-showcase, .training-section, .gallery-section {
                padding: 3rem 5%;
            }
            
            .service-image, .gallery-item {
                height: 180px;
            }
            
            .service-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 400px) {
            .service-hero {
                height: 60vh;
            }
            
            .service-image, .gallery-item {
                height: 150px;
            }
            
            .service-overlay {
                padding: 1rem;
            }
            
            .service-overlay h3 {
                font-size: 1.2rem;
            }
            
            .cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }
  
    