*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html, body{
    height: 100%;
    width: 100%;
    background: #ffffff;
}

/* For the entire page */
body {
  overflow-x: auto; /* Enable horizontal scrolling */
}

body::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Webkit browsers */
}

body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
  
.buttonColor{
    background-color: #1452af;
}

.banner{
    background-image: url(./banner.webp);
    background-size: cover;
    background-position: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Adjust opacity for darkness */
    z-index: 1; /* Make sure it sits above the background but below content */
  }
  .swiper-button-prev::after{
    padding: 10px ;
    background-color: white!important;
    border-radius: 100%;
    height: 40px;
    min-width: 40px;
    font-size: 20px!important;
  }
  .swiper-button-next::after{
    padding: 10px ;
    background-color: white!important;
    border-radius: 100%;
    height: 40px;
    min-width: 40px;
    font-size: 20px!important;
  }

  .women-tour{
    background-image: url(./women-tour.webp);
  }


  .bg{
    background-image: url(./about.jpg);
    background-size: cover;
    background-position: center;
}

.bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Adjust opacity for darkness */
    z-index: 1; /* Make sure it sits above the background but below content */
  }



  /* ----------- sidebar css -------------- */

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    background-color: #f4f4f4;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-header {
    background-color: #4A3AB5;
    padding: 1.5rem;
    text-align: center;
    color: white;
  }
  .sidebar-header img {
    width: 150px;
  }
  .profile {
    padding: 1.5rem 1rem;
    text-align: center;
  }
  .profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #eee;
  }
  .profile .name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
  }
  .profile .referral {
    font-size: 0.9rem;
    color: #666;
  }
  .progress-bar {
    position: relative;
    height: 8px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
  }
  .progress-bar span {
    display: block;
    height: 100%;
    background-color: #4A3AB5;
    width: 100%;
  }
  .account-info {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background-color: #4A3AB5;
    color: white;
    border-radius: 10px;
    margin: 1rem auto;
  }
  .account-info div {
    text-align: center;
  }
  .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .menu li {
    border-top: 1px solid #ddd;
    background: white;
  }
  .menu li a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
  }
  .menu li a:hover {
    background-color: #f2f2f2;
  }
  .menu li i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #666;
  }



  