
        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            background-color: #0d0d0d;
            color: white;
            text-align: center;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
        }

        h1 {
            font-size: 2.5rem;
        }

        .highlight {
            color: #A855F7;
        }

        .email-box {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        input[type="email"] {
            padding: 10px;
            width: 250px;
            border-radius: 5px;
            border: none;
        }

        button {
            padding: 10px 15px;
            background-color: #A855F7;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        button:hover {
            background-color: #8e44ad;
            box-shadow: 0px 0px 15px rgba(168, 85, 247, 0.8);
            transform: scale(1.1);
        }

        .small-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        h2 {
            margin-top: 40px;
            font-size: 1.8rem;
        }
        .features {
            display: flex;
            justify-content: space-between; /* Distributes cards evenly */
            align-items: center;
            gap: 20px;
            flex-wrap: nowrap; /* Prevents wrapping */
            padding: 20px;
            max-width: 1200px; /* Adjust width as needed */
            margin: auto; /* Centers the section */
        }
        
        .feature {
            flex: 1; /* Ensures equal width */
            max-width: 280px; /* Prevents it from being too wide */
            background: rgba(255, 255, 255, 0.1); /* Glass effect */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0px 4px 20px rgba(168, 85, 247, 0.5);
        }
        
        .feature .icon {
            font-size: 40px;
            display: block;
            margin-bottom: 10px;
        }
        

        .feature p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }
        
        
        /* Secure Payments Custom Hover */
        .secure-hover:hover {
            transform: scale(1.08);
            box-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .features {
                flex-direction: column;
                flex-wrap: wrap;
                align-items: center;
            }

            .feature {
                max-width: 80%;
            }
        }

        .follow-text {
            margin-top: 40px;
        }

        /* Social Media Hover Effect */
        .social-icons a {
            color: #22D3EE;
            margin: 0 10px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }

        .social-icons a:hover {
            text-decoration: underline;
            color: #A855F7;
            text-shadow: 0px 0px 8px rgba(168, 85, 247, 0.8);
            transform: scale(1.1);
        }

        .footer {
            margin-top: 20px;
            font-weight: bold;
            color: #A855F7;
        }
        /* Fixed Header */

        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            background-color: #0d0d0d;
            color: white;
            text-align: center;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
        }

        h1 {
            font-size: 2.5rem;
        }

        .highlight {
            color: #A855F7;
        }

        .email-box {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        input[type="email"] {
            padding: 10px;
            width: 250px;
            border-radius: 5px;
            border: none;
        }

        button {
            padding: 10px 15px;
            background-color: #A855F7;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        button:hover {
            background-color: #8e44ad;
            box-shadow: 0px 0px 15px rgba(168, 85, 247, 0.8);
            transform: scale(1.1);
        }

        .small-text {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        h2 {
            margin-top: 40px;
            font-size: 1.8rem;
        }
        .features {
            display: flex;
            justify-content: space-between; /* Distributes cards evenly */
            align-items: center;
            gap: 20px;
            flex-wrap: nowrap; /* Prevents wrapping */
            padding: 20px;
            max-width: 1200px; /* Adjust width as needed */
            margin: auto; /* Centers the section */
        }
        
        .feature {
            flex: 1; /* Ensures equal width */
            max-width: 280px; /* Prevents it from being too wide */
            background: rgba(255, 255, 255, 0.1); /* Glass effect */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0px 4px 20px rgba(168, 85, 247, 0.5);
        }
        
        .feature .icon {
            font-size: 40px;
            display: block;
            margin-bottom: 10px;
        }
        
        .feature h3 {
            font-size: 1.3rem;
            font-weight: bold;
            color: #ffffff;
            letter-spacing: 1px;
        }
        
        .feature p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }
        
        

        /* Secure Payments Custom Hover */
        .secure-hover:hover {
            transform: scale(1.08);
            box-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .features {
                flex-direction: column;
                flex-wrap: wrap;
                align-items: center;
            }

            .feature {
                max-width: 80%;
            }
        }

        .follow-text {
            margin-top: 40px;
        }

        /* Social Media Hover Effect */
        .social-icons a {
            color: #22D3EE;
            margin: 0 10px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
        }

        .social-icons a:hover {
            text-decoration: underline;
            color: #A855F7;
            text-shadow: 0px 0px 8px rgba(168, 85, 247, 0.8);
            transform: scale(1.1);
        }

        .footer {
            margin-top: 20px;
            font-weight: bold;
            color: #A855F7;
        }
        /* Fixed Header */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #191919;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

        /* Logo Styling */
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #A855F7;
        }
        /* Hero Section with Background Image */
        .hero-section {
            background-image: url('backgroundImage1.png') !important; /* Replace with your image */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh; /* Ensures full viewport height */
            display: flex;
            align-items: center; /* Centers content vertically */
            justify-content: center; /* Centers content horizontally */
            text-align: center;
            padding: 20px; /* Adjust padding if necessary */
        }
        

