body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #FFD700;
    overflow-x: hidden;
    margin-top: 100px;
}
.navbar {
    display: flex;
    justify-content: center; /* Center the entire navbar */
    align-items: center;
    background-color: #333;
    padding: 20px 20px;
    width: 98%; /* Adjust this value to reduce width */
    position: fixed;
    top: 0;
    z-index: 1000;
}

    .navbar .logo {
        display: flex;
        align-items: center;
        margin-right: auto; /* Push the logo to the left */
    }

        .navbar .logo img {
            height: 70px;
            margin-right: 10px;
            border-radius: 10%;
        }

        .navbar .logo span {
            color: #fff;
            font-size: 1.2em;
            font-weight: bold;
            font-family: 'Raleway', Pacifico;
        }

    .navbar .menu {
        list-style: none;
        display: flex;
        margin: 0; /* Remove margin to center the menu */
        padding: 0;
        justify-content: center; /* Center the menu items */
    }

        .navbar .menu li {
            margin-left: 20px;
        }

            .navbar .menu li a {
                color: #fff;
                text-decoration: none;
                font-size: 1em;
            }

                .navbar .menu li a:hover {
                    color: gold;
                    text-decoration-color: revert;
                }

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    margin-top: -40px;
}

    .burger div {
        width: 25px;
        height: 6px;
        background-color: #fff;
        margin: 4px 20px;
    }

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center; /* Center the navbar items */
    }

        .navbar .menu {
            display: flex; /* Ensure the menu is displayed */
            flex-direction: column;
            width: 100%;
            background-color: #333;
            align-items: center; /* Center items vertically */
            justify-content: center; /* Center items horizontally */
        }

            .navbar .menu li {
                margin: 10px 0;
                text-align: center;
            }

    .burger {
        display: flex;
    }
}


.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .whatsapp-button:hover {
        background-color: #1ebe57;
        transform: scale(1.05);
    }

    .whatsapp-button i {
        margin-right: 10px;
        font-size: 20px;
    }
#qrcode-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
}

#qrcode {
    max-width: 100%;
    max-height: 300px; /* Adjust the max height as needed */
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
#qrcode::after {
    content: "Scan to pay";
    display: block;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: blue;
}


/* Container for the content */
.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Individual file cards */
.file-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .file-card img {
        width: 100%;
        height: 100%; /* Ensure the image fills the file card */
        object-fit: cover; /* Maintain aspect ratio and cover the entire area */
    }

    .file-card a {
        text-decoration: none;
        width: 100%;
    }

    .file-card button {
        width: 100%;
        padding: 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 0 0 10px 10px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        font-weight:700;
    }

        .file-card button:hover {
            background-color: #0056b3;
            transform: scale(1.05);
        }

    .file-card:hover {
        transform: translateY(-10px);
    }










.footer {
    background-color: #333;
    color: #FFD700;
    text-align: center;
    padding: 10px;
}
.footer .social-icons {
    list-style: none;
    padding: 0;
}
.footer .social-icons li {
    display: inline;
    margin: 0 10px;
}
.footer .social-icons li a {
    color: #FFD700;
    text-decoration: none;
}
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    .navbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .navbar .menu.active {
        display: flex;
    }
    .content {
        grid-template-columns: 1fr;
    }
}


.payment-methods {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
}

    .payment-methods ul {
        list-style-type: none;
        padding: 0;
        
    }

    .payment-methods li {
        margin: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .payment-methods li i {
            margin-right: 10px;
            font-size: 1.5em;
        }

    .payment-methods p {
        color: gold;
        font-size: 1.5em;
    }

  /*  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
} */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
}

@media only screen and (max-width: 1024px) {
    .video-background {
        height: 100vh;
    }
}

@media only screen and (max-width: 768px) {
    .video-background {
        height: 100vh;
    }
}




.social-icons {
    list-style: none;
    padding: 0;
}

    .social-icons li {
        display: inline-block;
        margin-right: 10px;
    }

    .social-icons a {
        text-decoration: none;
        color: #000;
    }


/* Add this to your main CSS file */

p1 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    display: inline-block;
}

    p1 span {
        display: inline-block;
        animation: shake 2s infinite;
    }

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }
}

ul li a {
    text-decoration: none;
    color: gold;
}

.affiliate-container {
    text-align: center;
    background: #007BFF;
    padding: 6px; /* Adjust this value to reduce padding */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: auto; /* Adjust this value to reduce width */
    max-width: auto; /* Adjust this value to set a maximum width */
    opacity: 85%;
   
}



.affiliate-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .affiliate-button:hover {
        background-color: #0056b3;
    }

span1 {
    font-family: Arial, sans-serif;
}

