/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Basic Layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #000000;
    color: darkred;
    padding: 20px 0;
    margin-top: 0;
    padding-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000; /* higher than the overlay's 9999 */
}

.header .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 24px;
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header nav ul li a {
    color: red;
    text-decoration: none;
    font-size: 32px;
}

.header nav ul li a:hover {
    text-decoration: underline;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 90vh;
    /*background-image: url('cards.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
    padding: 20px 0;
    color: white;
    z-index: 10;
}

.banner-header .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-header .logo-container {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-header .logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.banner-header nav {
    position: absolute;
    top: 0;
    right: -40px;
}

.banner-header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.banner-header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.banner-header nav ul li a:hover {
    text-decoration: underline;
}

/* Banner Content */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: red;
}

.banner h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

.banner p {
    font-size: 18px;
}

.banner-content img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-header nav {
        position: static;
        margin-top: 20px;
    }

    .banner-header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

/* Easy Steps Section */
.easy-steps {
    background-color: #EC1B23;
    padding: 40px 0;
    text-align: center;
}

.easy-steps h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    font-size: 16px;
    color: #666;
}

/* Footer Styling */
.footer {
    background-color: #000;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 16px;
    opacity: 0.8;
}

.footer-nav,
.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-nav h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f4f4f4;
}

.footer-nav ul,
.footer-social ul {
    list-style: none;
}

.footer-nav ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
    color: #007BFF;
}

/* Full Image Section */
.full-image-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background-image: url('section1-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.full-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.stop-text-fade {
    color: black;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.stop-text-fade b {
    font-weight: bold;
    color: black;
}

.stop-text-fade font {
    color: red;
}
/* Full-Width Section (Section 1) */
/* Full-Width Section (Section 1) */
.section-1 {
    position: relative;
    width: 100%;
    min-height: 60vh; /* Use min-height to allow the section to expand */
    background-image: url('section1-new.jpg'); /* Add your background image here */
    background-size: cover; /* Ensure the image covers the full section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents any overflow */
}

    /* Apply background image fading effect */
    .section-1::before {
        content: ''; /* Required for the pseudo-element */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3); /* Light fade for the background */
        z-index: 1; /* Places it behind the text */
    }

/* Content inside the section */
.stop-text-fade {
    position: relative; /* Ensures text is above the background fade */
    z-index: 2; /* Keeps the text above the overlay */
    color: red; /* Change text color to red */
    text-align: center; /* Center the text */
    font-size: 1vw; /* Make font size responsive to viewport width */
    padding: 20px;
    max-width: 90%; /* Limits the width of the text */
    margin: 0 auto; /* Centers the text container */
    font-weight: bold; /* Bold for emphasis */
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7); /* Text shadow for better readability */
}

    /* Add gap between the title and other text */
    .stop-text-fade h1 {
        margin-bottom: 30px; /* Increased gap between the title and other text */
    }

    /* Optional: Text emphasis (bold and red colored text) */
    .stop-text-fade b {
        color: red; /* Highlight important text in red */
    }

/* Responsive Design for Text */
@media (max-width: 768px) {
    .stop-text-fade {
        font-size: 2vw; /* Slightly larger font on smaller screens */
    }

    .section-1 {
        min-height: 60vh; /* Reduce the section height on smaller screens */
    }

    .stop-text-fade h1 {
        margin-bottom: 20px; /* Adjust gap on smaller screens */
    }
}

/* Banner Content - For the header text */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: red; /* Text color */
    z-index: 2; /* Ensure it's above the background */
    max-width: 90%; /* Prevent text from overflowing */
    font-size: 4vw; /* Responsive font size */
    line-height: 1.5;
    padding: 20px;
}

/* Optional: Styling for smaller screens */
@media (max-width: 768px) {
    .banner-content {
        font-size: 6vw; /* Increase the font size for smaller screens */
    }

        /* Make sure text doesn't overflow and keeps a good gap */
        .banner-content h2 {
            margin-bottom: 20px;
        }

        .banner-content p {
            font-size: 3.5vw; /* Adjust the paragraph text */
        }
}

/* Optional: For very small screens (portrait mode or smaller mobile devices) */
@media (max-width: 480px) {
    .banner-content {
        font-size: 8vw; /* Even larger for extremely small screens */
    }

        .banner-content p {
            font-size: 5vw; /* Smaller paragraph text for mobile */
        }
}

/* Banner Content - Prevent text from hiding under the header */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: red; /* Text color */
    z-index: 2; /* Ensure it's above the background */
    max-width: 90%; /* Prevent text from overflowing */
    font-size: 4vw; /* Responsive font size */
    line-height: 1.5;
    padding: 20px;
}

