@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "poppins", sans-serif;
    user-select: none;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
}
.red{
    color: red;
}
.ham{
    display: none;
}
.centerb{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.centerb button{
    background-color: #ccc;
}
header{
    z-index: 999;
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #fff;
    box-shadow: 0px 4px 10px #0000001a;
}
header .logo{
    margin-left: 20px;
    cursor: pointer;
}
header .logo abbr{
    text-decoration: none;
}
header .logo .logop{
    width: 70px;
}
header .logo .logop span{
    color: red;
}

header nav{
    width: 800px;
    /* margin-right: 100px; */
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: space-between;
    align-items: center;
}
header nav ul{
    margin: 0px;
    padding: 0;
    width: 50%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
header nav ul li a{
    text-decoration: none;
    color: black;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
}
header nav ul li a:hover{
    border-bottom: 2px solid var(--buttondark);
}

.onpage{
    border-bottom: 2px solid var(--buttondark);
}
header nav .joinbt{
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 300px;
}
header nav .joinbt button,
.joinbtn,
.centerb button{
    padding: 15px 30px;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
}
header nav .joinbt .Loginn{
    background-color: black;
    color: #fff;
}
header nav .joinbt .Signupp{
    background-color: #ccc;
    color: #000;
}




.currency-toggle {
  display: flex;
  gap: 10px; /* Space between buttons */
  margin: 15px 0; /* Vertical spacing within the form */
  justify-content: center; /* Center the buttons if the form is wide */
}

.currency-toggle button {
  padding: 10px 20px; /* Comfortable padding for touch targets */
  font-size: 16px; /* Readable text size */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Hand cursor on hover */
  background-color: #ff0000; /* Red background */
  color: #ffffff; /* White text for contrast */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.currency-toggle button:hover {
  background-color: #cc0000; /* Darker red on hover */
}

.currency-toggle button:focus {
  outline: 2px solid #ff3333; /* Accessible focus outline in lighter red */
  outline-offset: 2px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .currency-toggle {
    flex-direction: column; /* Stack buttons vertically on small screens */
    align-items: center; /* Center align */
    gap: 5px; /* Reduce gap on mobile */
  }

  .currency-toggle button {
    width: 100%; /* Full width on mobile */
    padding: 12px; /* Slightly larger padding for touch */
    font-size: 14px; /* Slightly smaller text for fit */
  }
}






 /* Main Content */
 .main {
    flex: 1;
    padding: 10px;
    background-color: #f4f6fa;
    overflow-y: auto;
  }
  @media (max-width: 768px) {
    .main {
        padding: 0px;
        margin-top: 100px;
    }
  }


  .go-previouse{
    width: 100%;
    margin-top: -10px;
    margin-bottom: 20px;
    padding: 0;
    cursor: pointer;
  }
















/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px;
    margin: 0px;
}

.footer-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 20px; */
}

.footer-section {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #ff0000;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff0000;
}

.social-links a {
    margin-right: 15px;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.social-links a:hover {
    font-size: 22px;
    color: #ff0000;

}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
    font-size: 14px;
}
.footer-bottom p{
    margin: 30px 0px;
}
.footer-bottom .disclaimer,
.footer-bottom .refund{
    text-align: start;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}





@media (max-width: 1099px){
    header nav{
        margin-right: 10px;
    }
}






@media (max-width: 999px){

    header{
        display: grid;
        align-items: center;
    }

    header .logo{
        display: flex;
        align-items: center;
        height: 100px;
    }

    .ham{
        width: 40px;
        display: block;
        margin-left: 90%;
        transform: none;
        padding: 0px;
        position: fixed;
        display: flex;
        height: 100px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .ham i{
        font-size: 30px;
    }
    header nav{
        background-color: #fff;
        width: 100%;
        max-width: 300px;
        display: block;
        height: 100vh;
        margin-left: -250px;
        overflow: hidden;
        transition: all 1s ease-in;
        transition: all 0.3s ease-out;
    }
    header nav.active{
        margin-left: 0px;
    }
    header nav ul{
        display: grid;
        width: 100%;
        padding-left: 0px;
    }
    header nav ul li{
        margin-left: 30px;
        margin-right: 10px;
        line-height: 50px;
    }

    header nav ul li a{
        text-decoration: none;
        color: black;
        font-size: 16px;
        padding: 10px;
        border-radius: 5px;
    }
    header nav ul li a:hover{
        color: black;
        background: none;
    }

   

    header nav .joinbt{
        margin-top: 10px;
        margin-left: 0%;
        min-width: 50px;
        max-width: 200px;
        align-self: center;
        justify-self: center;
        justify-content: space-evenly;
        margin: auto;
    }



 
}












@media (max-width: 600px){
    .ham{
        margin-left: 80%;
    }
}






@media (max-width: 400px){
    .ham{
        margin-left: 80%;
    }
}





