/* ----------------------------------------------------
   GLOBAL STYLES
---------------------------------------------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}



/* ----------------------------------------------------
   BANNER
---------------------------------------------------- */
.banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background:
    url("img1.png") left center / 33.33% 100% no-repeat,
    url("img2.png") center center / 33.33% 100% no-repeat,
    url("img3.png") right center / 33.33% 100% no-repeat;
  position: relative;
  animation: slowZoom 12s linear infinite alternate;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}



/* ----------------------------------------------------
   GLASS PANEL
---------------------------------------------------- */
.glass {
  width: 40%;
  background: rgba(255,193,7,0.5);
  padding: 40px;
  border-radius: 0 25px 25px 0;
  z-index: 1;
}

.logo {
  width: 140px;
  border-radius: 50%;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.glass h1 {
  font-size: 34px;
  color: #2c1a00;
  margin-bottom: 10px;
}

.glass p {
  max-width: 350px;
  color: #3a2500;
  line-height: 1.6;
}

.btn {
  background: linear-gradient(135deg,#000,#3a3a3a);
  color: gold;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}
.btn:hover { transform: scale(1.08); }



/* ----------------------------------------------------
   ABOUT SECTION
---------------------------------------------------- */
.about {
  background: #fff9e3;
  padding: 10px 20px;
}
.about-container { max-width: 900px; margin: auto; }
.about-text h2 {
  text-align: center;
  font-size: 34px;
  color: #2c1a00;
}
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a3200;
}



/* ----------------------------------------------------
   SCREENSHOTS
---------------------------------------------------- */
.screenshots {
  padding: 10px 20px;
  text-align: center;
}

.slider {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(240px * 8);
  animation: scroll 40s linear infinite;
}

.slide {
  width: 230px;
  margin: 0 15px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.slide:hover { transform: scale(1.1); }



/* ----------------------------------------------------
   REVIEWS
---------------------------------------------------- */
.reviews {
  background: #fff9e6;
  padding: 10px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 34px;
  color: #2b1a00;
}

.review-sub {
  color: #6a4a00;
  margin-bottom: 30px;
}

.review-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.review-card {
  width: 280px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  color: #4a3200;
}



/* ----------------------------------------------------
   CONTACT FORM
---------------------------------------------------- */
.contact-new {
  padding: 10px 20px;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 90%;
  max-width: 1100px;
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.contact-left {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 30px;
}

.contact-left img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
}

.contact-right {
  flex: 1;
  background: #ffd400;
  padding: 40px 35px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  background: rgba(255,255,255,0.9);
}

/* NEW BUTTON DESIGN */
.form-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #e7e7e7);
  color: #000;
  padding: 15px;
  border: 2px solid #000;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-btn:hover {
  background: #000;
  color: #ffd400;
}
.contactushead{
  font-size: 34px;text-align: center;
}


/* ----------------------------------------------------
   PRIVACY POLICY UI
---------------------------------------------------- */
.privacy-ui {
  background: #fff9e3;
  padding: 10px 20px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-header h2 {
  font-size: 34px;
  color: #2c1a00;
}

.privacy-header p {
  font-size: 18px;
  color: #4a3200;
}

.privacy-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.privacy-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.privacy-card:hover {
  transform: translateY(-8px);
}

.privacy-card h3 {
  font-size: 20px;
  color: #2c1a00;
}

.privacy-card ul li {
  color: #4a3200;
  font-size: 15px;
}

.privacy-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
}



/* ----------------------------------------------------
   TERMS UI
---------------------------------------------------- */
.terms-ui {
  background: #fff9e6;
  padding: 10px 20px;
}
.footer-logo{
border-radius: 50%;
}
.terms-header {
  text-align: center;
  margin-bottom: 40px;
}

.terms-header h2 {
  font-size: 34px;
  color: #2c1a00;
}

.terms-box {
  max-width: 1100px;
  margin: auto;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.terms-box h3 {
  font-size: 22px;
  color: #2c1a00;
}

.terms-box p,
.terms-box li {
  color: #4a3200;
  font-size: 16px;
  line-height: 1.7;
}



/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer {
  background: #ffd400;
  padding: 10px 20px;
}
.footer-right a{
  color: #000;text-decoration: none;
}
.footer-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  width: 110px;
}

.footer-middle a {
  display: block;
  margin: 6px 0;
  color: #000;
  font-size: 16px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 16px;
}



/* ----------------------------------------------------
   RESPONSIVENESS
---------------------------------------------------- */
@media(max-width: 900px) {

  .glass {
    width: 90%;
    border-radius: 25px;
    text-align: center;
  }

  .slide {
    width: 160px;
  }

  .contact-card {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media(max-width: 600px) {
.logo{
  width: 100px;
  margin: auto;

}
.terms-header h2{
  font-size: 20px;
}
.terms-box {
padding: 5px;
}

  .privacy-header h2,
  .terms-header h2 {
    font-size: 32px;
  }

  .privacy-card,
  .terms-box {
    padding: 20px;
  }

  .footer-logo {
    width: 80px;
  }
}
@media(max-width: 600px) {
.banner {
    height: unset;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(img1.png) left center / 100.33% 100% no-repeat;
    /* position: relative; */
    animation: slowZoom 12s linear infinite alternate;
}
.glass h1 {
    font-size: 18px;
}
}
/* ----------------------------------------------------
   ANIMATIONS
---------------------------------------------------- */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
