:root {
            --primary-color: #ffffff;
            --color-red: #E63946;
            --color-blue: #457B9D;
            --color-green: #588157;
            --color-yellow: #FFB703;
            --light-background: #F1FAEE;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Lato', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--color-blue);
            background-color: var(--light-background);
            background-image: url('images/background-blur.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-position: center center;
        }

        h1, h2, h3 { font-family: var(--font-heading); }

        /* NAVIGATION */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background: rgba(84, 164, 238, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: background 0.4s, box-shadow 0.4s, transform 0.3s ease-in-out;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }



        .navbar-hidden {
            transform: translateY(-100%);
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            font-family: var(--font-heading);
        }

        .logo-img {
            height: 90px;
            margin-right: 0.5rem;
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-text {
            line-height: 1.2;
        }

        .logo-slogan {
            font-size: 0.65rem;
            text-align: right;
            font-weight: 700;
            font-family: var(--font-heading);
            color: var(--color-red);
            margin-top: -5px;
        }

        .nav-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .top-nav-bar {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 0.5rem;
        }

        


        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .social-links a:hover {
            transform: scale(1.15);
        }

        .burger {
            display: none;
            cursor: pointer;
            
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .burger div {
            background-color: var(--color-blue);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: var(--color-yellow);
        }

        .navbar.scrolled .nav-links li a {
            color: var(--color-blue);
        }

        .navbar.scrolled .nav-links li a:hover {
            color: var(--color-red);
        }

        .btn-contact {
            padding: 0.5rem 1.5rem;
            background: var(--color-red);
            color: white !important;
            border-radius: 4px;
            font-weight: 700;
            transition: background 0.3s;
        }

        .btn-contact:hover {
            background: var(--color-green);
        }

        /* HERO SECTION */
        header {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .slide.active {
            opacity: 1;
        }

        .hero-content {
            position: absolute;
            z-index: 50;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            max-width: 1200px;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 3px 10px rgba(0,0,0,0.7);
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 1rem 2.5rem;
            background: var(--color-red);
            color: white;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
            border-radius: 5px;
            font-size: 1.1rem;
            display: inline-block;
        }

        .cta-button:hover {
            background: var(--color-blue);
            transform: scale(1.05);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--color-blue);
        }

        /* TRUST BADGES */
        .trust-section {
            background: white;
            padding: 2rem 5%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .trust-badges {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .trust-badge {
            padding: 1rem;
        }

        .trust-badge i {
            font-size: 2.5rem;
            color: var(--color-blue);
            margin-bottom: 0.5rem;
        }

        .trust-badge h3 {
            font-size: 1.8rem;
            color: var(--color-red);
            margin-bottom: 0.25rem;
        }

        .trust-badge p {
            color: #666;
            font-size: 0.95rem;
        }

        /* COMMISSIONED BY SECTION */
        .commissioned-section {
            background-color: #f8f9fa;
            padding: 2rem 5%;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .commissioned-title {
            font-family: var(--font-heading);
            color: #666;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
        }

        .commissioned-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .commissioned-logos img {
            height: 60px; /* Consistent height for logos */
            width: auto;
            filter: grayscale(100%); /* Professional grayscale look */
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .commissioned-logos img:hover {
            filter: grayscale(0%); /* Color on hover */
            opacity: 1;
            transform: scale(1.05);
        }

        /* USP SECTION */
        .usp-section {
            padding: 4rem 5%;
            background: rgba(255,255,255,0.7);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--color-blue);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--color-yellow);
            margin: 10px auto 0;
        }

        .usp-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .usp-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .usp-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .usp-card i {
            font-size: 3.5rem;
            color: var(--color-green);
            margin-bottom: 1rem;
        }

        .usp-card h3 {
            font-size: 1.5rem;
            color: var(--color-blue);
            margin-bottom: 1rem;
        }

        .usp-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .card-link {
            display: inline-block;
            margin-top: 1rem;
            color: var(--color-red);
            font-weight: 700;
            text-decoration: none;
            transition: color 0.3s;
        }

        .card-link:hover {
            color: var(--color-blue);
        }

        .card-link i {
            font-size: 0.9rem;
            margin-left: 5px;
        }

        /* TESTIMONIALS */
        .testimonials-section {
            padding: 4rem 5%;
            background: var(--color-blue);
            color: white;
        }

        .testimonials-section .section-title {
            color: white;
        }

        .testimonials-section .section-title::after {
            background: var(--color-yellow);
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial {
            background: rgba(255,255,255,0.1);
            padding: 2.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 5px solid var(--color-yellow);
        }

        .testimonial p {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--color-yellow);
        }

        /* CTA SECTION */
        .cta-section {
            padding: 4rem 5%;
            background: var(--color-yellow);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: var(--color-blue);
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 2rem;
        }

        .cta-section .cta-button {
            background: var(--color-blue);
        }

        .cta-section .cta-button:hover {
            background: var(--color-red);
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 2rem;
            background: #222;
            color: #888;
        }

        /* MOBILE */
        @media screen and (max-width: 768px) {
            .burger {
                display: block;
            }

             .navbar {
                    flex-direction: column; /* Stack logo and nav-wrapper */
                    align-items: flex-start; /* Align items to the left */
                }

                .logo {
                    margin-bottom: 1rem; /* Space between logo and nav items */
                }

                .nav-wrapper {
                    width: 100%; /* Allow wrapper to take full width */
                    align-items: flex-start; /* Align its content left */
                }

                .social-links {
                    justify-content: flex-start; /* Align social icons to the left */
                    padding-right: 0;
                }

            .top-nav-bar {
                flex-direction: column;
                align-items: flex-end;
                gap: 0.75rem;
            }

            .nav-links {
                position: absolute;
                right: 0;
                height: 92vh;
                top: 100px;
                background-color: var(--color-yellow);
                flex-direction: column;
                align-items: center;
                width: 70%;
                transform: translateX(100%);
                transition: transform 0.5s ease-in;
                padding-top: 2rem;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links li a {
                color: var(--color-blue);
            }

            .nav-active {
                transform: translateX(0%);
            }

            .toggle .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .toggle .line2 {
                opacity: 0;
            }

            .toggle .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero-content {
                top: 60%; /* Push content down on mobile to clear the navbar */
            }

            .hero-content h1 {
                font-size: 1.8rem; /* Reduced size for better mobile fit */
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .trust-badges {
                grid-template-columns: 1fr;
            }

            .usp-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem; /* Reduce section titles on mobile */
            }
        }

        /* On mobile, move it inside the slide-out menu */
@media screen and (max-width: 768px) {
    .nav-contact-badge {
        /* Reset desktop positioning */
        position: static;
        transform: none;

        /* Place it at the top of the mobile menu */
        order: -1; 
        margin: 0 0 1.5rem 0;
        justify-content: center;
        width: 100%;
    }
}

/* On smaller mobile screens, hide it from the main bar to prevent overlap */
@media screen and (max-width: 768px) {
    .navbar > .nav-contact-badge {
        display: none;
    }
    
    /* And ensure it's visible inside the opened menu */
    .nav-wrapper .nav-contact-badge {
        display: flex;
    }
}

/* --- 8. MOBILE RESPONSIVE --- */
@media screen and (max-width: 768px) {
    body { overflow-x: hidden; }
    .nav-links {
        margin-top: 0; 
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 0; /* This was pushing the menu down too far */
        background-color: var(--color-yellow);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%; /* **Increased width for better menu readability** */
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1000;
    }
   
    .nav-links li a {
        color: var(--color-blue); /* **Ensure dark links on white mobile menu** */
    }
    
        .burger { 
        display: block; 
        margin-right: 0; 
        /* ADD THIS FOR VERTICAL ADJUSTMENT */
        position: relative; 
        top: 15px; /* Adjusts the burger 25px down relative to its normal position */
        /* You may need to tweak the 25px value. 
           Start with 25px and increase or decrease until it centers 
           between the top and bottom of your 100px logo area. */
    }/* Adjusted margin for better spacing */
    
    .nav-active { transform: translateX(0%); }
    
    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }
    
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1.1rem; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .about-text { order: 2; } /* **Text below image on mobile** */
    .about-image { order: 1; }
}

        /* Links Styling --- */
.social-links {
    display: flex;
    justify-content: flex-end; /* Align to the right */
    width: 100%;
    padding-right: 1.5rem; /* Match the contact button's padding */
    margin-bottom: 1rem; /* Space between social and nav links */
    gap: 0.75rem;
}

.social-links a {
    color: white; /* Default white color for transparent navbar */
    font-size: 2rem; /* Large size for visibility */
    transition: color 0.3s, transform 0.3s;
    text-decoration: none; /* Ensure no underline */
    padding-right: 1rem;
}

/* Hover effects for a fun look */
.social-links a:hover {
    transform: scale(1.15); /* Pop out on hover */
}

/* Specific color hover effects (optional but recommended for flair) */
.social-links a .fa-instagram:hover {
    color: #C13584; /* Instagram's brand color */
}

.social-links a .fa-facebook-f:hover {
    color: #4267B2; /* Facebook's brand color */
}


/* If you have a dark navbar, ensure the icons are white */
/* Example for a dark navbar background: */
.navbar[style*="background: #222"] .social-links a {
    color: white; 
}

        /* --- NEW: Full-Width Banner Style for #about --- */

/* 1. Force the section to stretch edge-to-edge and apply color/text styles */
.about-banner-style {
    /* Use the color-blue for a striking, full-width background */
    background-color: var(--color-blue); 

    text-align: center;
    color: var(--primary-color); /* White text for contrast */
}

/* 2. Hide the original section title, as the banner text is the main title */
.about-banner-style .section-title {
    display: none;
}

/* 3. Style the content inside the banner */
.banner-content {
    /* Set a max-width to keep the text readable, even if the banner is full-width */
    max-width: 1400px; 
    margin: 0 auto;
}

/* 4. Make the text big and bold horizontally */
.banner-content p {
    font-size: 2rem; /* Larger font size */
    font-weight: 700; /* Bold text */
    line-height: 1.5;
    /* Optional: Slightly reduce letter spacing for aesthetic on large banners */
    letter-spacing: 0.5px; 
}

/* Cleanup: Remove old grid styles for the about section */
.about-grid {
    /* These styles are no longer needed for the banner layout */
    display: block; /* Override grid layout */
    padding: 0;
    box-shadow: none;
    background: transparent;
}



/* --- NEW: Retro Game Easter Egg --- */

/* 1. The link container for the logo */
.retro-game-logo {
    position: fixed; /* Stays in place on scroll */
    z-index: 9999;   /* Sits on top of almost everything */
    
    /* Start hidden and non-interactive */
    opacity: 0;
    pointer-events: none;
    
    /* Smooth fade transition */
    transition: opacity 0.7s ease-in-out;
    
    /* Add a subtle drop shadow for effect */
    filter: drop-shadow(0 0 10px rgba(0, 209, 255, 0.7));
}

/* 2. The class to make it visible */
.retro-game-logo.visible {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

/* 3. Style the image itself */
.retro-game-logo img {
    width: 50px;  /* Adjust size as needed */
    height: auto;
}

.nav-contact-badge {
    /* Center the badge in the available space on desktop */
    position: absolute;
    left: 70%;
    transform: translateX(-0%);
    display: flex;
    align-items: center;
    /* Ensure it doesn't get hidden behind other elements */
    z-index: 1;
}

.nav-contact-badge a {
    background-color: var(--color-yellow);
    color: var(--color-blue);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border: 2px solid transparent;
}

.nav-contact-badge a:hover {
    background-color: #fff;
    border-color: var(--color-yellow);
    transform: scale(1.05);
}

.nav-contact-badge a i {
    margin-right: 8px;
}

/* On mobile, move it inside the slide-out menu */
@media screen and (max-width: 768px) {
    .nav-contact-badge {
        /* Reset desktop positioning */
        position: static;
        transform: none;

        /* Place it at the top of the mobile menu */
        order: -1; 
        margin: 0 0 1.5rem 0;
        justify-content: center;
        width: 100%;
    }
}

/* On smaller mobile screens, hide it from the main bar to prevent overlap */
@media screen and (max-width: 768px) {
    .navbar > .nav-contact-badge {
        display: none;
    }
    
    /* And ensure it's visible inside the opened menu */
    .nav-wrapper .nav-contact-badge {
        display: flex;
    }
}


/* --- 7. LIGHTBOX (No changes needed) --- */
.lightbox {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0;
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.9); 
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
}
.close {
    position: absolute;
    top: 20px; right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/* Gallery (No changes needed) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* Added subtle shadow */
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.subtitle { text-align: center; margin-bottom: 2rem; color: #777; }