/* ================================
   RESET
================================ */
body {
  margin: 0;
  padding: 0;
}

/* ================================
   NAVBAR
================================ */
.jewellery-navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.jewellery-navbar .nav-link {
  color: #222;
  font-weight: 500;
  margin-left: 15px;
}

.jewellery-navbar .nav-link:hover,
.jewellery-navbar .nav-link.active {
  color: #c9a24d; /* gold color */
}

/* ================================
   HERO BANNER
================================ */
#hero-banner {
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional full height banner */
@media (min-width: 768px) {
  .hero-image {
    height: 100vh;
    object-fit: cover;
  }
}

/* ================================
   CATALOGUE SECTION
================================ */

#catalogue {
  background-color: #fafafa;
}

.catalogue-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
}

.catalogue-subtitle {
  color: #777;
  font-size: 1rem;
  margin-top: 5px;
}

/* Catalogue Card */
.catalogue-card {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.catalogue-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.catalogue-card h5 {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #222;
  font-weight: 500;
}

/* Hover Effect */
.catalogue-card:hover {
  transform: translateY(-5px);
}

.catalogue-card:hover h5 {
  color: #c9a24d; /* gold tone */
}


/* ================================
   OUR SHOWROOM SECTION
================================ */

#showroom {
  background-color: #ffffff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
}

.section-subtitle {
  font-size: 1rem;
  color: #777;
  margin-top: 5px;
}

/* Showroom Image */
.showroom-image img {
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Showroom Info */
.showroom-info {
  padding: 10px;
}

.showroom-info h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #222;
}

.showroom-info p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.showroom-info a {
  color: #c9a24d; /* gold tone */
  text-decoration: none;
}

.showroom-info a:hover {
  text-decoration: underline;
}


/* ================================
   HIGHLIGHTS SCROLL GALLERY
================================ */

#highlights {
  background-color: #fafafa;
}

/* Scroll Wrapper */
.scroll-gallery-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 20px;
  scroll-behavior: smooth;
}

/* Hide scrollbar (optional) */
.scroll-gallery-wrapper::-webkit-scrollbar {
  height: 8px;
}

.scroll-gallery-wrapper::-webkit-scrollbar-thumb {
  background: #c9a24d;
  border-radius: 4px;
}

/* Gallery Row */
.scroll-gallery {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

/* Each Item */
.scroll-item {
  flex: 0 0 auto;
  width: 280px;
}

.scroll-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

/* Hover Effect */
.scroll-item img:hover {
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .scroll-item {
    width: 220px;
  }

  .scroll-item img {
    height: 260px;
  }
}

/* ================================
   FOOTER
================================ */

#footer {
  background-color: #111;
  color: #ccc;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #c9a24d; /* gold accent */
}

#footer a {
  color: #c9a24d;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #aaa;
}


/* Category Title Bar */


/* Category Title Bar */
.category-title-bar {
  padding: 60px 0;
  background: #000000; /* Pure black background */
}

/* Gold Gradient Title */
.category-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;

  background: linear-gradient(
    90deg,
    #b8860b,
    #ffd700,
    #fff1a8,
    #ffd700,
    #b8860b
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.category-subtitle {
  font-size: 1.1rem;
  color: #e5e5e5;
}

/* Responsive */
@media (max-width: 768px) {
  .category-title {
    font-size: 2rem;
  }

  .category-subtitle {
    font-size: 1rem;
  }
}


/* Product Section */
.product-section {
  padding: 60px 0;
  background: #f5eded;
}

/* Product Card */
/* Product Card */
.product-card {
  position: relative;
  background: linear-gradient(145deg, #b09945, #9c8538);
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  height: 100%;
  overflow: hidden;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

/* 3D Lift + Glow */
.product-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow:
    0 25px 45px rgba(255, 215, 0, 0.35),
    0 0 20px rgba(255, 215, 0, 0.25);
}

/* Shine Effect */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
}

.product-card:hover::before {
  left: 130%;
  transition: left 0.8s ease;
}

/* Image Wrapper */
.product-img {
  overflow: hidden;
  border-radius: 12px;
}

/* Image Animation */
.product-img img {
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover img {
  transform: scale(1.15);
}

/* Product Name */
.product-name {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(
    90deg,
    #ffd700,
    #fff2b0,
    #ffd700
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile */
@media (max-width: 576px) {
  .product-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}
.product-section {
  padding: 60px 0;
  background: #f5eded;
}

/* Product Card */
.product-card {
  position: relative;
  background: #000000; /* BLACK BOX */
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  height: 100%;
  overflow: hidden;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
}

/* 3D Lift + Gold Glow */
.product-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow:
    0 25px 45px rgba(255, 215, 0, 0.45),
    0 0 25px rgba(255, 215, 0, 0.35);
}

/* Gold Shine Effect */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 215, 0, 0.35),
    transparent
  );
  transform: skewX(-25deg);
}

