/* home page */
.custom-border {
  border: 2px solid #7c6d62 !important;
}

.why-card {
  border: 2px solid #7c6d62;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}



.about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 450px;
  object-fit: cover;
  width: 100%;
}

.about-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 28px;
  }
}


/* banner about us or prodcuts page  */
.text-highlight {
  background-color: rgba(255, 255, 255, 0.6);
  /* Light background, see-through */
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  display: inline-block;
  color: #000;
  /* Ensure good contrast */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-in-out;
}



/* prodcuts */



.section-padding {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #b3541e;
}

.hover-box {
  transition: 0.3s ease;
}

.hover-box:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.section-padding {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #b3541e;
}

.hover-box {
  background-color: #fff8f1;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
}

.hover-box:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.bg-candle {
  background: linear-gradient(to right, #fff0e6, #ffe8d9);
}

ul li {
  margin-bottom: 10px;
}

.text-dark-custom {
  color: #4a2e19;
}




/* banner about and prodcuts page */
.bg-container {

  background-size: 100%;
  /* Ensures full image is visible */
  background-repeat: no-repeat;
  background-position: center;
  height: 75vh;
  width: 100%;
}

.content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* 📱 Mobile-specific height */
@media (max-width: 576px) {
  .bg-container {
    height: 40vh;
  }
}

/* prodcuts page  */
 .section-padding {
    background-size: cover;
    /* ✅ cover zyada responsive hai */
    background-repeat: no-repeat;
    background-position: center;
    min-height: 75vh;
    /* ✅ height ki jagah min-height use karo */
    width: 100%;
  }

  @media (max-width: 576px) {
    .section-padding {
      min-height: 50vh;
      /* thoda zyada rakho taki content cut na ho */
    }
  }


    .bg-secondary  {
  background-image: url('imgs/devi.png'); /* yaha apna image path lagao */
  background-size: cover;   /* image ko full cover karne ke liye */
  background-position: center; /* image ko center me position karega */
  background-repeat: no-repeat; /* repeat band karega */
}



.location-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.2s;
      text-decoration: none;
      display: block;
    }
    .location-card:hover {
      transform: translateY(-5px);
    }
    .circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #ffc107; /* Bootstrap warning color */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      color: #fff;
      margin: 0 auto 15px;
    }
    .location-name {
      font-weight: 600;
      color: #555;
    }