/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a {
  text-decoration: none;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
  transition: 0.3s ease;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.logo span {
  color: #e65a1e;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #e65a1e;
}
.btn {
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.primary-btn {
  background: #e65a1e;
  color: #fff;
}
.secondary-btn {
  background: transparent;
  border: 1.5px solid #e65a1e;
  color: #e65a1e;
}
.btn:hover {
  transform: scale(1.05);
}

/* ---------- MOBILE NAV MENU ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.desktop-btn {
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  background: url("assets/fact3.jpg") center/cover no-repeat;
  /* background: #EEAECA;
  background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.hero-content p {
  color: #ddd;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ---------- SECTION ---------- */
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

/* ---------- ABOUT ---------- */
.about-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}
.about-container video{
    width: 50%;
  height: 40%;
  border: 1px solid #555;
  border-radius: 10px;
}
.about-img img {
  width: 100%;
  border-radius: 15px;
}
.about-text p {
  color: #555;
  line-height: 1.6;
  margin: 20px 0;
}
.about-text h2{
  margin-bottom: 20px;
}
.about-text h2 span{
  color: #e65a1e;
}
.about-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.about-stats li strong {
  color: #e65a1e;
}

/* ---------- PRODUCTS ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.containers{
  width: 100%;
  overflow-x: scroll; /* x-axis par scroll allow karega */
  overflow-y: hidden; /* y-axis scroll hatayega */
  white-space: nowrap; /* items ek line me rakhega */
  scrollbar-width: none;
}
.containers .product-card{
  display: inline-block;
  width: 300px;
  height: 600px;
  background: lightblue;
  margin-right: 10px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;

}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover img {
  transform: scale(1.1);
}
.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}
.product-card:hover .card-overlay {
  opacity: 1;
}

/* ---------- PROCESS ---------- */
.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  
}
.step span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #e65a1e;
  color: #fff;
  border-radius: 50%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ---------- CONTACT ---------- */
.contact-container {
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 20px auto 0;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
}
.contact-form textarea {
  resize: none;
  height: 120px;
}
.contact-form .btn{
  border: none;
}

/* ---------- FOOTER ---------- */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
footer .link{
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 10px;
  margin-right: 50px;

}
.link img{
  width: 60px;
}
.link #india{
 margin-right: 50px;
}
.link #whatsapp{
  position: fixed;
  bottom: 40px;
  width: 30px;
  height: 50px;

}
.details{
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
  margin-left:5%;
}
.details .logo{
  margin-left: 40%;
  
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-img video{
    width: 95%;
    height: 75%;
  }
}
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    display: none;
    text-align: center;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .desktop-btn {
    display: none;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .process-steps {
    justify-content: center;
  }
  .about-img video{
    width: 95%;
    height: 75%;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .about-stats {
    justify-content: center;
  }
}