.product-card:hover::before {
  left: 130%;
  transition: left 0.8s ease;
}

/* Image Wrapper */
.product-img {
  overflow: hidden;
  border-radius: 12px;
}

/* Image Animation */
.product-img img {
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover img {
  transform: scale(1.15);
}

/* Product Name (Gold Gradient Text) */
.product-name {
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(
    90deg,
    #b8860b,
    #ffd700,
    #fff2b0,
    #ffd700,
    #b8860b
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile */
@media (max-width: 576px) {
  .product-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}


<!-- Instagram Feed Section -->


/* Instagram Section */
.instagram-section {
  padding: 70px 0;
  background: #f7f5f2; /* Off-white */
}

/* Title */
.insta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

.insta-subtitle {
  font-size: 1rem;
  color: #777;
}

/* Card */
.insta-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease;
}

/* Image */
.insta-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
}

/* Hover Effect */
.insta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.insta-card:hover img {
  transform: scale(1.12);
  filter: brightness(0.85);
}

/* Soft overlay */
.insta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta-card:hover::after {
  opacity: 1;
}

/* Mobile */
@media (max-width: 576px) {
  .insta-title {
    font-size: 1.6rem;
  }
}


.insta-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.insta-link:hover {
  color: #c9a24d; /* subtle gold accent */
}

.spacer-sm {
  height: 16px; /* between 10–20px */
}


/* ===== News Ticker ===== */

.news-ticker {
  background: #3f9e40;
  color: #fff;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.ticker-wrap {
  width: 100%;
  height: 45px;
}

.ticker-label {
  background: #d4af37; /* gold */
  color: #000;
  padding: 0 15px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-text {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
  font-size: 14px;
}

/* Animation */
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause on hover */
.news-ticker:hover .ticker-text {
  animation-play-state: paused;
}



/* HERO SLIDER */
#hero-slider {
  position: relative;
  overflow: hidden;
}

/* Slide Background */
.slider-bg {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Background Images */
.slide-one {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../images/home/hero1.jpg");
}

.slide-two {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../images/home/hero2.jpg");
}

.slide-three {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("../img/slide3.jpg");
}

/* Content */
.slider-content {
  max-width: 650px;
  color: #ffffff;
}

.slider-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Button */
.btn-slider {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #fff;
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-slider:hover {
  background: linear-gradient(135deg, #1b5e20, #43a047);
  color: #fff;
  transform: translateY(-2px);
}

/* Indicators */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.6;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #66bb6a;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-content h1 {
    font-size: 2.2rem;
  }

  .slider-bg {
    height: 75vh;
  }
}



/* about us  */


.about-section {
  background-color: #f7fff9;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 128, 0, 0.08);
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #2e7d32;
  margin-bottom: 30px;
  font-weight: 600;
}

.sub-title {
  font-size: 26px;
  color: #2e7d32;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 500;
}

.about-text {
  font-size: 16.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.about-text strong {
  color: #1b5e20;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #66bb6a;
  margin: 40px auto;
  border-radius: 10px;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.why-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}
