:root{
  --dark:#0B1C2D;
  --gold:#FFD700;
  --white:#ffffff;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
  background:var(--dark);
  color:var(--white);
  font-family:'Poppins',sans-serif;
}
h1,h2,h3{
  font-family:'Libre Caslon Display', serif;
}


/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(11, 28, 45, 0.95);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.logo {
  height: 45px;
}

/* =========================
   MENU
========================= */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #caa149;
  text-decoration: none;
  padding: 10px 14px;
  display: block;
}

/* 🔥 BUTTON RESET (BUG #1 FIX) */
.dropdown-toggle,
.sub-toggle {
  background: none;
  border: none;
  color: #caa149;
  font: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
}

/* =========================
   DESKTOP DROPDOWNS
========================= */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(11, 28, 45,0.75) ;
    backdrop-filter: blur(2px);
  display: none;
  list-style: none;
  min-width: 180px;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-sub {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: rgba(11, 28, 45,0.75) ;
    backdrop-filter: blur(2px);
  display: none;
  min-width: 150px;
}

.dropdown-sub:hover > .sub-menu {
  display: block;
}

.dropdown-menu li a,
.sub-menu li a {
  padding: 12px 20px;
}

.dropdown-menu li a:hover,
.sub-menu li a:hover  {
  background: #1c3a5a;
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #caa149;
  cursor: pointer;
}
/* =========================
   MOBILE STYLES (FIXED)
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(11, 28, 45,0.75) ;
    backdrop-filter: blur(2px);
    flex-direction: column;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* 🔥 MOBILE DROPDOWN FIX (BUG #2) */
  .dropdown-menu,
  .sub-menu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: rgba(11, 28, 45,0.75) ;
    backdrop-filter: blur(2px);
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }

  .dropdown.open > .dropdown-menu {
    max-height: 600px;
    opacity: 1;
  }

  .dropdown-sub.open > .sub-menu {
    max-height: 300px;
    opacity: 1;
  }

  /* 🔥 SUB MENU INDENT (BUG #3 FIX) */
  .sub-menu a {
    padding-left: 45px;
    background: #0e2236;
  }

  /* Disable hover on mobile */
  .dropdown:hover > .dropdown-menu,
  .dropdown-sub:hover > .sub-menu {
    display: block;
  }
}


/* ===== HERO ===== */
.hero{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

.slides{
  position:relative;
  width:100vw;
  height:100%;
   
}

.slide{
  position:absolute;
  top: -3px;
  left: -120px;
  width:100dvw;
  height:100vh;

  background-repeat:no-repeat;
  background-size:cover;        /* 🔑 THIS makes image fill */
  background-position:center;   /* 🔑 Keeps image centered */

  opacity:0;
  transition:opacity 0.75s ease;
}

.slide.active{
  opacity:1;
}


/* ---------- DESKTOP IMAGES ---------- */
.slide-1{ background-image:url('img/herol1.png'); }
.slide-2{ background-image:url('img/herol2.png'); }
.slide-3{ background-image:url('img/herol3.jpeg'); }

/* ---------- HERO CONTENT (DESKTOP) ---------- */
.hero-content{
  position:absolute;
  z-index: 2;
  right:8%;
  bottom:25%;
  text-align:left;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:3rem;
  color:var(--gold);
}

.hero-btn{
  display:inline-block;
  margin-top:20px;
  padding:10px 20px;
  border:1px solid var(--gold);
  border-radius: 25px;
  color:var(--gold);
  text-decoration:none;
  transition:0.3s;
}

.hero-btn:hover{
  background:var(--gold);
  color:black;
}

@media (max-width:900px){

  .slide{
  position:absolute;
  top: -3px;
  left: -65px;
  width:100dvw;
  height:100vh;
  }


  /* Mobile images */
  .slide-1{ background-image:url('img/hero6.jpeg'); }
  .slide-2{ background-image:url('img/hero3.jpeg'); }
  .slide-3{ background-image:url('img/herol3.jpeg'); }

  /* Center text */
  .hero-content{
    left:50%;
    right:auto;
    bottom:15%;
    transform:translateX(-50%);
    text-align:center;
  }

  .hero h1{
    font-size:2rem;
  }
}

/* ---------- MOBILE STYLES ---------- */
@media (max-width:768px){

  .slide{
  position:absolute;
  top: -3px;
  left: -29px;
  width:100dvw;
  height:100vh;
  }


  /* Mobile images */
  .slide-1{ background-image:url('img/hero6.jpeg'); }
  .slide-2{ background-image:url('img/hero3.jpeg'); }
  .slide-3{ background-image:url('img/heromob2.jpeg'); }

  /* Center text */
  .hero-content{
    left:50%;
    right:auto;
    bottom:15%;
    transform:translateX(-50%);
    text-align:center;
  }

  .hero h1{
    font-size:2rem;
  }
}



/* Product*/

.products {
  padding: 60px 5%;
  text-align: center;
  background-color: #0B1C2D;
}


.section-title {
  font-size: 36px;
  color: #0B1C2D;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #0B1C2D;
  border-radius: 25px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.product-card:hover {
  box-shadow:
    0 0 10px rgba(255, 215, 0, 0.6),
    0 0 25px rgba(255, 215, 0, 0.5),
    0 0 45px rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
}


.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 45, 0.9);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  text-align: left;
}

.product-overlay h4 {
  margin-bottom: 10px;
  color: #caa149;
}

