
body {
  background-color: #f8f5f0; /* Ivory */
  font-family: 'Playfair Display', serif;
  color: #1a1a1a; /* Deep Charcoal */
}

/* Navbar Styles */
.navbar {
  background-color: #fff9f0; /* Soft champagne */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.glow .spark {
  font-family: 'Cinzel', serif;
  font-weight: bold;
  color: #d4af37; /* Luxury gold */
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.nav-link {
  color: #1a1a1a !important;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d4af37 !important;
}

/* Search Button */
.btn1 {
  background-color: #d4af37;
  color: #fff;
  border: none;
}

.btn1:hover {
  background-color: #b9972f;
}

/* Hero Section */
.tracking-in-contract-bck-top {
  animation: tracking-in 1.2s ease both;
}

@keyframes tracking-in {
  0% {
    letter-spacing: 0.6em;
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Image */
img.img-fluid {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Text Styling */
h1 span.wig {
  color: #d4af37; /* Metallic Gold */
  font-style: italic;
}

h1 {
  color: #1a1a1a;
}

.lead {
  color: #3a3a3a;
}

/* Hero Button */
.btn-outline-dark {
  border-color: #d4af37;
  color: #d4af37;
}

.btn-outline-dark:hover {
  background-color: #d4af37;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
 /* featureproduct */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.product-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 250px;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h6,
.product-card p {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
   
}

/* Hover effect: Changes text color to purple */
.product-card:hover {
    transform: scale(1.05);
}

.product-card:hover h6,
.product-card:hover p {
    color:#d4af37 ;
}
#featured-3 {
  background-color: #fff9f0; /* Champagne Cream */
  padding: 3rem 0; /* Optional: vertical spacing */
}
.fea{
    text-align: center;
     font-style: italic;
  font-weight: bold;
  font-size: 2rem;

}
.product-card a.btn {
  margin-top: 10px;
  display: inline-block;
  margin-bottom: 2rem;
}
.Jewelry {
  color: #d4af37; /* Luxury gold */
  font-style: italic;
}
.about-section {
  color: #000000;
}

.about-title {
  font-weight: 600;
  font-size: 2rem;
}

.about-title .highlight {
  color:#d4af37; /* Luxury gold */
;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
}
#featured-3 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.btn1 {
  display: inline-block;
  padding: 10px 24px;
  background-color: #d4af37; /* gold tone */
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn1:hover {
  background-color: #b9972f; /* darker gold tone */
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: 2rem;
  }

  .product-card h6 {
    font-size: 1rem;
  }

  .btn-sm {
    font-size: 0.85rem;
  }
}


.testimonials-container {
  
    margin: 50px auto;
    padding: 20px;
    background-color: #fff9f0; /* Soft champagne */
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background: white;
    padding: 20px;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
   
}

p {
    font-size: 1rem;
    color: #333;
}

h4 {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #b9972f; 
    font-weight: bold;
}
/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        width: 100%;
    }
}


