/********** Template CSS **********/
:root {
    --primary: #fcdc04;
    --secondary: #b2a135;
    --light: #534015;
    --dark: #262223;
}




.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





/* Dropdown Item Hover - Gold Brown Theme */
.hover-gold:hover {
  background: linear-gradient(90deg, #fcdc04, #b2a135);
  color: #262223 !important;
  border-radius: 5px;
  box-shadow: 0 0 10px #fcdc04, 0 0 15px #b2a135;
  transition: 0.3s ease;
}

/* Top Bar Social Icons - Gold Brown Theme */
.top-bar a:hover {
  color: #fcdc04 !important;
  text-shadow: 0 0 8px #b2a135, 0 0 15px #534015;
  transform: scale(1.1);
  transition: 0.3s ease;
}




/*** Section Header - Gold Brown Theme ***/
.section-header {
    position: relative;
    padding-top: 25px;
}
.d-none.d-lg-flex a {
  border-color: #ffffff !important; /* white border */
  transition: 0.3s ease;
}

.d-none.d-lg-flex a small {
  color: #ffffff !important; /* white icon */
  transition: 0.3s ease;
}

.d-none.d-lg-flex a:hover {
  border-color: #fcdc04 !important; /* yellow border on hover */
  transform: scale(1.1);
}

.d-none.d-lg-flex a:hover small {
  color: #fcdc04 !important; /* yellow icon on hover */
  text-shadow: 0 0 10px #fcdc04, 0 0 15px #b2a135; /* glowing hover effect */
}
.text-warning {
  color: #e03a3c !important; /* Default yellow */
  transition: color 0.3s ease;
}

.text-warning:hover {
  color: #e03a3c !important; /* White on hover */
}


.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fcdc04, #b2a135);
    box-shadow: 0 0 10px #fcdc04, 0 0 20px #b2a135;
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #534015, #262223);
    box-shadow: 0 0 10px #534015, 0 0 15px #262223;
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}

