* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.product-section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  gap: 40px;
}

/* GALLERY */
.gallery {
  width: 55%;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

.slider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
    cursor: pointer;
    z-index: 10;
}

.prev { 
    left: 14px; 
    font-size:25px;
}
.next { 
    right: 14px;
font-size:25px;
 }

.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.thumbnails img {
  /* width: 170px; */
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnails img.active {
  opacity: 1;
  border-color: #000;
}

/* CONTENT */
.content {
  width: 45%;
}

.content p {
    color: #444;
    font-size: 15px;
    font-family: "poppins", sans-serif;
}

.info-grid li {
    color: #444;
    font-size: 15px;
    font-family: "poppins", sans-serif;
}


.enquire-btn {
  display: inline-block;
  margin: 14px 0;
  padding: 10px 18px;
  background: #0b2c5f;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.mainImage{
width: 100%;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .product-section {
    flex-direction: column;
  }

  .gallery, .content {
    width: 100%;
  }

  .slider img {
    height: 360px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}


.hero-slider-1 {
  width: 100%;
  height: 650px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slider-wrapper-1 {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slide */
.slide-1 {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
}

.slide-1.active-1 {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-img-1 {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

/* Navigation */
.nav-1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 40px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
}

.prev-1 { left: 20px; }
.next-1 { right: 20px; }

/* Dots */
.dots-1 {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dots-1 span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dots-1 span.active-1 {
  background: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-slider-1 {
    height: 60vh;
  }
}

#homepageslideimg1{
  width: 1920px;
  height: 700px;
  object-fit: cover;
}