        body {
            min-height: 100vh;

            background: rgb(252, 250, 250);

            margin: 0;
            padding: 0;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        .hero-section {
            position: relative;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-bottom: 50px;
        }

        /* Hero image now in HTML */
        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-content {
            z-index: 3;
            position: relative;
            justify-content: center;
            background: rgba(56, 56, 56, 0.6);
            border-radius: 15px;

            padding: 0 60px 0 60px;
            backdrop-filter: blur(1.1px);
            box-shadow: 0 20px 50px rgba(35, 35, 35, 0.5);
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to right, #fff, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out forwards, glow 2s infinite alternate;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glow {
            from {
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            }

            to {
                text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
            }
        }

        .hero-content p {
            display: none;
        }

        .hero-buttons {
            margin-top: 20px;
        }



        .section {
            padding: 10px;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 50px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 60px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin: 15px auto 0;
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
        }

        .two-column {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }



        .image-block {
            flex: 1 1 450px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            position: relative;
        }

        .image-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .image-block:hover {
            transform: translateY(-20px);
            border: #1e293b 1px solid;
        }

        .image-block:hover::before {
            opacity: 1;
        }

        .image-block img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .image-block:hover img {
            transform: scale(1.05);
        }

        .text-block {
            flex: 1 1 500px;
            position: relative;
        }

        .text-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: -20px;
            width: 5px;
            height: 100px;
            background: linear-gradient(to bottom, #667eea, #764ba2);
            border-radius: 5px;
        }

        .text-block h2 {
            font-size: 2.2rem;
            color: #1e293b;
            margin-bottom: 25px;
            position: relative;
            padding-left: 10px;
        }

        .text-block p {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            text-justify: inter-word;
            /* Distributes spaces between words, not letters */
            hyphens: auto;
        }


        .cta-section {
            background: royalblue;
            color: white;
            text-align: center;
            padding-bottom: 70px;
            margin: 50px 0 50px 0;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.15);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.3;
        }

        .cta-section h2 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            position: relative;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            z-index: 2;
        }

        .cta-section p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 50px;
            opacity: 0.95;
            position: relative;
            font-weight: 500;
            z-index: 2;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            z-index: 2;
            position: relative;
        }

        .btn {
            position: relative;
            padding: 12px 30px;
            font-size: 1.5rem;
            font-weight: 600;
            border: 2px solid transparent;
            border-radius: 50px;
            text-decoration: none;
            background-color: transparent;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
        }

        /* Common fill animation */
        .btn::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0%;
            z-index: -1;
            transition: width 0.4s ease;
            border-radius: inherit;
        }


        /* Button 2: Contact Us - Aqua Blue */
        .btn-secondary {
            border-color: #4ef1e2;
            color: #4ef1e2;
        }

        .btn-secondary::before {
            background: #4ef1e2;
        }

        .btn-secondary:hover::before {
            width: 100%;
        }

        .btn-secondary:hover {
            color: #1a1a1a;
        }


        .values-list {
            list-style: none;
            padding: 0;
        }

        .values-list li {
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .values-list li:hover {
            transform: translateX(10px);
            border-bottom: 1px solid #667eea;
        }

        .values-list li:last-child {
            border-bottom: none;
        }

        .values-list i {
            color: #667eea;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
            transition: all 0.3s ease;
        }

        .values-list li:hover i {
            transform: scale(1.2);
            color: #764ba2;
        }

        .values-content {
            flex: 1;
        }

        .values-content h3 {
            font-size: 1.4rem;
            color: #1e293b;
            margin-bottom: 10px;
        }


        .values-content p {
            flex: 1 1 45%;
            color: #64748b;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            font-style: normal;
            line-height: 1.6;
            text-justify: inter-word;
            /* Distributes spaces between words, not letters */
            hyphens: auto;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }



        /* === Global adjustments for all devices === */
        body {
            font-size: 16px;
        }

        .hero-section {
            height: 60vh;
            /* reduce on smaller screens via media queries */
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 2rem;
            /* adjust for smaller screens */
        }

        /* Two-column layout adjustments */
        .two-column {
            flex-wrap: wrap;
        }



        /* Feature card text */
        .feature-card h3 {
            font-size: 1.3rem;
        }

        .feature-card p {
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section h2 {
            font-size: 2.2rem;
        }

        .cta-section p {
            font-size: 1rem;
        }

        /* Values Section */
        .values-content p {
            font-size: 1rem;
        }

        /* === Media Queries === */
        /* === Small devices: phones (≤480px) === */
        @media (max-width: 480px) {

            /* Hero Section */
            .hero-section {
                height: 35vh;
                padding: 0 15px;
            }

            .hero-content {
                padding: 15px 20px;
            }

            .hero-content h1 {
                font-size: 1.6rem;
                line-height: 1.3;
            }

            /* Two-column layout */
            .two-column {
                flex-direction: column;
                gap: 25px;
            }

            /* Images */
            .image-block img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }

            /* Text block */
            .text-block h2 {
                font-size: 1.6rem;
            }

            .text-block p {
                font-size: 0.95rem;
            }

            /* Features Grid */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card h3 {
                font-size: 1.2rem;
            }

            .feature-card p {
                font-size: 0.95rem;
            }

            /* CTA Section */
            .cta-section h2 {
                font-size: 1.8rem;
            }

            .cta-section p {
                font-size: 0.95rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* === Medium devices: tablets (≤780px) === */
        @media (max-width: 780px) {

            /* Hero Section */
            .hero-section {
                height: 50vh;
                padding: 0 20px;
            }

            .hero-content {
                padding: 20px 30px;
            }

            .hero-content h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            /* Two-column layout */
            .two-column {
                flex-direction: column;
                gap: 35px;
            }

            /* Images */
            .image-block img {
                width: 100%;
                height: auto;
            }

            /* Text block */
            .text-block h2 {
                font-size: 1.9rem;
            }

            .text-block p {
                font-size: 1.05rem;
            }

            /* Features Grid */
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
            }

            .feature-card h3 {
                font-size: 1.3rem;
            }

            .feature-card p {
                font-size: 1rem;
            }

            /* CTA Section */
            .cta-section h2 {
                font-size: 2.2rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
            }
        }

        /* Large devices: mini laptops (≤ 1024px) */
        @media (max-width: 1024px) {
            .hero-section {
                height: 60vh;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .image-block img {
                height: 450px;
            }

            .text-block h2 {
                font-size: 2.1rem;
            }

            .cta-section h2 {
                font-size: 2.5rem;
            }

            .cta-section p {
                font-size: 1.2rem;
            }
        }

        /* Extra large screens: desktops (> 1200px) */
        @media (min-width: 1200px) {
            .hero-section {
                height: 70vh;
            }

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

            .image-block img {
                height: 400px;
            }

            .text-block h2 {
                font-size: 2.2rem;
            }

            .cta-section h2 {
                font-size: 3.2rem;
            }

            .cta-section p {
                font-size: 1.4rem;
            }
        }