body {
    margin: 0;
    font-family: 'Khand', sans-serif;
    background-color: #020202;
    color: #FFFFFF;
    line-height: 1.6;

}
/* loader */
.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed; /* Use fixed to cover the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #020202; /* Matches your background color */
    z-index: 9999; /* Ensure loader is on top */

}

/* Wave loader styles */
.wave-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave {
    width: 20px;
    height: 20px;
    background-color: #E85122;
    margin: 0 5px;
    border-radius: 50%;
    animation: wave 1.5s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}

.wave:nth-child(2) {
    animation-delay: 0.3s;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}

.wave:nth-child(3) {
    animation-delay: 0.6s;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}
.wave:nth-child(4) {
    animation-delay: 0.9s;
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hide content initially */
.content {
    display: none;
}

/* Ensure content and loader are visible based on JavaScript logic */
body.no-scroll {
    overflow: hidden;
}

/*-----------------------------------------------------*/
.cursor {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color:rgba(232, 81, 34, 0.7) ; 
    box-shadow: 0 0 15px rgba(232, 81, 34, 0.7); /* Glow effect */
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s ease, background-color 0.1s ease;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
/* Navigation Styles */
header {
    background-color: #020202;
    padding: 20px;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px 20px;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover, nav ul li a.active {
    color: #E85122;
    background-color: rgba(255, 255, 255, 0.1);
}

.terms {
    padding: 50px 20px;
    background-color: #111;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    color: #E85122;
}

p {
    margin-bottom: 20px;
}

a {
    color: #E85122;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

button {
    padding: 10px 20px;
    background-color: #E85122;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d73b1c;
}

/* Hide the menu by default on small screens */
.menu-toggle {
    display: none;
    font-size: 24px;
}

/* Styles for the dropdown menu */
#menu {
    display: flex;
}

#menu.closed {
    display: none;
}

/*---------------------------*/
footer {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 20px 50px;
     font-family: 'Khand', sans-serif;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-breadcrumb i {
    margin-right: 5px;
    color: #E85122;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-nav a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

.footer-nav a:hover {
    color: #E85122; /* Change to your preferred hover color */
}

.footer-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    color: #E85122; /* Color when hovered */
    transform: scale(1.1); /* Slightly increase size */
}

.footer-legal {
    text-align: right;
    font-size: 12px;
}

.footer-legal a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #E85122; /* Change to your preferred hover color */
}

/*-----------------------------------------------------------------*/

/* Media Queries for Tablets */
@media (max-width: 768px) {

    /* General adjustments */
    body {
        line-height: 1.5;
    }

    /* Loader adjustments */
    .loader-container {
        padding: 20px; /* Add some padding */
    }

    /* Wave loader adjustments */
    .wave {
        width: 15px;
        height: 15px;
        margin: 0 3px;
    }

    /* Navigation Styles */
    header {
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li a {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Hide the menu by default on small screens */
.menu-toggle {
    display: none;
    font-size: 24px;
}

/* Styles for the dropdown menu */
#menu {
    display: flex;
}

#menu.closed {
    display: none;
}

    /* Terms content */
    .terms {
        padding: 30px 15px;
    }

    .container {
        padding: 15px;
    }

    h1, h2 {
        font-size: 24px;
    }

    p {
        margin-bottom: 15px;
    }

    .actions {
        flex-direction: column;
        gap: 10px;
    }

    button {
        padding: 8px 15px;
        width: 100%; /* Full width buttons */
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .footer-icons a {
        margin: 0 5px;
        font-size: 20px;
    }

    .footer-legal {
        text-align: left;
        margin-top: 15px;
    }

}

/* Media Queries for Mobile Phones */
@media (max-width: 480px) {

    /* General adjustments */
    body {
        font-size: 14px; /* Smaller base font size */
    }

    /* Loader adjustments */
    .loader-container {
        padding: 15px; /* Add some padding */
    }

    /* Wave loader adjustments */
    .wave {
        width: 10px;
        height: 10px;
        margin: 0 2px;
    }

    /* Navigation Styles */
    header {
        padding: 8px;
    }

    nav ul {
        flex-direction: column;
        gap: 8px;
    }

    nav ul li a {
        padding: 6px 10px;
        font-size: 12px;
    }

    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    } 
    
    /* Terms content */
    .terms {
        padding: 20px 10px;
    }

    .container {
        padding: 10px;
    }

    h1, h2 {
        font-size: 20px;
    }

    p {
        margin-bottom: 10px;
    }

    .actions {
        flex-direction: column;
        gap: 8px;
    }

    button {
        padding: 8px 10px;
        width: 100%; /* Full width buttons */
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

    .footer-nav a {
        margin: 5px 0;
    }

    .footer-icons a {
        margin: 0 3px;
        font-size: 18px;
    }

    .footer-legal {
        text-align: left;
        margin-top: 10px;
    }

}
