
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100vh; /* full viewport height */
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


    /* SLIDER AT TOP */
.slider-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative; /* remove absolute */
  z-index: 1;
}


    .slider-track {
      display: flex;
      animation: scroll 40s linear infinite;
      width: max-content;
    }

.slider-track img {
  height: 160px;
  width: auto; /* Change from fixed width to auto */
  max-height: 160px;
  margin: 10px;
  object-fit: cover;
  border-radius: 8px;
}

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* CONTENT SECTION BELOW SLIDER */
    /*.main-content {*/
    /*  height: calc(100% - 180px);*/
    /*  display: flex;*/
    /*  flex-direction: column;*/
    /*  justify-content: center;*/
    /*  align-items: center;*/
    /*  text-align: center;*/
    /*  padding: 10px 20px;*/
    /*}*/
    
    .main-content {
  flex: 1;
  position: relative;
  width: 100%;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


    .main-content h2 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #fff;
    }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive */
  gap: 15px;
  width: 100%;         /* Full width */
  max-width: 100vw;    /* Limit to viewport */
  padding: 0 0px;     /* Add optional padding */
}


    .gallery img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: 10px;
    }

    /* MODAL STYLES */
    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2;
    }

    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 3;
    }

    .modal-content {
      background: 	#141414;
      padding: 50px 30px;
      border-radius: 12px;
      width: 95%;
      max-width: 520px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    .modal-content img.logo {
      max-height: 70px;
      margin-bottom: 20px;
    }

    .modal-content h2 {
      margin-bottom: 15px;
      font-size: 24px;
      color: white;
    }

    .modal-content input[type="email"], .otp-input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 12px;
    }

    .modal-content p.terms {
      font-size: 12px;
      color: #666;
      margin-bottom: 20px;
    }

    .modal-content p.terms a {
      text-decoration: none;
      color: #666;
      font-weight: 800;
    }

    .modal-content button {
      background-color: #e89d03;
      color: white;
      border: none;
      padding: 12px 50px;
      border-radius: 24px;
      cursor: pointer;
      font-size: 16px;
    }

    .close-modal {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      background: none;
      border: none;
      cursor: pointer;
    }

    @media screen and (max-width: 768px) {
      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }