@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Quicksand', sans-serif;
  color: #333;
}

:root {
  --gold: #f0a500;
  --black: #101010;
}

/* Loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.loader {
  width: 55px;
  height: 55px;
  border: 6px solid var(--gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
.sticky-header {
  background: var(--black);
  padding: 12px 50px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-img {
  height: 55px;
}
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
nav a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

/* Hover underline smooth effect */
nav ul li a {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff; /* âœ… underline white */
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* ----- MOBILE MENU STYLE ----- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  display: block;
  transition: 0.3s;
}

/* RIGHT-SLIDE MENU */
#mobileMenu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #000;
  padding-top: 90px;
  transition: 0.4s ease;
  z-index: -9999;
}

#mobileMenu ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 25px;
}

#mobileMenu ul li a {
  color: var(--gold);
  font-size: 18px;
}

/* Active State */
#mobileMenu.active {
  right: 0;
}

/* Dark overlay */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Desktop Dropdown */
.desktop-menu .dropdown-menu {
  display: block;
}

.desktop-menu .dropdown-menu2 {
  display: block;
}
.dropdown {
  position: relative;
}

.dropdown2 {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: var(--black);
  list-style: none;
  padding: 10px 0;
  width: 180px;
  /* border: 2px solid var(--gold); */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu2 {
  position: absolute;
  top: 52px;
  left: 0;
  background: var(--black);
  list-style: none;
  padding: 10px 0;
  width: 180px;
  /* border: 2px solid var(--gold); */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: var(--gold);
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: var(--gold);
  color: #000;
}

.dropdown-menu2 li a:hover {
  background: var(--gold);
  color: #000;
}

/* Hover Show Dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown2:hover .dropdown-menu2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* -------- MOBILE DROPDOWN -------- */
.dropdown-menu-mobile {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  padding-top: 10px;
}

.dropdown-menu-mobile li a {
  padding: 10px 0;
  font-size: 17px;
  color: var(--gold);
}

/* When open */
.dropdown-mobile.open .dropdown-menu-mobile {
  display: flex;
}

/* Hide menu desktop */
@media (max-width: 850px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Slider */
.slick-dots {
  bottom: -35px;
}

/* Each dot */
.slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
  opacity: 1;
}

/* Active dot */
.slick-dots li.slick-active button:before {
  color: #ff6600;   /* brand color */
  font-size: 14px;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: #ff6600;
  border-radius: 50%;
  z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
  background: #000;
}

/* Arrow icon color */
.slick-prev:before,
.slick-next:before {
  color: #fff;
  font-size: 20px;
}

/* Position */
.slick-prev {
  left: 10px;
}
.slick-next {
  right: 10px;
}

/*.slider .slide h2 {*/
/*  background: rgba(0, 0, 0, 0.45);*/
/*  padding: 10px 20px;*/
/*  border-radius: 5px;*/
/*  color: #fff;*/
/*  font-size: 2rem;*/
/*}*/
/* Slider container */
.slider .slide {
  width: 100%;
/* height: 50vh;          /* Desktop height */
  overflow: hidden;
}
.slider2 .slide {
    width: 100%;
    height: 450px;
}
/* Slider image */
.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* ðŸ”¥ KEY: prevents stretch */
}

@media (min-width: 1441px) and (max-width: 2560px) {
  /* styles */
    .slider2 .slide {
        width: 100%;
        height: 650px;
      }
}

/* Mobile view */
@media (max-width: 768px) {
  .slider .slide {
    height: 43vh;        /* Mobile-friendly height */
  }
  .slider2 .slide {
    width: 100%;
    height: auto !important;
}
}



/* Section */
.content-section {
  padding: 30px 5%;
  text-align: center;
}
.content-section-product{
    padding: 80px 5%;
    text-align: center;
}

.dark {
  background: #f8f9fa;
}
.content-section h2 {
  margin-bottom: 15px;
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 700;
}
.content-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--black);
  display: block;
  margin: 10px auto;
}

.who-section{
    text-align: justify;
}

.who-section h2 {
    text-align: center;
}

/* Product Section */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(40px);
  /* opacity: 0; */
  transition: 0.6s ease;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  transition: 0.4s ease;
}

/* Hover Animations */
.card:hover img {
  transform: scale(1.12);
}

.card h3 {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.4s ease;
  opacity: 0;
  white-space: nowrap;
  font-size: 16px;
}

.card:hover h3 {
  bottom: 20px;
  opacity: 1;
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 80px 5%;
}

.contact-wrapper {
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  width: 48%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-left h2,
.contact-right h2 {
  margin-bottom: 15px;
  font-size: 26px;
  color: var(--gold);
  border-bottom: 3px solid #111;
  display: inline-block;
}
.broucher{
    width: auto !important;
    background: var(--gold);
    border: none;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #111;
    border-radius: 8px;
    transition: 0.3s;
}

form label {
  display: block;
  font-size: 15px;
  margin: 10px 0 5px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  outline: none;
}

button {
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #111;
  border-radius: 8px;
  transition: 0.3s;
}

button:hover {
  background: #111;
  color: var(--gold);
}

.contact-info {
  padding: 0;
  list-style: none;
  margin: 15px 0;
}

.contact-info li {
  margin: 10px 0;
  font-size: 17px;
}

.social-links a {
  margin-right: 15px;
  font-size: 18px;
  color: var(--gold);
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 900px) {
  .contact-left,
  .contact-right {
    width: 100%;
  }
}

/* Footer */
footer {
  background: var(--black);
  color: var(--gold);
  text-align: center;
  padding: 15px 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}


/* âœ… Product Detail Style */
.product-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 60px 5%;
}
.product-img {
  width: 450px;
  border-radius: 12px;
}
.product-info h1 {
  font-size: 38px;
  color: var(--gold);
}

.product-details-row {
  /*display: grid;*/
  grid-template-columns: 1fr 1fr; /* âœ… 2 columns */
  gap: 40px;
  padding: 50px 5%;
  align-items: start;
}

.product-details-row h2, .product-details-row h3{
    color: var(--gold);
}

/* Left Column */
.product-why ul {
  padding-left: 18px;
  line-height: 1.6;
  font-size: 18px;
  color: #333;
  margin-top: 20px;
}

/* Right Column */
.spec-grid {
  display: grid;
  /* grid-template-columns: 1fr; */
  gap: 0px;
  margin-top: 20px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold);
  font-size: 18px;
}
.spec-item span {
  color: #444;
}
.spec-item strong {
  color: var(--black);
}

/* âœ… Mobile Responsive */
@media (max-width: 768px) {
  .product-hero { flex-direction: column; text-align: center; }
  .product-img { width: 100%; max-width: 350px; }
  .product-actions { flex-direction: column; }
  .product-details-row {
    grid-template-columns: 1fr;
  }
}

.subproduct-images {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;        /* desktop: one line */
    justify-content: flex-start; /* last image stays LEFT */
    overflow-x: auto;
}

/* image box */
.subproduct-images .img-box {
    flex: 0 0 auto;
}

.subproduct-images img {
    width: 100px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.img-box {
    display: flex;
    flex-direction: column; /* 👈 image top, text bottom */
    align-items: center;
    text-align: center;
}

.img-box img {
    width: 100px;
    height: 150px;
    object-fit: contain;
}

.img-title {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* 📱 Mobile: 2 images per row */
@media (max-width: 768px) {
    .subproduct-images {
        flex-wrap: wrap;
    }

    .subproduct-images .img-box {
        width: calc(50% - 10px); /* 2 per row */
        display: flex;
        justify-content: center;
    }

    .subproduct-images img {
        width: 90px;
    }
}

