*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

html{scroll-behavior:smooth;}

body{
  background:#050505;
  color:#fff;
}

/* NAVBAR */
.navbar{
  width:100%;
  height:120px;
  position:absolute;
  top:0;
  left:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 45px;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);
}

.nav-left,.nav-right{width:33%;}
.nav-center{
  width:34%;
  display:flex;
  justify-content:center;
}

.brand-name{
  color:#fff;
  font-size:52px;
  font-weight:700;
  letter-spacing:3px;
}

.header-logo{
  width:110px;
  height:110px;
  object-fit:contain;
}

.nav-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:30px;
}

.nav-right a{
  color:white;
  text-decoration:none;
  font-size:20px;
  font-weight:600;
}

.nav-right a:hover{color:#c89b3c;}

/* DROPDOWN */
.dropdown{position:relative;}

.dropdown::after{
  content:"";
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:25px;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:350px;
  background:#000;
  border:2px solid #c89b3c;
  border-radius:25px;
  display:none;
  overflow:hidden;
  z-index:99999;
}

.dropdown:hover .dropdown-menu{display:block;}

.dropdown-menu li{list-style:none;}

.dropdown-menu li a{
  display:block;
  text-align:center;
  padding:22px 10px;
  color:white;
  font-size:20px;
  border-bottom:1px solid rgba(200,155,60,0.5);
}

.dropdown-menu li:last-child a{border-bottom:none;}

.dropdown-menu li a:hover{
  background:#111;
  color:#c89b3c;
}

/* HERO */
.hero{
  height:100vh;
  background:url("videos/main.webp") center/cover no-repeat;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:80px;
}

.hero-overlay h1{
  font-size:80px;
  margin-bottom:20px;
}

.hero-overlay p{
  font-size:28px;
  max-width:700px;
}

/* PRODUCTS */
.single-product{
  padding:100px 8%;
  background:#050505;
}

.single-product h2{
  text-align:center;
  font-size:50px;
  margin-bottom:70px;
}

.product-box,
.second-product{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:80px;
  background:#101010;
  padding:45px;
  margin-bottom:80px;
  border-radius:18px;
  box-shadow:0 10px 35px rgba(0,0,0,0.45);
}

/* SLIDER */
.slider{
  position:relative;
  width:570px;
  height:570px;
  overflow:hidden;
  border-radius:18px;
  background:#050505;
  flex-shrink:0;
}

/* ALL SLIDES */
.ganesh-slide,
.lakshmi-slide,
.natraj-slide,
.bell-slide,
.bell2-slide,
.vbell-slide,
.stone-slide,
.duo-slide,
.slide9,
.slide10,
.slide11,
.slide12,
.slide13{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:#050505;
  opacity:0;
  visibility:hidden;
  transition:opacity 0.6s ease, transform 0.6s ease;
  border-radius:18px;
}

/* ACTIVE SLIDES */
.ganesh-slide.active1,
.lakshmi-slide.active2,
.natraj-slide.active3,
.bell-slide.active4,
.bell2-slide.active5,
.vbell-slide.active6,
.stone-slide.active7,
.duo-slide.active8,
.slide9.active9,
.slide10.active10,
.slide11.active11,
.slide12.active12,
.slide13.active13{
  opacity:1;
  visibility:visible;
}

/* HOVER ZOOM */
.slider:hover img{
  transform:scale(1.08);
}

/* TEXT */
.product-content,
.product-details{
  width:520px;
}

.product-content h3,
.product-details h2{
  font-size:64px;
  line-height:1.1;
  margin-bottom:30px;
  color:#fff;
}

.product-content p,
.product-details .description{
  font-size:22px;
  line-height:1.8;
  color:#d9d9d9;
}

/* BUTTON */
.instagram-btn,
.buy-btn,
.btn{
  display:inline-block;
  padding:18px 45px;
  background:#c49a3c;
  color:white;
  text-decoration:none;
  border-radius:6px;
  font-size:20px;
  font-weight:600;
}

.instagram-btn:hover,
.buy-btn:hover,
.btn:hover{
  transform:translateY(-3px);
}

/* ABOUT CONTACT */
.about,
.contact{
  padding:100px 15%;
  text-align:center;
  background:#080808;
}

.about h2,
.contact h2{
  font-size:42px;
  margin-bottom:20px;
}

.about p,
.contact p{
  color:#ccc;
  font-size:18px;
  line-height:1.8;
}

/* FOOTER */
footer{
  background:#111;
  color:white;
  text-align:center;
  padding:30px;
}

.footer-social{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:20px;
}

.footer-social a{
  width:55px;
  height:55px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:white;
  text-decoration:none;
  font-size:26px;
  transition:0.3s;
}

.footer-social a:hover{
  transform:translateY(-6px) scale(1.1);
}

/* ENQUIRY */
.enquiry-section{
  width:90%;
  max-width:700px;
  margin:80px auto;
  background:#111;
  padding:50px;
  border-radius:24px;
  text-align:center;
}

.enquiry-section h2{
  font-size:45px;
  margin-bottom:30px;
}

#enquiryForm{
  display:flex;
  flex-direction:column;
  gap:20px;
}

#enquiryForm input{
  padding:18px;
  border:none;
  border-radius:12px;
  background:#1d1d1d;
  color:white;
  font-size:17px;
}

#enquiryForm button{
  padding:18px;
  border:none;
  border-radius:12px;
  background:#c49a3c;
  color:white;
  font-size:19px;
  font-weight:600;
}

/* MOBILE */
@media(max-width:900px){

  .navbar{
    height:auto;
    padding:18px 20px;
  }

  .brand-name{
    font-size:30px;
  }

  .header-logo{
    width:70px;
    height:70px;
  }

  .nav-right{
    display:none;
  }

  .hero-overlay{
    padding-left:25px;
  }

  .hero-overlay h1{
    font-size:45px;
  }

  .hero-overlay p{
    font-size:18px;
  }

  .product-box,
  .second-product{
    flex-direction:column;
    gap:35px;
    padding:25px;
  }

  .slider{
    width:100%;
    height:420px;
  }

  .product-content,
  .product-details{
    width:100%;
    text-align:center;
  }

  .product-content h3,
  .product-details h2{
    font-size:38px;
  }

  .product-content p,
  .product-details .description{
    font-size:17px;
  }
}