 html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #f5efe6;
    font-family: 'Kalam', sans-serif;
    color: #4b2e2e;
  }

  nav.navbar {
    background: linear-gradient(45deg, #a9744f, #dbc1ac);
  }
  .navbar .nav-link {
  color: white !important;
}
.navbar .nav-link:hover {
    color: #a9744f !important;
    text-decoration: underline;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
#about-us h4 {
    line-height: 1.6;
    margin-top: 20px;
}

.product-card {
    padding: 20px;
    background-color: #fff7f0;
    border-radius: 10px;
    box-shadow: 0 4px 10px 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 6px 15px rgba(0, 0, 0, 0.1);
}
.product-card img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

  .header {
    background: linear-gradient(45deg, #a9744f, #dbc1ac);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 0;
    border-radius: 0;
  }

  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }

  h1, h2, h4, h5 {
    color: #4b2e2e;
  }

  hr {
    border-top: 2px solid #c9a27e;
  }

  .gallery-image {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .gallery-image:hover {
    transform: scale(1.1) rotate(-1deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }

  .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    position: relative;
    font-family: 'Merriweather', serif;
    margin-bottom: 30px;
  }

  .section-title::before,
  .section-title::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #c9a27e;
    margin: 0 10px;
  }
  .mb-4 {
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.mb-4:hover {
  transform: scale(1.05); /* Scales the div slightly */
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  animation: fadeIn 0.3s ease forwards;
}

.image-modal .modal-img {
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1060;
}

.image-modal.show {
  display: block;
}

.modal-img {
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  animation: zoomIn 0.3s ease forwards;
}

.header h1 {
    animation: fadeInText 3s ease-in-out;
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes fadeIn {
  from { background-color: rgba(0, 0, 0, 0); }
  to { background-color: rgba(0, 0, 0, 0.8); }
}

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes zoomOut {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

.zoom-out {
  animation: zoomOut 0.2s ease forwards;
}

@media (max-width: 767px) {
    .navbar .navbar-nav {
        text-align: center;
    }

    .product-card {
        padding: 15px;
    }

    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        font-size: 14px;
    }
}
.letter-fade span {
    opacity: 0;
    animation: fadeInLetter 0.05s ease forwards;
}

    .letter-fade span:nth-child(n) {
        animation-delay: calc(0.05s * var(--i));
    }

@keyframes fadeInLetter {
    to {
        opacity: 1;
    }
}
