* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        font-family: Arial, sans-serif;
    text-align: center;
}

body {
  background-color: #111053;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #111054;
    color: white;
}

.logo img {
    height: 50px;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

nav ul li a:hover {
    color: yellow;
}

/* Mobile View */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #111054;
        width: 200px;
    }

    nav ul {
        display: block;
        padding: 10px;
       
  ;
    }

    nav ul li {
        padding: 10px;
        border-bottom: 1px solid gray;
    }

    nav.show {
        display: block;
    }
}

.stats {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

h2 {
    font-size: 24px;
    color: #333;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.stat {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.stat h3 {
    font-size: 28px;
    color: #007bff;
}

.stat p {
    font-size: 14px;
    color: #555;
}

.download {
    padding: 40px 20px;
    background: #111053;
    color: white;
}

h2 {
  
    font-size: 30px;
    margin-bottom: 10px;
}

p {

    font-size: 16px;
    margin-bottom: 15px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.download-buttons img {
    width: 100px;
}
.q{
  
  color: white;
  
}


/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.currency-dropdown select {
    padding: 5px;
    border-radius: 5px;
    border: none;
}

/* Hero Section */
.hero {
    padding: 40px 20px;
}

.banner {
    background: purple;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
}

h1 {
    margin-top: 20px;
    font-size: 28px;
}

h1 span {
    color: #FFD700;
}

p {
    margin: 15px 0;
    font-size: 16px;
}

.buttons {
    margin-top: 20px;
}

button {
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px;
    transition: 0.3s;
}

.register {
    background: #FFD700;
    color: black;
}

.find {
    background: transparent;
    border: 2px solid white;
    color: white;
}

button:hover {
    opacity: 0.8;
}

.features {
    margin-top: 20px;
    font-size: 14px;
}.o{
  
  
  color: #ffffff;
}


/* Support Section */
.support {
    background-color: white;
    padding: 40px 20px;
}

h2 {
    font-size: 24px;
    color: block;
}

p {
    font-size: 16px;
    margin: 10px 0;
}

.contact-buttons {
    margin-top: 20px;
}

.btn {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 12px;
    border-radius: 5px;
    margin: 10px auto;
    width: 80%;
    text-align: center;
    transition: 0.3s;
}

.call-btn {
    background: black;
}

.whatsapp-btn {
    background: black;
}

.btn:hover {
    opacity: 0.8;
}

/* Disclaimer */
.disclaimer {
    font-size: 12px;
    color: #AAA;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #020122;
    padding: 20px;
    margin-top: 40px;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
    color: #36F;
}

.scroll-top {
    display: inline-block;
    margin-top: 10px;
    color: #FFD700;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.scroll-top:hover {
    color: white;
}
.btn i {
    margin-right: 8px;
}/* Footer Styling */
footer {
    background: #111053;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer hr {
    border: 0;
    height: 2px;
    background: #666;
    width: 80%;
    margin: 10px auto;
}

footer p {
  color: white;
    font-size: 14px;
    margin: 5px 0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #111053;
    color: white;
    width: 30px;
    height: 30px;
    border: 1px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.scroll-top:hover {
    background: #005F;
}