*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #000;
}
h1, h2, h3, h4{
    text-align: start;
    color: #fff;
    font-weight: 700;
    font-size: 25px;
}
p, ul{
    color: #fff;
}
.ban{
  width: 100%;
}
.set{
    background-color: #8B4E01;
    padding-top: 10px;
    padding-bottom: 10px;
}
.logo{
    width: 100px;
    margin-top: 8px;
}
.login-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .login-container input {
      padding: 10px 15px;
      border-radius: 6px;
      border: none;
      outline: none;
      font-size: 14px;
      color: #333;
      background-color: #fff;
      box-shadow: 0 0 0 1px #ddd;
    }

    .password-wrapper {
      position: relative;
    }

    .password-wrapper input {
      padding-right: 35px;
    }

    .eye-icon {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: #000;
      font-size: 16px;
    }

    .login-btn {
      border: none;
      outline: none;
      color: #fff;
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 25px;
      cursor: pointer;
      background-color: transparent;
      background-image: linear-gradient(89deg, #C7A04C 43%, #EAD98C 100%);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .login-btn i {
      font-size: 16px;
    }
.star{
    margin-top: 30px;
    margin-bottom: 30px;
}
.image-hover-box {
  position: relative;
  width: 350px;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.image-hover-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.image-hover-box:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}

.hover-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(89deg, #C7A04C 43%, #EAD98C 100%);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-hover-box:hover .hover-btn {
  opacity: 1;
  color: #fff;
  text-decoration: none;
}


         /* faq */
.faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
  }

  .faq-section h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #fff;
  }

  .faq-item {
    background: #000;
    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: 2px solid #fff;
    background: linear-gradient(89deg, #C7A04C 43%, #EAD98C 100%);
    color: #000;
  }

  .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: #fff;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }

    /* ======= Footer Main ======= */
    footer {
      background: #8B4E01; 
      color: #fff;
      padding: 50px 8%;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 40px;
    }

    /* ======= Logo Section ======= */
    .footer-logo h4 {
      color: #ffcc00;
      font-weight: 800;
      font-size: 32px;
      text-align: start !important;
    }
    .footer-container h4{
        text-align: start !important;
        margin-left: 30px;
    }
    .footer-logo h4 span {
      color: #fff;
      background-color: transparent;
    }

    .footer-logo p {
      margin-top: 15px;
      line-height: 1.7;
      font-size: 15px;
    }

    .footer-logo p span {
      color: #ffcc00;
      font-weight: 600;
    }

    /* ======= Links ======= */
    h4 {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 600;
    }

    ul {
      list-style: none;
    }

    ul li {
      margin-bottom: 10px;
    }

    ul li a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
    }

    ul li a:hover {
      color: #ffcc00;
    }

    /* ======= Social Icons ======= */
    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      border-radius: 5px;
      background: goldenrod;
      color: #fff;
      transition: 0.3s;
      font-size: 18px;
    }

    .social-icons a:hover {
      background: #ffcc00;
      color: #000;
    }

    /* ======= Bottom Bar ======= */
    .footer-bottom {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 15px;
      font-size: 14px;
    }

    .footer-bottom a {
      color: #ffcc00;
      text-decoration: none;
      font-weight: 600;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* ======= Responsive ======= */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 576px) {
      .footer-container {
        grid-template-columns: 1fr;
      }

    

      .social-icons {
        justify-content: center;
      }
    }

         /*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*/ 
    @media only screen and (max-width: 476px){
    .login-container input {
        display: none;
    }
    .login-btn {
        margin-left: 40px;
    }
    .eye-icon{
      display: none;
    }
    .image-hover-box {
        width: 100%;
    }

    .faq-section {
        padding: 10px;
    }
    p{
      text-align: justify;
    }
    footer {
      padding: 15px;
    }
    }