:root {
  /* ===== BRAND COLORS ===== */
  --gold-primary: #b48a2c;
  --gold-light: #f5d27a;
  --gold-dark: #a67c32;

  /* ===== NEUTRAL COLORS ===== */
  --black-primary: #111111;
  --dark-secondary: #2c2c2c;
  --gray-text: #555555;
  --gray-light: #fafafa;
  --white: #ffffff;

  /* ===== GRADIENTS ===== */
  --gold-gradient: linear-gradient(
    45deg,
    var(--gold-primary),
    var(--gold-light)
  );
  --gold-gradient-hover: linear-gradient(45deg, var(--gold-dark), #eac56b);

  /* ===== SHADOWS ===== */
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 15px 30px rgba(182, 141, 64, 0.35);

  /* ===== BORDER RADIUS ===== */
  --radius-large: 20px;
  --radius-pill: 50px;

  /* ===== TRANSITION ===== */
  --transition-smooth: all 0.35s ease;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;

  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}
img{
  max-width: 100%;

}
.section-padding{
  padding: 70px 0;
}
/* Navbar */
.navbar {
  background: rgb(0 0 0);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-brand {
  color: var(--gold-light) !important;
  font-weight: 700;
  font-size: 24px;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--gold-light) !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.swiper-slide-active .hero-bg {
  transform: scale(1);
}

/* hero section */
/* HERO BASE */
/* HERO BASE */
.hero-slide {
  position: relative;
  padding: 200px 0 100px;
  display: flex;
  align-items: center;
  padding-left: 8%;
  overflow: hidden;
}

/* BACKGROUND PARALLAX */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 6s ease;
}

.swiper-slide-active .hero-bg {
  transform: scale(1);
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.3)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

/* GOLD SHIMMER TEXT */
.shimmer {
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--gold-primary) 40%, var(--gold-light) 50%, var(--gold-primary) 60%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  animation: shimmerMove 4s linear infinite;
}

@keyframes shimmerMove {
  to {
    background-position: 200% center;
  }
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 1.2rem;
  margin: 20px 0 30px;
  opacity: 0.9;
  animation: fadeUp 1.2s ease;
}

/* BUTTON */
.btn-luxury {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid var(--gold-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Gold Fill Hover */
.btn-luxury:hover {
  background: var(--gold-light);
  color: #000;
}

.hero-description {
  font-size: 1.05rem;
  margin: 20px 0;
  line-height: 1.6;
  max-width: 600px;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-bottom: 30px;
  font-size: 1rem;
}

.hero-features span {
  display: inline-block;
  white-space: nowrap;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-description {
    font-size: 0.95rem;
  }

  .hero-features {
    gap: 10px 15px;
    font-size: 0.9rem;
  }
}
/* FADE UP ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-slide {
    height: 85vh;
    padding-left: 20px;
    padding-right: 20px;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .shimmer {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
/* hero section */

/* about section */
/* Subtle Luxury Background Pattern */
.about-section {
  background: #f9f6f1;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(180, 138, 44, 0.05) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  opacity: 0.3;
}

/* Gold Accent */
.text-gold {
  color: #b48a2c;
}

.letter-spacing {
  letter-spacing: 2px;
}



/* Side Golden Vertical Line */
/* Control Image Size */
.about-image-wrapper {
  position: relative;
  max-width: 420px; 
}

.about-img {
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

/* Gold Accent Line */
.gold-line {
  position: absolute;
  left: -15px;
  top: 15%;
  width: 3px;
  height: 70%;
  background: linear-gradient(to bottom, #d4af37, #b48a2c);
  border-radius: 2px;
}

/* Typography Improvements */
.section-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #b48a2c;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
}

.about-text {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}
/* Section Background */
.vision-mission-section {
  background: linear-gradient(180deg, #f9f7f3 0%, #ffffff 100%);
  position: relative;
}

/* Section Label */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #c6a74e;
  font-weight: 600;
}

/* Heading */
.section-heading {
  font-size: 2.3rem;
  font-weight: 500;
  color: #111;
}

/* Gold Divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6a74e, transparent);
}

/* Card Design */
.vm-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Subtle Gold Edge Glow */
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #c6a74e, #e6c86a);
}

/* Hover Effect */
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 20px rgba(0, 0, 0, 0.08);
}

/* Title */
.vm-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: #111;
}

/* Text */
.vm-text {
  color: #555;
  line-height: 1.9;
  font-size: 1rem;
}

/* List */
.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 14px;
  color: #555;
  font-size: 1rem;
}

.vm-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #c6a74e;
  font-size: 0.9rem;
}

/* collection */
/* Section Background */
.collections-section {
  background: #f9f7f3;
}

/* Heading */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #c6a74e;
  font-weight: 600;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6a74e, transparent);
}

/* Card Styling */
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s ease;
}