/* Adjust positioning for smaller devices */
@media (max-width: 768px) {
    .banner-content {
        font-size: 6vw; /* Larger font size for smaller screens */
        top: 60%; /* Adjust the position to prevent hiding under the header */
    }

        .banner-content h2 {
            margin-bottom: 20px;
        }

        .banner-content p {
            font-size: 4.5vw; /* Adjust the paragraph font size */
        }
}

/* For very small screens (portrait mode or smaller devices) */
@media (max-width: 480px) {
    .banner-content {
        font-size: 8vw; /* Even larger text for small screens */
        top: 70%; /* Adjust position to prevent hiding under header */
    }

        .banner-content p {
            font-size: 6vw; /* Larger text for small screens */
        }
}

/* Responsive Header Navigation */
.banner-header nav {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 20px;
}

    .banner-header nav ul {
        list-style: none;
        display: flex;
        gap: 30px;
    }

        .banner-header nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }

            .banner-header nav ul li a:hover {
                text-decoration: underline;
            }

/* Responsive Menu - Stack the links on smaller screens */
@media (max-width: 768px) {
    .banner-header nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center; /* Center the links */
    }

        .banner-header nav ul li a {
            font-size: 16px; /* Smaller text for mobile */
        }
}

/* Additional Adjustment for Small Screens */
@media (max-width: 480px) {
    .banner-header nav ul li a {
        font-size: 14px; /* Even smaller font for very small devices */
    }

    .banner-header nav ul {
        gap: 10px; /* Less gap for compact screens */
    }
}
/* Banner Content - Text Styling */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: red; /* Default text color */
    z-index: 2;
    max-width: 90%;
    font-size: 4vw;
    line-height: 1.5;
    padding: 20px;
}

    /* Specific Text Styling */
    .banner-content .free-access {
        color: white; /* White color for "Gain Free Access" */
    }

    .banner-content .win-prize {
        color: yellow; /* Yellow color for "To Win $10,000" */
        font-size:35px;
    }

/* Adjust positioning and styling for smaller screens */
@media (max-width: 768px) {
    .banner-content {
        font-size: 6vw;
        top: 60%;
    }

        .banner-content h2 {
            margin-bottom: 20px;
        }

        .banner-content p {
            font-size: 4.5vw;
        }

        .banner-content .free-access {
            color: white; /* White for small screens */
        }

        .banner-content .win-prize {
            color: yellow; /* Yellow for small screens */
        }
}

@media (max-width: 480px) {
    .banner-content {
        font-size: 8vw;
        top: 70%;
    }

        .banner-content p {
            font-size: 6vw;
        }

        .banner-content .free-access {
            color: white; /* White for small screens */
        }

        .banner-content .win-prize {
            color: yellow; /* Yellow for small screens */
        }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Basic Layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #000;
    color: darkred;
    padding: 20px 0;
}

    .header .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Logo */
    .header h1 {
        font-size: 24px;
    }

/* Navigation Menu */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

    .nav ul li {
        display: inline-block;
    }

        .nav ul li a {
            color: red;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }

            .nav ul li a:hover {
                text-decoration: underline;
            }

/* Hamburger Menu Icon (visible only on small screens) */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Show hamburger menu icon on small screens */
@media (max-width: 768px) {
    .nav {
        display: none; /* Initially hide the navigation on small screens */
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #000;
        width: 100%;
        text-align: center;
    }

        .nav ul {
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }

            .nav ul li a {
                font-size: 24px; /* Larger font size for mobile */
            }

    .menu-icon {
        display: block; /* Display the hamburger menu icon */
    }
}

/* Show the menu when it is active */
.nav.active {
    display: block;
}

/* Responsive Styling for Logo (optional) */
@media (max-width: 768px) {
    .header h1 {
        font-size: 20px;
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Basic Layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #000;
    color: darkred;
    padding: 20px 0;
}

    .header .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Logo */
    .header h1 {
        font-size: 24px;
    }

/* Navigation Menu */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

    .nav ul li {
        display: inline-block;
    }

        .nav ul li a {
            color: red;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }

            .nav ul li a:hover {
                text-decoration: underline;
            }

/* Hamburger Menu Icon (visible only on small screens) */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Show hamburger menu icon on small screens */
@media (max-width: 768px) {
    .nav {
        display: none; /* Initially hide the navigation on small screens */
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #000;
        width: 100%;
        text-align: center;
        padding: 20px 0; /* Add some padding to the menu */
    }

        .nav ul {
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }

            .nav ul li a {
                font-size: 24px; /* Larger font size for mobile */
            }

    .menu-icon {
        display: block; /* Display the hamburger menu icon */
    }
}

/* Show the menu when it is active */
.nav.active {
    display: block !important; /* Force display to block when the menu is active */
    animation: slideIn 0.3s ease-in-out; /* Optional: Add animation */
}

/* Optional animation for the slide down effect */
@keyframes slideIn {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Responsive Styling for Logo (optional) */
@media (max-width: 768px) {
    .header h1 {
        font-size: 20px;
    }
}