/* Increase Space Between Features and Social Section */
.features {
    margin-bottom: 60px;
}

/* Space for Social Media Section */
.social-section {
    margin-top: 40px;
}


.about-us {
    background-color: #151515; /* Dark background for contrast */
    padding: 60px 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.about-us {
    background-color: #151515;
    padding: 80px 20px; /* Increased top & bottom padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-us h2 {
    font-size: 2.2rem;
    margin-bottom: 20px; /* Increased spacing */
    position: relative;
    display: inline-block;
    color: #A855F7;
}

/* Underline Effect */
.about-us h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background-color: #A855F7;
    margin: 8px auto 0;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.about-us h2:hover::after {
    width: 80%;
}

/* About Text Styling */
.about-us p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 20px auto; /* Increased spacing */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0px 0px 15px rgba(168, 85, 247, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Fade-In Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.platform-features {
    text-align: center;
    margin-bottom: 30px; /* Add spacing between title and features */
}

.platform-features h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    color: #A855F7;
    font-weight: bold;
    letter-spacing: 1.5px;
}

/* Glowing Underline Effect */
.platform-features h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background-color: #A855F7;
    margin: 8px auto 0;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.platform-features h2:hover::after {
    width: 80%;
}

/* Fade-In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-features h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}






/* Updated Email Box Styling */
.email-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.email-box input {
    width: 300px;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #A855F7;
    background-color: #222;
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease-in-out;
}

.email-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-box input:focus {
    border-color: #9333ea;
    box-shadow: 0px 0px 12px rgba(168, 85, 247, 0.7);
}

/* Button Styling */
.email-box button {
    padding: 12px 20px;
    border: none;
    background: linear-gradient(45deg, #9333ea, #7e22ce);
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.email-box button:hover {
    background: linear-gradient(45deg, #A855F7, #9333ea);
    box-shadow: 0px 0px 15px rgba(168, 85, 247, 0.7);
    transform: scale(1.05);
}

/* Cute & Catchy Popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #191919; /* Fully opaque */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(168, 85, 247, 0.5);
    text-align: center;
    display: none;
    animation: popupFadeIn 0.5s ease-in-out;
    border: 2px solid #A855F7;
}


.popup h3 {
    color: #A855F7;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.popup button {
    padding: 8px 16px;
    border: none;
    background: #A855F7;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.popup button:hover {
    background: #9333ea;
    box-shadow: 0px 0px 12px rgba(168, 85, 247, 0.7);
}

/* Popup Animation */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}





.email-box {
    display: flex;
    flex-wrap: wrap;  /* Allows wrapping on small screens */
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto; /* Centers the box */
}

.email-box input {
    flex: 1;
    min-width: 250px; /* Prevents it from getting too small */
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #111;
    color: white;
}

.email-box button {
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    background: #7b43ff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
}

/* On smaller screens, button moves below */
@media (max-width: 600px) {
    .email-box {
        flex-direction: column;
        align-items: stretch; /* Ensures full width */
    }

    .email-box input,
    .email-box button {
        width: 100%;
    }
}



.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #191919;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px; /* Increased padding */
    height: 60px; /* Ensure enough height */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #A855F7;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    padding: 10px 0; /* Adds space to prevent text from getting cut */
}

.nav-links a:hover {
    color: #A855F7;
}

        /* Logo Styling */
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #A855F7;
        }
        /* Hero Section with Background Image */