.collection-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.collection-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hover Gold Border */
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.collection-card:hover::after {
  border: 2px solid #c6a74e;
}
/* Trust Strip */
.trust-strip {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 60px 0;
}
.trust-content i {
    color:var(--black-primary);
    font-size: 28px;
}
/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Product Carousel */
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card {
  background: #111;
  border: 1px solid #222;
  padding: 15px;
}

/* Category Banners */
.category-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.5s;
}

.category-img:hover {
  transform: scale(1.05);
}

/* Gallary */
/* Section Background */
.signature-gallery {
  background: black;
}

/* Heading */


.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6a74e, transparent);
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 12px;
}

/* Zoom Effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Gold Glow Border */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.gallery-item:hover::after {
  border-color: #c6a74e;
}

/* Optional Fade Animation */
.gallery-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}
/* Gallary */
/* trusted secrion */
/* Section Background */
.trust-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f7f3 100%);
  overflow: hidden;
}

/* Watermark Text */
.trust-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  font-weight: 700;
  color: rgba(198, 167, 78, 0.05);
  letter-spacing: 20px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* Section Label */


/* Heading */
.section-heading {
  font-size: 2.4rem;
  font-weight: 500;
  color: #111;
}

/* Divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c6a74e, transparent);
}

/* Intro */
.trust-intro {
  max-width: 720px;
  margin: auto;
  color: #555;
  line-height: 1.9;
  font-size: 1rem;
}

/* Cards */
.trust-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  z-index: 1;
}

.trust-card h5 {
  margin-top: 18px;
  font-weight: 500;
  color: #222;
}

/* Icon Style */
.trust-icon {
  font-size: 32px;
  color: #c6a74e;
  transition: all 0.3s ease;
}

/* Hover Effect */
.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.trust-card:hover .trust-icon {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-watermark {
    font-size: 80px;
    letter-spacing: 8px;
  }
}

/* Section Background */
.experience-section {
    min-height: 70vh;
    background: #b48a2c;
    position: relative;
    padding: 100px 0;
    color: #fff;
}
/* Dark Overlay */
/* .experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 22%), rgb(0 0 0));
    backdrop-filter: blur(4px);
} */
/* Label */
.section-label.light {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #c6a74e;
  font-weight: 600;
}

/* Heading */
.experience-heading {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Text */
.experience-text {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.8;
}

/* Tagline */
.experience-tagline {
  font-weight: 400;
  color: #f1d27a;
}

/* Luxury Button */

/* Responsive */
@media (max-width: 768px) {
  .experience-heading {
    font-size: 2rem;
  }
}
/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.whatsapp-btn:hover {
  background: #128c7e;
}

/* Footer Background */
.luxury-footer {
  background: #000000;
  color: #ffffff;
  position: relative;
  border-top: 3px solid #c6a74e;
}

/* Logo */
.footer-logo {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}

.footer-logo span {
  color: #c6a74e;
}

/* Headings */
.footer-heading {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #c6a74e;
  font-weight: 500;
}

/* Text */
.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #c6a74e;
  padding-left: 5px;
}

/* Contact */
.footer-contact i {
  color: #c6a74e;
  margin-right: 8px;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #1a1a1a;
  color: #c6a74e;
  margin-right: 8px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #c6a74e;
  color: #000;
}

/* Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Bottom */
.footer-bottom {
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    font-size: 1.5rem;
  }
}

/* about us page */
.inner-banner {
 
  background: url("../image/inner-bg.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 200px 0 100px;
}
.inner-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.about-title {
  font-size: 3rem;
  font-weight: 500;
}

.about-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.customer-section {
  background: linear-gradient(to right, #fafafa, #ffffff);
  position: relative;
}

/* Divider */
.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #b68d40, #f5d27a);
}

/* Card */
.customer-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.customer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #b68d40, #f5d27a);
}

.customer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(182, 141, 64, 0.2);
}

/* Text */
.lead-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.highlight-text {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.highlight-text span {
  background: linear-gradient(45deg, #b68d40, #f5d27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .lead-text {
    font-size: 16px;
  }
  .highlight-text {
    font-size: 18px;
  }
}

/* contact */
/* Hero */
.contact-hero {
  height: 50vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/contact-banner.webp") center/cover no-repeat;
}

/* Gold Text */
.gold {
  background: linear-gradient(45deg, #b68d40, #f5d27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Card */
.contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(182, 141, 64, 0.25);
}

.contact-icon {
    font-size: 32px;
    color: #b48a2c;
}

/* Appointment Section */
.appointment-section {
  background: linear-gradient(45deg, #111, #2c2c2c);
}

/* Form */
.contact-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  padding: 12px;
}

.btn-gold {
  background: linear-gradient(45deg, #b68d40, #f5d27a);
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(182, 141, 64, 0.4);
}
