:root {
            --primary-glow: rgba(228, 93, 248, 0.6);
            --secondary-glow: rgba(93, 211, 248, 0.6);
            --bg-dark: #0b021a;
            --bg-light: #1a0537;
            --text-color: #e0e0e0;
            --text-light: #b0a8c2;
            --accent-color: #e45df8;
            --glass-bg: rgba(26, 5, 55, 0.35);
            --glass-border: rgba(255, 255, 255, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-dark);
            background-image: radial-gradient(circle at 10% 20%, var(--primary-glow), transparent 40%),
                              radial-gradient(circle at 90% 80%, var(--secondary-glow), transparent 45%);
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: var(--text-color);
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 0;
        }

        /* --- Glassmorphism Effect --- */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            padding: 20px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
        }

        .mobile-menu-icon {
            display: none; /* Hidden on desktop */
            font-size: 28px;
            background: none;
            border: none;
            color: white; /* Or your desired color */
            cursor: pointer;
            z-index: 1001; /* Ensure it's clickable above other elements */
        }

        /* --- Header --- */
        .header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1300px;
            z-index: 1000;
            padding: 10px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            flex-shrink: 0;
        }
        .logo-img {
            height: 55px;
            width: auto;
        }
        
        .header nav ul {
            display: flex;
            align-items: center;
            list-style: none;
        }
        
        .header nav ul li a, .header nav ul li {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 0.8vw;
            border-radius: 50px;
            transition: color 0.3s ease, background-color 0.3s ease;
            cursor: pointer;
        }

        .header nav ul li a:hover, .header nav ul li:hover {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-icon {
            width: 20px;
            height: 20px;
        }

        .contact-us-btn {
            background: none;
            border-color:transparent;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-us-btn:hover{
            filter: drop-shadow(1px 1px 21px #ff53cadb) 
        }
        
        .contact-us-btn img {
            height: 50px;
            width: auto;
        }

        .mobile-menu-icon { display: none; }

        /* --- Hero Section --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
            width: 100%;
        }

        .hero-content {
            text-align: left;
            padding-left:20px;
            padding-right:20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, #d1c4e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        
        .hero-content h1 .highlight {
             background: linear-gradient(90deg, var(--accent-color), var(--secondary-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 40px;
        }
        
        .hero-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 550px;
            position:relative;
            left:0px;
            transform: translateX(100px);/* Added to contain stacked images */
        }
        
        .hero-image {
            position: absolute; /* Changed for stacking */
            max-width: 160px;
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
            transition: transform 0.1s linear;
             /* Smoother transition for JS updates */
        }
        
        #hero-img-1 {
            z-index: 3;
            transform: rotate(-4deg); /* Initial tilt */
        }
        #hero-img-2 {
            z-index: 2;
            transform-origin: bottom center;
        }
        #hero-img-3 {
            z-index: 1;
            transform-origin: bottom center;
        }
        

        .cta-button-hero {
            display: inline-block;
            background: linear-gradient(90deg, var(--accent-color), #8a3ffc);
            color: #fff;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 25px rgba(228, 93, 248, 0.4);
        }

        .cta-button-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(228, 93, 248, 0.6);
        }
        
        /* --- Shared Section Styles --- */
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 60px;
            font-weight: 700;
             background: linear-gradient(90deg, #fff, var(--text-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* --- How It Works Section --- */
        .how-it-works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .step-card {
            position: relative;
        }
        .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 2px solid var(--glass-border);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--accent-color);
            font-weight: 700;
        }
        .step-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
        .step-card p { color: var(--text-light); line-height: 1.6; }

        /* --- Features Section --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card { text-align: center; }
        .feature-card .icon { font-size: 3rem; margin-bottom: 20px; color: var(--accent-color); }
        .feature-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
        .feature-card p { color: var(--text-light); line-height: 1.6; }

        /* --- Gallery Section --- */
        .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0px; }
        .gallery-item img {
            width: 100%; height: 50%; object-fit: contain;
            border-radius: 15px; transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .gallery-item img:hover { transform: scale(1.05);  }

        .gallery-item{
            margin-bottom:-500px;
        }
        /* --- CTA Section --- */
        .cta-section {
            text-align: center;
            margin-top:-100px;
        }
        .cta-card {
            max-width: 800px;
            margin: 0 auto;
        }
        .cta-card h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        .cta-card p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* --- Footer --- */

        .reddit{
            filter:invert();
            scale:0.8;
        }

        .youtube{
            scale:0.85;
        }
        
        .footer {
            background-color: rgba(0,0,0,0.2);
            padding: 80px 0 20px;
        }
        .footer-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* FAQ in Footer */
        .faq-item { border: 1px solid var(--glass-border); border-radius: 10px; margin-bottom: 15px; overflow: hidden; }
        .faq-question {
            width: 100%; background: none; border: none; text-align: left; padding: 20px;
            font-size: 1.2rem; font-weight: 600; color: var(--text-color); cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
        }
        .faq-question::after { content: '+'; font-size: 1.8rem; transition: transform 0.3s ease; }
        .faq-answer {
            max-height: 0; overflow: hidden; padding: 0 20px; color: var(--text-light);
            line-height: 1.7; transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-item.active .faq-answer { max-height: 300px; padding: 0 20px 20px; }
        .faq-item.active .faq-question::after { transform: rotate(45deg); }

        /* Main Footer content */
        .footer-main {
            text-align: center;
            padding: 60px 0;
            border-top: 1px solid var(--glass-border);
            margin-top: 60px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        .footer-link-btn {
            background: none; border: none; cursor: pointer;
        }
        .footer-link-btn img {
            height: 40px; width: auto; transition: transform 0.3s ease;
        }
        .footer-link-btn:hover img {
            transform: scale(1.1);
        }
        .footer-logo {
            max-width: 250px;
            margin: 0 auto 30px;
        }
        .find-us-img {
            max-width: 150px;
            margin: 0 auto 20px;
            margin-top:10px;
        }
        .social-links { display: flex; justify-content: center; gap: 25px; margin-bottom: 30px; margin-right:10px; }
        .social-links a { display: inline-block; transition: transform 0.3s ease; }
        .social-links a:hover { transform: scale(1.15); }
        .social-links img { height: 40px; }
        .footer-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; max-width: 600px; margin: 0 auto; }
        
        .footer-actions {
            display: flex; justify-content: center; gap: 20px; margin-top: 50px; flex-wrap: wrap;
        }
        .footer-action-btn {
            background: var(--glass-bg); border: 1px solid var(--glass-border);
            border-radius: 12px; padding: 15px 25px; color: #fff; cursor: pointer;
            text-decoration: none; text-align: center; width: 300px;
            transition: background-color 0.3s, transform 0.3s;
        }
        .footer-action-btn:hover { background-color: var(--bg-light); transform: translateY(-5px); }
        .footer-action-btn strong { font-size: 1.2rem; display: block; margin-bottom: 5px; }
        .footer-action-btn p { font-size: 0.8rem; color: var(--text-light); }

        @media (max-width:1340px){
           .hero-image-container{
               width:400px;
           }
        }
        
        /* --- Responsive Design --- */
        @media (max-width: 1160px) {
            .header nav ul { display: none; }
            .header nav > ul {
                display: none; /* Hide the original nav list */
            }

            .mobile-menu-icon {
                display: block; /* Show the hamburger icon */
            }

            .header nav {
                position: fixed;
                top: 0;
                right: -20px;
                width: 280px; /* Width of the side menu */
                height: 100vh;
                
                /* Applying Glass Morphism */
                background: rgb(17 5 27 / 97%); /* Semi-transparent background */
                backdrop-filter: blur(200px);
                -webkit-backdrop-filter: blur(200px); /* Safari support */
                border-left: 1px solid rgba(255, 255, 255, 0.2);
                
                padding-top: 100px;
                transform: translateX(100%); /* Start off-screen */
                transition: transform 0.3s ease-in-out;
                z-index: 1000; /* Ensure menu is on top of other content */
            }
            
            /* Style for the active/open state of the menu */
            .header nav.active {
                transform: translateX(30px);
            }
            
            /* Re-style the list for the vertical side menu */
            .header nav.active > ul {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0;
                width: 100%;
                
            }

            .header nav.active > ul li {
                width: 100%;
                text-align: center;
                margin: 1rem 0;
            }

            .contact-us-btn{
                position:relative;
                left:-120px;
                translate:27vw 0px;
            }
            .mobile-menu-icon {
                display: block; color: #fff; font-size: 2rem;
                cursor: pointer; background: none; border: none;
            }
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-content { text-align: center; }
            .hero-image-container { margin-top: 10px; transform: translateX(-180px); left:50vw; }
            .hero-content h1 { font-size: 3rem; }
            .container{
                padding:50px 0px;
            }
             .gallery-item{
            margin-bottom:-320px;
        }

        }
           
        
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1rem; }
            .section-title { font-size: 2.2rem; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .footer-links { flex-direction: column; align-items: center; }
            .hero-image-container{
                width:350px;
                margin-top: 10px; transform: translateX(-140px); left:54vw;
            }
            .hero-image{
                width:135px;
            }
            .gallery-item{
            margin-bottom:-300px;
        }
            
        }

        @media (max-width: 480px) {
            .container { width: 95%; padding: 80px 0; }
            .header { width: 100%; top: 0; border-radius: 0; padding: 10px 15px; }
            .logo-img { height: 35px; }
            .hero-content h1 { font-size: 2.2rem; }
            .gallery-grid { grid-template-columns: 1fr; }
            .footer-action-btn { width: 100%; }
            .contact-us-btn{
                left:-81px;
            }
            .hero-image-container{
                width:100px;
                left:88vw;
            }
            .social-links{
                width:100px;
                left:35vw;
                position:relative;
            }
            .hero-image{
                width:110px;
            }
            .gallery-item{
            margin-bottom:-410px;
        }
            .social-links{
                transform:translateX(-10px);
            }
        }

        @media (max-width: 410px){
            .mobile-menu-icon{
                display:none;
            }
            .hero-image{
                width:70px;
                height:230px;
                border-radius:5px;
            }
            .hero-image-container{
                width:100px;
                left:80vw;
                transform: translateX(-30px);
                margin-top:-120px;
                margin-bottom:-110px;
            }
            .container{
                padding:50px 0px;
            }
            .section-title{
                margin-top:-30px;
            }
            .social-links{
                transform:translateX(-23px);
            }
        }