.hero-section {
    background-image: url('../assets/backgroundImage1.png');/* Replace with your image */
    background-size: cover;
    background-position: center;
    padding: 80px 20px; /* Add padding to maintain readability */
    text-align: center;
}

/* Increase Space Between Features and Social Section */
.features {
    margin-bottom: 60px;
}

/* Space for Social Media Section */
.social-section {
    margin-top: 40px;
}


.about-us {
    background-color: #151515; /* Dark background for contrast */
    padding: 60px 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.about-us {
    background-color: #151515;
    padding: 80px 20px; /* Increased top & bottom padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-us h2 {
    font-size: 2.2rem;
    margin-bottom: 20px; /* Increased spacing */
    position: relative;
    display: inline-block;
    color: #A855F7;
}

/* Underline Effect */
.about-us h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background-color: #A855F7;
    margin: 8px auto 0;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.about-us h2:hover::after {
    width: 80%;
}

/* About Text Styling */
.about-us p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 20px auto; /* Increased spacing */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0px 0px 15px rgba(168, 85, 247, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Fade-In Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.platform-features {
    text-align: center;
    margin-bottom: 30px; /* Add spacing between title and features */
}

.platform-features h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    color: #A855F7;
    font-weight: bold;
    letter-spacing: 1.5px;
}

/* Glowing Underline Effect */
.platform-features h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background-color: #A855F7;
    margin: 8px auto 0;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}

.platform-features h2:hover::after {
    width: 80%;
}

/* Fade-In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.platform-features h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}






/* Updated Email Box Styling */
.email-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.email-box input {
    width: 300px;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #A855F7;
    background-color: #222;
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease-in-out;
}

.email-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-box input:focus {
    border-color: #9333ea;
    box-shadow: 0px 0px 12px rgba(168, 85, 247, 0.7);
}

/* Button Styling */
.email-box button {
    padding: 12px 20px;
    border: none;
    background: linear-gradient(45deg, #9333ea, #7e22ce);
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.email-box button:hover {
    background: linear-gradient(45deg, #A855F7, #9333ea);
    box-shadow: 0px 0px 15px rgba(168, 85, 247, 0.7);
    transform: scale(1.05);
}

/* Cute & Catchy Popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #191919; /* Fully opaque */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(168, 85, 247, 0.5);
    text-align: center;
    display: none;
    animation: popupFadeIn 0.5s ease-in-out;
    border: 2px solid #A855F7;
}


.popup h3 {
    color: #A855F7;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.popup button {
    padding: 8px 16px;
    border: none;
    background: #A855F7;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.popup button:hover {
    background: #9333ea;
    box-shadow: 0px 0px 12px rgba(168, 85, 247, 0.7);
}

/* Popup Animation */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}





.email-box {
    display: flex;
    flex-wrap: wrap;  /* Allows wrapping on small screens */
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto; /* Centers the box */
}

.email-box input {
    flex: 1;
    min-width: 250px; /* Prevents it from getting too small */
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #111;
    color: white;
}

.email-box button {
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    background: #7b43ff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
}

/* On smaller screens, button moves below */
@media (max-width: 600px) {
    .email-box {
        flex-direction: column;
        align-items: stretch; /* Ensures full width */
    }

    .email-box input,
    .email-box button {
        width: 100%;
    }
}




/* Hide the navigation links on smaller screens */
/* Reset styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Fixed Header */
.fixed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    color: white;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Hide the default nav-links */
.nav-links {
    display: none;
}

/* Hamburger Icon */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    color: white;  /* Adjust the color as needed */
    position: absolute;
    right: 50px;  /* Move it a bit left */
    top: 15px;
    z-index: 1002;  /* Ensures it's on top */
    display: block; /* Ensure it's visible by default */
}

/* Hide hamburger when sidebar is active */
.hamburger.hide {
    display: none;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    right: -250px;  /* Initially hidden */
    width: 250px;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    z-index: 1001; /* Below the hamburger */
}

/* Sidebar Links */
.sidebar-links a {
    padding: 15px;
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.sidebar-links a:hover {
    background: #333;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Show sidebar when active */
.sidebar.active {
    right: 0;
}


.feature-icon {
    font-size: 23px;  /* Adjust size as needed */
    color: #6a0dad;  /* Choose your color */
    margin-bottom: 10px;
}