.product-overlay p {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Hover Effects */
.product-card:hover img {
  transform: scale(1.08);
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}


/* Product Name & Description */
.product-card h5 {
  margin-top: 15px;
  font-size: 18px;
}

.product-desc {
  font-size: 14px;
  color: #fff;
  margin: 8px ;
}


@media (max-width: 760px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr)!important;
    gap: 5px;
  }

  .product-card {
    border-radius: 15px;
    overflow: hidden;
  }

  .product-img img {
    height: auto;
    object-fit: cover;
  }

  .product-overlay {
    position: relative; /* no hover overlay on mobile */
    opacity: 1;
    transform: translateY(0);
    background: #0B1C2D; /* solid color for readability */
    color: #caa149;
    padding: 5px;
  }

  .product-overlay h4 {
    font-size: 12px;
    margin-bottom: 1px;
  }

  .product-overlay p {
    font-size: 8px;
    margin-bottom: 2px;
     color: #fff;
  }

  .product-card h5 {
    font-size: 14px;
    margin-top: 2px;
  }

  .product-desc {
    font-size: 9px;
    margin: 2px 1px;
    color: #fff;
  }
}

/* ===== PRODUCTS ===== */
.products{
  padding:100px 5%;
  text-align:center;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}
.product-img{
  position:relative;
  overflow:hidden;
}
.product-img img{width:100%}
.product-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:flex;
  flex-direction:column;
  justify-content:center;
  opacity:0;
  transition:.4s;
}
.product-img:hover .product-overlay{opacity:1}
.product-overlay h4{color:var(--gold)}
.product-card h5{margin-top:10px}



/* ----------our Colletions ------- */

.section-p1 {
  padding: 60px 0;
  text-align: center;
  background-color: #475c70;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
}
.section-title h2{
  color: #000;
}

/* SLIDER */
.simple-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 20px 30px;
  -webkit-overflow-scrolling: touch;
}

.simple-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.slide-card {
  min-width: 190px;
  flex-shrink: 0;
  text-decoration: none;
  color: #0c0c0c;
  scroll-snap-align: center;
  border-radius: 10px;
   transition: box-shadow 0.3s ease, transform 0.3s ease;
}


/* CIRCLE IMAGE */
.circle-img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin-top: 25px;
  overflow: hidden;
  background: #eee;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.circle-img:hover {
  box-shadow:
    0 0 10px rgba(255, 215, 0, 0.6),
    0 0 25px rgba(255, 215, 0, 0.5),
    0 0 45px rgba(255, 215, 0, 0.4);
  transform: translateY(-6px);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT BELOW */
.slide-card h3 {
  margin-top: 12px;
  color: #caa149;
}

/* MOBILE */
@media (max-width: 480px) {
  .circle-img {
    width: 160px;
    height: 160px;
  }

  .slide-card {
    min-width: 160px;
  }
}


/*About us */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* COMMON */
section {
  padding: 80px 8%;
}

/* ===== ABOUT SECTION ===== */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #f5f5f5;
  color: #111;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.about-line {
  width: 60px;
  height: 3px;
  background: #111;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  max-width: 520px;
}

/* ===== WHY US SECTION ===== */
.why {
  background: radial-gradient(circle at center, #1a1a1a, #000);
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.why-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
  max-width: 520px;
  margin-bottom: 30px;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f7e7a3);
  margin-top: 8px;
  flex-shrink: 0;
}

.why-item span {
  font-size: 14px;
  color: #e6e6e6;
}

.why-img img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .about,
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-line {
    margin: 24px auto;
  }
}





.reviews {
  padding: 80px 5%;
  background: #0B1C2D;
  text-align: center;
}

.section-title {
  color: #caa149;
  font-size: 36px;
  margin-bottom: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 15px;
  color: #fff;
  max-width: 500px;
  margin: auto;
  transition: 0.4s;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card h4 {
  color: #FFD700;
  margin-bottom: 5px;
}

.review-card span {
  color: gold;
  font-size: 18px;
}

/* Swiper dots */
.swiper-pagination {
  bottom: 10px !important;
}
.review-swiper {
  padding-bottom: 60px; /* space for dots */
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #FFD700, #b8860b);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

 /* Get In */
.contact {
  padding: 80px 5%;
  background: #0B1C2D;
  color: #fff;
  text-align: center;
}

.contact h2 {
  color: #caa149;
  margin-bottom: 30px;
}

form {
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
}

button {
  background: linear-gradient(135deg, #caa149, #c9a227);
  color: #000;
  padding: 14px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}



/* ===== Footer Styles ===== */
.footer {
  background: #0B1C2D; /* Dark Green */
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-contact h4,
.footer-map h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #caa149; /* Gold Accent */
}

.footer-contact p {
  margin: 5px 0;
  line-height: 1.6;
}

.footer-contact a {
  color: #caa149;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 22px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

/* Map */
.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Visitor Counter */
.visitor-counter {
  text-align: center;
  margin-top: 50px;
}

.visitor-counter h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #064D34;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: #FFD700;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media screen and (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    gap: 50px;
  }

  .footer-contact,
  .footer-map {
    flex: 1;
  }

  .footer-map iframe {
    height: 300px;
  }
}


.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;

  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  z-index:9999;
  text-decoration:none;

  box-shadow:0 8px 25px rgba(0,0,0,0.25);

  /* floating animation */
  animation:floaty 2.5s ease-in-out infinite;
}

/* floating up-down */
@keyframes floaty{
  0%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
  100%{transform:translateY(0);}
}

/* popup text ALWAYS visible */
.wa-text{
  position:absolute;
  bottom:75px;
  right:0;

  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;

  padding:10px 16px;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;

  box-shadow:0 8px 25px rgba(0,0,0,0.25);

  opacity:1;                 /* always visible */
  transform:translateY(0);   /* remove hover animation */
}

/* arrow */
.wa-text::after{
  content:"";
  position:absolute;
  bottom:-8px;
  right:22px;

  width:0;
  height:0;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-top:8px solid #128C7E;
}
