body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
}
.logo{
  width: 250px;
}
@media (min-width: 300px) and (max-width:780px) {
  .logo {
    width: 150px;
  }
}
p>i {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: #5C5470;
}
body {
  font-family: Arial, sans-serif;
}

/* Header styles */
header {
  /* background-color: #f7f7f7; */
  color: #3f3c3c;
  text-align: center;
  padding: 10px;
}
/* For mobile screens */
@media (min-width: 300px) and (max-width:780px) {
  .hero {
    max-width: 100%;
    /* Full width on mobile */
    height:30px;
    padding: 0 0 212px 0;

  }
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Product gallery styles */
.product-gallery {
gap: 1rem;
  margin: 30px 20px 0 20px;
 display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns for mobile */
  gap: 20px;
  /* Adjust the gap between products */
}

@media (min-width: 580px) {
  .product-gallery {
    grid-template-columns: repeat(3, 1fr);
    /* 4 columns for desktop */
  }
}

@media (min-width: 780px) {
  .product-gallery {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for desktop */
  }
}
.product-card {
cursor: pointer;
transition: transform 0.3s ease-in-out;
border-radius: 15px;
display: grid;
box-shadow:0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0,0,0,0.22);
border-bottom: none;
}
.product-card:hover {
  transform: scale(1.05);
box-shadow: 0 3px 6px  rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 52px;
}
/* Product popup styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.popup-content {
  max-width: 80%;
  max-height: 80%;
  overflow: hidden;
  text-align: center;
  position: relative;
  animation: pulse 1s;
}
.popup-content img {
max-width: 100%;
border-radius: 50%;
}
@keyframes pulse {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}

/* Media query for Close button on Pop-up */
@media (min-width:426px) and (max-width:900px) {
span.close-popup {
position: absolute;
right: 17px;
display: inline-block;
}
}

@media (min-width:280px) and (max-width:425px) {
  span.close-popup {
    position: absolute;
    top: 5px;
    right: 32px;
    display: inline-block;

  }
}
.close-popup {
position: absolute;
top: 30px;
right: 35px;
color: #fff;
cursor: pointer;
display: inline-block;
}
/* Adjust popup content position */
.popup-content {
  position: relative;
  border-radius: 20%;
}
@media screen and (min-width:900px) and (max-width:3000px) {
  .popup-content {
    position: relative;
    max-width: 40%;
    /* Adjust this value as needed */
    max-height: 90vh;
    /* Adjust this value as needed */
    margin: 0 auto;
  }
}
/* For every page */
.product-gallery {
margin-bottom: 50px;
}
.footer {
width: 100%;
height: fit-content;
background-color:whitesmoke;
text-align: left; 
}
#alogo {
  color: rgb(194, 194, 183);
  text-decoration: none;
  font-family: 'Sedgwick Ave Display', cursive;
  font-size: 2.5rem;
  line-height: 80px;
  text-decoration: none;
  text-align: center;
}
.catname {
background-color: #1b254d;
height: fit-content;
color: rgb(175, 179, 182);
font-family: 'Courier New', Courier, monospace;
text-align: center; margin-bottom: 20px; padding: 10px;
}
/* Css on #category-dropdown */
#category-dropdown-header{
padding: 10px;
border-radius: 30px;
margin-left: 10px;
}
#category-dropdown-footer{
padding: 10px;
border-radius: 30px;
margin-left: 10px;
margin-top: 10px;
}
.footer-logo{
    text-align: center;
}
h5{
text-align: center;
margin: 0;
padding-top: 10px;
text-align: center;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
button{
text-align: center;
font-size: 15px;
color: #a3a2ad;
padding: 5px;
border: 0;
outline: none;
cursor: pointer;
margin-top: 5px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
background-color: #AB925F;
  } 
.tss{
color: #1b2d75;
}
.categname{
text-align: center;
font-size: 0.8em;
color: #5e5a51;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#whatsappButton {
  margin-right: 10px;
  background-color: #25d366; /* WhatsApp green color */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px;
 animation: vibrate 1s ease infinite; 
}
#whatsappButton:hover {
  background-color: #128c7e; /* Darker WhatsApp green color on hover */
}

/* banner slide show */

.banner-slideshow {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

 .banner {
  display: none;
  width: 100%;
  height: auto;
}

.banner.active {
  display: block;
  animation: fade-in 1.5s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  
}
.features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0;
}

.feature {
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.feature img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.2rem;
  color: #333;
}

/* Add animation on hover */
.feature:hover {
  transform: scale(1.08);
}
@media screen and (max-width: 620px) {
  .features {
    flex-wrap: wrap;
  }

  .feature {
    flex-basis: 45%; /* Adjust width for smaller screens */
  }
}

/* Your other styles */

/* Hide the small banners by default */
.banner-mobile {
  display: none;
}
/* Media query for mobile screens */
@media (max-width: 620px) {
  /* Hide the large banners on smaller screens */
  .banner {
    display: none !important;
  }
  
  /* Display the small banners */
  .banner-mobile {
    display: block;
    width: 100%;
    /* Add any other necessary styles for mobile banners */
  }
  .banner-slideshow {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }
  
   .banner-mobile {
    display: none;
    width: 100%;
    height: auto;
  }
  
  .banner-mobile.active {
    display: block;
    animation: fade 1.5s ease-in-out;
  }
  
  @keyframes fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
    
  }
  
}
.popup {
  display: none;
  /* Other styles for the popup */
}
/* Other styles */

/* .disc-popup{
 
  border: 5px solid transparent;
  width: 80%;
  height: 20vw;
  margin: 200px 100px;
  border-radius: 10px;
} */
.popup-cont{
  display: flex;
  flex-direction: column;
  justify-content: center;
 padding:70px;
 color: white;
 line-height: 50px;
 font-size: 1.6vw;
}
.yellow{
  color: #AB925F;
}

.close-pop{
  font-size: 1.5vw;
}
@media screen and (max-width: 620px) {
  .disc-popup {
    width: 80%;
    height: 60vw;
    margin: 200px 30px;
  }
  .popup-cont{
    
   padding:15%;
   color: white;
   line-height: 25px;
   font-size:4vw;
  }
  .close-pop{
    font-size: 3.5vw;
  }
}
.rupees{
  color: #ffc95e80;
  font-weight: 700;
}
/* Black box styles */
.black-box {
  position: relative;
  background-color: black;
  color: white;
  width: 100%;
  opacity: 0.7;
  word-spacing: 5px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
  color: yellow;
}

.content-slider {
  overflow: hidden;
  display: flex;
  gap: 70px;
  justify-content: center;
}
.slide {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px;
}
.slide p {
  margin-left: 10px;
  animation: slideText 10s linear infinite;
  width: 100%;
  /* Adjust other styles as needed */
}

/* Animation */
@keyframes slideText {
  0% {
  transform: translateX(-100%);
  }
  100% {
      transform: translateX(100%);
  }
}
.card-button{
  color: white;
}
