*{
    margin: 0;
    padding: 0;
}
body {
    position: relative;
    background-image: url('img/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
}

/* grey overlay */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: lab(0% 0 0 / 0.881); /* grey with 60% opacity */
    z-index: 0;
}

/* make content visible above overlay */
body > * {
    position: relative;
    z-index: 1;
}
h1{
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
}
h2{
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
}
h3{
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
}
h4{
    color: #fff;
    text-align: center;
}
p{
    color: #fff;
}
li{
    color: #fff;
}
a{
    text-decoration: none;
    color: #d4af37;
}
.tell{
    color: #c8a46b;
    text-align: center;
}
.logo{
    width: 100px !important;
    height: 50px;
}
.navbar{
    background-color: transparent !important;
}
.navbar-nav{
    margin-left: 1000px;
}
.nav-link{
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    font-size: 20px;
}
.yet{
    background-color: transparent;
    color: #c8a46b;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
}
.catch{
    margin-top: 50px;
    margin-bottom: 50px;
}
.stay{
    background-color: #171719;
    padding: 50px;
}
.roll{
    width: 100%;
    height: 300px;
    margin-top: 10px;
    margin-bottom: 10px;
}
  .content-box {
    position: relative;
    z-index: 1;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
  }

  .hidden-content {
    display: none;
    margin-top: 10px;
  }

  button {
    z-index: 1;
    position: relative;
    background-color: #222;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
  }

  button:hover {
    background-color: #444;
  }

  .swiper {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
  }

  .swiper-slide {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
  }

  .swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  /* Optional navigation buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: white;
  }

  .swiper-pagination-bullet-active {
    background: white;
  }
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 5%;
  }

  .service-box {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
    position: relative;
  }

  .service-box:hover {
    background-color: #222;
    transform: translateY(-5px);
  }

  .service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37; /* gold color */
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
  }

  .service-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
  }

  .service-box::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: url('img/process.png') center/contain no-repeat;
    opacity: 0.1;
  }
  .like{
    margin-top: 400px;
  }

  .stats-section {
    background-color: #1a1a1a;
    text-align: center;
    padding: 80px 20px;
  }

  .stats-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
  }

  .stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
  }

  .stat-box {
    text-align: center;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
  }

  .plus {
    color: #d4af37; /* gold */
  }

  .stat-text {
    color: #d4af37;
    margin-top: 10px;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      gap: 40px;
    }
  }

  /* Responsive layout */
  @media (max-width: 768px) {
    .services {
      padding: 40px 5%;
    }
    .service-box {
      text-align: center;
    }
    .service-box::before {
      display: none;
    }
  }
  
.faq-section {
    width: 100%;
    min-height: 70vh;
    padding: 40px;
    background: #1a1a1c !important;
    box-sizing: border-box;
    border-bottom: 2px solid #fff;
  }

  .faq-section h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #fff;
  }

  .faq-item {
    background: #f9f9f9;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    border: 1px solid #fff;
    background: #1a1a1c;
    color: white;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #1a1a1c;
    padding: 0 20px;
    border: 1px solid #fff;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #fff;
  }
  .try{
    background-color: #171313;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .try li{
    list-style: none;
  }
  .try h4{
    text-align: start;
  }
  .try b{
    color: #c8a46b;
  }
  
.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  color: #d4af37; /* gold color */
  font-size: 28px;
  border: 2px solid #d4af37;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #d4af37;
  color: #111;
  transform: scale(1.1);
}
  .get p{
    text-align: center;
    color: #d4af37 !important;
  }
 /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    /*border-radius: 10px;*/
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/ 

   .social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-bar a {
  background-color: #c8a46b; /* gold-like color */
  color: #000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-bar a:hover {
  background-color: #000;
  color: #c8a46b;
  transform: scale(1.1);
}

@media only screen and (max-width: 476px){
    .navbar-nav{
    margin-left: 0px;
}
.navbar-toggler{
    background-color: #fff;
    margin-left: 100px;
}
.stay{
    width: 100%;
    padding: 20px;
}
p{
    text-align: justify;
}
li{
    text-align: justify;
}
.yet{
    font-size: 12px;
    font-weight: 800;
}
.roll{
    height: 150px;
}
.faq-section{
    padding: 10px;
}
}