/*** Feature Item ***/
.feature-item {
    border: 1px solid rgba(83, 64, 21, 0.4);
    border-radius: 15px;
    transition: 0.4s ease;
    background: linear-gradient(145deg, #262223, #534015);
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #b2a135, 0 0 40px #fcdc04;
}

/* About Section - Gold Bronze Theme */
.about-section {
    background: radial-gradient(circle at center, #fcdc04);
    padding-top: 80px;
    color: #fff;
    margin-bottom: -140px;
}

.about-section h1, h4 {
    color: #000;
    /*text-shadow: 0 0 25px #b2a135, 0 0 40px #534015;*/
}

.about-section p {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}

/* Check Icons */
.about-icon {
    color: #fcdc04;
    text-shadow: 0 0 10px #b2a135, 0 0 20px #534015;
}

/* Button */
.about-btn {
    background: linear-gradient(90deg, #534015, #b2a135, #fcdc04);
    color: #262223;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px #b2a135, 0 0 30px #fcdc04;
    color: #262223;
}

/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.products-section {
  background: radial-gradient(circle at top, #3a2a0f, #0d0a03);
  padding: 60px 0;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #b2a135;
  text-shadow: 0 0 10px #6b4b20;
  margin-bottom: 10px;
}

.section-title p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 40px;
}

.filter-btns {
  margin-bottom: 40px;
}

.filter-btns button {
  background: transparent;
  color: #fff;
  border: 2px solid #b2a135;
  margin: 0 10px;
  padding: 8px 20px;
  border-radius: 25px;
  transition: 0.3s;
  cursor: pointer;
}

.filter-btns button:hover,
.filter-btns button.active {
  background: #b2a135;
  color: #0d0a03;
  box-shadow: 0 0 15px #b2a135;
}

#products {
  /*background: radial-gradient(circle at center, #3a2a0f, #0d0a03);*/
  /*padding: 80px 0;*/
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #b2a135;
  /*text-shadow: 0 0 25px #b2a135, 0 0 40px #6b4b20;*/
}

.section-subtitle {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 40px;
}

  /* Category Buttons Styling */
.category-buttons {
    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: center;
    flex-wrap: wrap;           /* Move to next line if needed */
    gap: 10px;                 /* Space between buttons */
    width: 100%;
    text-align: center;
}

.category-btn {
  padding: 10px 20px;
  border: none;
   /* yellow background */
  color: #000; /* text color */
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background-color: #e03a3c;
  color: #fff;
  transform: scale(1.05);
}

/* Product Boxes */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-box {
  background: rgba(107, 75, 32, 0.1);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(107, 75, 32, 0.3);
  border: 2px solid transparent;
  transition: 0.4s;
}

.product-box img {
  border-radius: 15px;
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-box h4 {
  color: #b2a135;
  font-weight: 700;
  margin-bottom: 5px;
}

.product-box .desc {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 5px;
}

.product-box .price {
  font-size: 16px;
  font-weight: 700;
  color: #b3a135;
}

.product-box:hover {
  transform: translateY(-10px);
  border-color: #b2a135;
  box-shadow: 0 0 25px #b2a135, 0 0 30px #6b4b20;
}

/* Hidden */
.hidden {
  display: none;
}

/* View All Button */
.view-btn {
  background: linear-gradient(90deg, #6b4b20, #b2a135);
  color: #000;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.view-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #b2a135;
}





update css
/* Contact Section Theme like Products */
.contact-section {
    background: radial-gradient(circle at center, #1a0128, #000);
    color: #fff;
    padding: 80px 0;
    font-family: 'Arial', sans-serif;
}

/* Section Header */
.contact-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #facc15;
    text-shadow: 0 0 25px #facc15, 0 0 40px #7e22ce;
}

.contact-section .section-subtitle {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Contact Info Box */
.contact-info-box {
    background: rgba(126, 34, 206, 0.1);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 0 25px #facc15, 0 0 30px #7e22ce;
    transition: transform 0.4s, box-shadow 0.4s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px #facc15, 0 0 40px #7e22ce;
}

.contact-info-box h5 {
    color: #facc15;
    margin-bottom: 10px;
}

.contact-info-box p {
    color: #ccc;
    margin-bottom: 20px;
}

/* Social Buttons */
.social-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #7e22ce;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: linear-gradient(90deg, #7e22ce, #facc15);
    color: #000;
    border-color: transparent;
    transform: scale(1.2);
}

/* Contact Form Inputs */
.contact-input {
    background: rgba(126,34,206,0.1);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border: 2px solid #facc15;
    background: rgba(126,34,206,0.15);
    color: #fff;
}

/* Submit Button */
.contact-btn {
    background: linear-gradient(90deg, #7e22ce, #facc15);
    color: #000;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #facc15, 0 0 30px #7e22ce;
}



.footer-section {
    background: radial-gradient(circle at center, #262223, #534015);
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fcdc04;
    text-shadow: 0 0 12px #b2a135, 0 0 25px #534015;
}

.footer-section p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s, filter 0.3s;
}

.footer-social a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #fcdc04);
}

.footer-social img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #b2a135;
    padding: 4px;
    background: radial-gradient(circle, #534015, #262223);
    transition: all 0.3s ease;
}

.footer-social img:hover {
    background: linear-gradient(90deg, #b2a135, #fcdc04);
    box-shadow: 0 0 20px #fcdc04, 0 0 30px #b2a135;
}

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    color: #b2a135;
    text-shadow: 0 0 8px #fcdc04;
}
/* ✅ Mobile Responsive (below 768px) */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: repeat(3, 1fr); /* keep 3 per row */
    gap: 10px;
  }
  .product-box {
  width: 100%;
  max-width: 100px;
  height: 180px; /* ✅ Fixed height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 8px;
  overflow: hidden; /* prevents content from overflowing */
}
  /* Product text */
  .product-box h4 {
    font-size: 13px;
  }

  .product-box .desc {
    font-size: 11px;
  }

  .product-box .price {
    font-size: 12px;
  }

  /* Section title and subtitle for mobile */
  .section-title h2,
  .section-title {
    font-size: 22px; /* smaller than desktop */
  }

   .section-subtitle {
    font-size: 14px;
  }

  /* Category buttons (below heading) */
  .category-btn {
    font-size: 12px;
    padding: 6px 14px;
    margin: 4px;
  }

  

 /* Ensure image scales well */
.product-box img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

  /* ✅ Let text shrink automatically to fit */
.product-box h4,
.product-box .desc,
.product-box .price {
  font-size: clamp(8px, 2vw, 13px); /* auto scales text */
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

  .product-box p {
    font-size: 12px;
  }
   /* Only center the image — don't touch the text */
  .about-section .about-img {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0 !important;
    width: 90%;
  }

  .about-section .about-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

}



/*praveen changes*/


/* Product‐container layout */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

/* Product‐card styling */
.product-card {
  flex: 0 0 250px;
  max-width: 250px;
  position: relative;
  background: linear-gradient(135deg, #FFFAEE);
  border: 1px solid #fcdc04;
  /*border: 2px solid #e03a3c;       /* red border accent */*/
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain; /* fits whole image without cropping */
  /*background: #fff;    */
  padding: 10px;
  border-radius: 30px;
}


.product-details {
  padding: 16px;
}

.product-title {
  font-size: 1.25rem;
  margin: 0 0 8px 0;
  color: #333;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 16px 0;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #D62828;   /* red colour */
}

.product-stock {
  font-size: 0.9rem;
  color: #444444;
}

/* Add to Cart / Button styling */
.buy-btn {
  width: 100%;
  padding: 12px;
  background-color: #fcdc04;   /* yellow background */
  color: #333;                  /* dark text for readability */
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.buy-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.buy-btn:hover {
  background-color: #e03a3c;   /* red on hover */
  color: #fff;
}

/* Offer Badge */
.offer-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e03a3c;   /* red */
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.product-card {
  position: relative;
  overflow: visible; /* so burst can go outside boundaries */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

/* the burst element */
.product-card .burst {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  background: radial‐gradient(circle, rgba(252,220,4,0.8) 0%, rgba(224,58,60,0) 70%); /* yellow to transparent red */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* On hover: animate it */
.product-card:hover .burst {
  animation: burstAnim 0.8s ease-out forwards;
}

@keyframes burstAnim {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  50% {
    width: 200px;
    height: 200px;
    opacity: 0.6;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Optionally also scale the card a little on hover */
.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-animated {
  padding: 5px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #e03a3c;   /* your yellow */
  color: #fff;
  border: 2px solid #e03a3c;    /* your red */
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border-radius: 20px;
}

.btn-animated::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  /*background: radial-gradient(circle, rgba(252,220,4,0.8) 0%, rgba(224,58,60,0) 70%);  /* yellow -> transparent red */*/
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.btn-animated:hover {
  background-color: #e03a3c; /* red on hover */
  color: #fff;
  border-color: #fcdc04;
  transform: scale(1.05);
}

.btn-animated:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0.6;
}



/* Testimonial Section */
.testimonial-carousel-section {
  padding: 60px 0;
  background: #fff; /* dark background */
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Section Title */
.section-title {
  color: #e03a3c; /* yellow */
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap; /* keeps items in one row */
}

.carousel-item {
  flex: 0 0 300px;  /* each box width */
 background: linear-gradient(145deg, #b2a135);
    width: 85%;
    margin: auto;
    padding: 35px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);  
  border-radius: 8px;
  padding: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

/* Fade-up animation delays for each box */
.carousel-item:nth-child(1) { animation-delay: 0.2s; }
.carousel-item:nth-child(2) { animation-delay: 0.4s; }
.carousel-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


/
/* Testimonial Photo */
.testimonial-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fcdc04;
  margin-right: 12px;
}

/* Testimonial Info */
.testimonial-info {
  display: flex;
  align-items: center;
  margin-top: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08); 
}

/* Testimonial Name */
.testimonial-name {
  font-size: 1.1rem;
  color: #000;
  font-weight: bold;
      margin-left: 50px;
}

/* Testimonial Role */
.testimonial-role {
  font-size: 0.9rem;
  color: #aaa;
  margin-left: 50px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.carousel-controls button {
  background: transparent;
  color: #e03a3c;
  border: none;
  font-size: 2rem;
  margin: 0 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.carousel-controls button:hover {
  color: #e03a3c;
}


.btn-explore {
  padding: 8px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #e03a3c;        /* your yellow theme */
  color: #fff;
  border: 2px solid #e03a3c;         /* your red accent */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.btn-explore::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  /*background: radial-gradient(circle, rgba(252,220,4,0.8) 0%, rgba(224,58,60,0) 70%);*/
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.btn-explore:hover {
  background-color: #e03a3c;        /* switch to red on hover */
  color: #fff;
  border-color: #fcdc04;             /* swap accent */
  transform: scale(1.05);
}

.btn-explore:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0.6;
}



