
     
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
    font-family: 'Poppins', 'Sans-serif';
  }
  
  html {
    scroll-behavior: smooth;
  }
      
  /* Navbar Styling */
  /* General Navbar Styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #065F89;
    transition: background-color 0.3s ease-in-out;
  }

  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo {
    display: flex;
    align-items: center;
    width: auto;
    gap: 10px;
    width: 350px;
  }

  .logo img {
    height: 80px;
    width: 80px;
    
    margin-right: 12px;
  }

  .shop-name {
    font-size: 1.0rem;
    font-weight: bold;
    color: whitesmoke;
    white-space: wrap;
  }

  .nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
  }

  .nav-list a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 0.9rem;
    
    padding: 10px 10px;
    transition: color 0.3s ease-in-out;
    position: relative;
  }

  .nav-list a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #eeeeee;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  #languageSelect {
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  #languageSelect:hover {
    background-color: #e2e6ea;
  }

  .nav-list i {
    font-size: 1.5rem;
    color: whitesmoke;
    padding-left: 5px;
  }

  .nav-btn {
    font-size: 1.0rem;
    background-color: #000;
    color: whitesmoke;
    padding: 5px;
    border-radius: 20px;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle .bar {
    height: 4px;
    width: 27px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: transform 0.3s ease-in-out;
  }
  .nav-btn {
    padding:18%;
    border-radius: 20%;
    flex-direction: column;
    border: #ffffff;
    background-color: rgb(255, 255, 255,0.0);
    color: white;
}


  @media (max-width: 1024px) {
    .nav-list a {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 768px) {
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #065F89;
      text-align: center;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }
    .nav-list a {
      color: whitesmoke;
    }
    .nav-list.active {
      display: flex;
    }
    .menu-toggle {
      display: flex;
    }
  }

  @media (max-width: 480px) {
    .logo img {
      height: 60px;
      width: 60px;
    }
    .shop-name {
      font-size: 0.85rem;
    }
    .nav-btn {
      font-size: 0.9rem;
      padding: 4px;
    }
  }

  /* ---nav ends---- */

/*home section started  */
#home {
  margin-bottom: 0;
  padding-bottom: 0;
}

.home {
  padding: 10% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
}

/* Parent Flexbox */
.content-container {
  display: flex;
  width: 90%;
  height: 80%;
}

/* Left Side (Text) */
.welcome-container {
  flex: 0 0 40%; /* Takes 40% of the width */
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #222;
  padding: 2rem;
}

.welcome-container h1 {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-top: 2rem;
}

.welcome-container p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Right Side (Image) */
.image-container {
  flex: 0 0 60%; /* Takes 60% of the width */
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* Button Styling */
.btn {
  display: inline-block;
  padding: 12px 40px;
  background: #007bff;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid white;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #065F89;
  color: #222;
  border: 2px solid #222;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-container {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .welcome-container {
    flex: 1;
    width: 100%;
    align-items: center;
  }

  .image-container {
    flex: 1;
    width: 100%;
  }

  .image-container img {
    height: auto;
    border-radius: 0;
  }

  .btn {
    padding: 10px 30px;
  }
}

@media (max-width: 768px) {
  .welcome-container h1 {
    font-size: 2rem;
  }

  .welcome-container p {
    font-size: 1rem;
  }

  .btn {
    padding: 8px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .home {
    padding: 2rem 1rem;
  }

  .welcome-container h1 {
    font-size: 1.8rem;
  }

  .welcome-container p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 20px;
  }
}

/* home section ended */

/* about section started */

.about {
  margin-top: 8%;
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

/* Background Grid Animation */
.about-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 95%, rgba(0, 0, 0, 0.05) 5%) 0 0 / 10% 10%,
              linear-gradient(95deg, transparent 95%, rgba(0, 0, 0, 0.05) 5%) 0 0 / 10% 10%;
  animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: 10% 10%;
  }
}

/* Content Wrapper */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10%;
  position: relative;
}

/* Image Styling */
.about-image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-frame {
  width: 80%;
  position: relative;
}

.rotating-border {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  border: 5px solid transparent;
  border-radius: 15px;
  animation: rotateBorder 6s linear infinite;
  background: linear-gradient(45deg, #007bff, #007bff, #007bff);
  background-size: 200% 200%;
  mask: linear-gradient(white 0 0) padding-box, linear-gradient(white 0 0);
  mask-composite: exclude;
}

@keyframes rotateBorder {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.image-frame img {
  width: 100%;
  border-radius: 10px;
  display: block;
  position: relative;
}

/* About Text Styling */
.about-text {
  padding-top: 5%;
  width: 50%;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  width: 50px;
  height: 4px;
  background: #007bff;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-wrapper {
      flex-direction: column;
      text-align: center;
  }
  .about-image, .about-text {
      width: 90%;
  }
  .image-frame {
      width: 60%;
  }
}

@media (max-width: 768px) {
  .about-text {
      font-size: 1rem;
  }
  .about-text h2 {
      font-size: 2rem;
  }
  .about-image, .about-text {
      width: 100%;
  }
  .image-frame {
      width: 70%;
  }
}

@media (max-width: 480px) {
  .about-text {
      font-size: 0.9rem;
  }
  .about-text h2 {
      font-size: 1.8rem;
  }
  .image-frame {
      width: 80%;
  }
}

/* about section ended */

  /* product section started */
  .products {
    padding: 5% 0;
    background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  }
  
  .products h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #222;
    text-shadow: 1px 1px 1px black;
    margin-top: 30px;
    padding-top: 12px;
    padding-bottom: 45px;
  }
  
  .products-container {
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  }
  
  .product-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
    width: 100%;
    gap: 2%;
    margin-bottom: 20px;
  }
  
  /* First row (2 images) */
  .product-items {
    width: 48%;
    /* margin: 30px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Second row (3 images) */
  .product-item1 {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .product-image {
    width: 100%;
    /* margin: 30px; */
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
  }
  
  /* Hidden description */
  .product-description {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 80%;
    background: rgba(0, 0, 0, 0.6);
    color: whitesmoke;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  }
  
  /* Hover Effect - Overlay moves up & fades in */
  .product-item:hover .product-description {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  
  /* Image Zoom Effect */
  .product-item:hover .product-image img {
    transform: scale(1.05);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .products-container {
      min-height: 100vh; /* Ensure enough height */
    }
    .products-container h2 {
      padding-top: 5% !important; /* Forces padding */
      display: block; /* Ensure it takes full width */
    }
    .product-row {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .product-items,
    .product-item1 {
      width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .product-row {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .product-items,
    .product-item1 {
      width: 90%;
    }
  
    .product-description {
      font-size: 14px;
      padding: 8px;
    }
  }
  
  @media (max-width: 480px) {
    .products {
      padding-top: 10%;
    }
    .products-container h2 {
      margin-top: 20% !important; /* Use margin instead */
    }
    .product-items,
    .product-item1 {
      width: 100%;
    }
  
    .product-description {
      font-size: 12px;
      padding: 6px;
    }
  }
  
  /* product section ended */

/* prize section started */
.prize {
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  padding: 10% 0; 

}
.prize h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #222;
  text-shadow: 1px 1px 1px black;
  margin: 30px 0px;
}
/* Prize Section */
/* Container Styling */
.container1 {
  width: 90%;
  /* max-width: 1200px; */
  margin: 0 auto;
  text-align: center;
}


/* Grid Layout */
.prize-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

/* Row Flexbox */
.prize-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 15px;
}

/* Individual Prize Item */
.prize-item {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 30%;
  min-width: 20%;
  height: auto;
  align-items: stretch;
}

.prize-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.prize-image{
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

/* Image Styling */
.prize-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Prize Text */
.prize-text h5 {
  font-size: 1.5rem;
  color: #333;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .prize-row {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }

  .prize-item {
      width: 45%; /* Adjusts to fit two items per row */
  }
}

@media (max-width: 768px) {
  .prize-row {
      flex-direction: column;
      align-items: center;
  }

  .prize-item {
      width: 80%;
  }
}

@media (max-width: 480px) {
  .prize-item {
      width: 100%;
  }

  h2 {
      font-size: 2rem;
  }

  .prize-text h5 {
      font-size: 1.3rem;
  }
}


/* prize section ended */

/* gallery section started */

.gallery {
  padding : 5% 0;
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
}
.gallery h2 {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.gallery-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-item {
  width: 45%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.05);
}


/* Responsive Design */
/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-item {
      width: 45%; /* Adjusts to fit two items per row */
  }
}

@media (max-width: 768px) {
  .gallery-item {
      width: 45%;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding-top : 13%;
  }
  .gallery-item {
      width: 100%;
  }
}

/* gallery section ended */
/* payment section started */

.payment-section {
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  color:#222;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 900px;
  margin: 40px auto;
  padding: 5% 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.payment-section h2 {
  font-weight: bold;
  font-size: 2.8rem;
}
/* Payment Content Wrapper */
.payment-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Left Side: QR Code & Payment Methods */
.left-side {
  flex: 1;
  text-align: center;
}

/* ✅ QR Code - Responsive with Percentage */
.qr-code img {
  width: 50%; /* Adjusts based on the container size */
  max-width: 200px; /* Prevents excessive scaling */
  height: 250px; /* Maintains aspect ratio */
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Hover effect for QR Code */
.qr-code img:hover {
  transform: scale(1.05);
  border: 3px solid #008CBA;
  box-shadow: 0px 0px 15px rgba(0, 140, 186, 0.8);
}

/* ✅ Payment Methods */
.payment-methods h3 {
  margin-top: 15px;
}

/* ✅ Payment Method Icons - Responsive */
.method-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.method-icons img {
  width: 12%; /* Scales dynamically */
  max-width: 50px; /* Prevents oversized icons */
  height: auto; /* Maintains aspect ratio */
  transition: transform 0.3s ease-in-out;
}

/* ✅ Hover effect for payment method icons */
.method-icons img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));
}

/* ✅ Right Side: Payment Instructions */
.instructions {
  flex: 1;
  text-align: left;
  max-width: 400px;
}

.instructions ol {
  padding-left: 20px;
}

.note {
  color: #d9534f;
  font-weight: bold;
  margin-top: 10px;
}

/*  Responsive Design */
/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .payment-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .left-side, .instructions {
      max-width: 100%;
  }

  .qr-code img {
      width: 60%;
      max-width: 180px;
  }

  .method-icons img {
      width: 15%;
      max-width: 45px;
  }
}

@media (max-width: 768px) {
  .payment-content {
      flex-direction: column;
      text-align: center;
  }

  .instructions {
      text-align: center;
  }

  .qr-code img {
      width: 70%;
  }

  .method-icons img {
      width: 18%;
      max-width: 40px;
  }
}

@media (max-width: 480px) {
  .payment-section {
      padding: 30px 15px;
      padding-top: 17%;
  }

  .payment-section h2 {
      font-size: 2rem;
  }

  .qr-code img {
      width: 80%;
      height: 200px;
      max-width: 150px;
  }

  .method-icons {
      gap: 5px;
  }

  .method-icons img {
      width: 20%;
      max-width: 35px;
  }

  .instructions ol {
      font-size: 14px;
  }

  .note {
      font-size: 14px;
  }
}

/* payment section ended */

/* contact section started */

.contact-section {
  /* background-color: #; */
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  padding: 20% 0;
  margin: 5% auto;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.container h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 1px 1px 1px black;
  padding: 7% 0;
  margin-bottom: 20px;
  color:#222
}

p {
  font-size: 1.2rem;
  color: #222;
}

/* Contact Content Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Contact Details */
.contact-details {
  flex: 1;
  max-width: 500px;
  background: linear-gradient(135deg, #f0f0f0, #d9e4ea);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.contact-details h3{
  font-weight: bold;
  color:#222;
}
.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color:#222;
}



/* Map Replacement with Responsive Image */
/* Map Image Wrapper */
.map {
  flex: 1;
  width: 100%;
  max-width: 60%; /* Adjusting size in percentage */
  position: relative;
  border-radius: 8px;
  overflow: hidden; /* Ensures overlay doesn’t go outside the image */
  margin: auto; /* Centering */
}

/* Map Image */
.map {
  position: relative;
  display: inline-block;
}

.map img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.map:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}

/* Overlay Effect */
.map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Light black overlay */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Location Icon */
.map::after {
  content: "📍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none; /* This ensures clicks pass through */
}
/* Hover Effect - Show Overlay & Icon */
.map:hover::before {
  opacity: 1;
}

.map:hover::after {
  opacity: 1;
  /* transform: translate(-50%, -40%); */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .map {
    max-width: 80%; /* Increase size on medium screens */
  }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-details,
  .map {
    max-width: 90%; /* Take more space in small screens */
  }

  .map::after {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-top: 8%;
  }
  .map {
    max-width: 100%; /* Full width on very small screens */
  }

  .map::after {
    font-size: 1.8rem;
  }
}


/* constact section ended */

/* footer section started */

.footer {
  background: #065F89;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 1rem;
}

/* Social Icons Container */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

/* Social Icon Links */
.social-icon img {
  width: 32px; /* Default size */
  height: 32px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 50%;
}

/* Hover Effect */
.social-icon img:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.3);
}

/* Copyright Text */
.rights {
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Responsive Design */

@media (max-width: 1024px) {
  .footer {
      padding: 20px 15px;
      font-size: 1rem;
  }

  .social-icons {
      gap: 18px;
  }

  .social-icon img {
      width: 36px;
      height: 36px;
  }

  .rights {
      font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .social-icons {
      gap: 15px;
  }

  .social-icon img {
      width: 35px;
      height: 35px;
  }

  .rights {
      font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .social-icons {
      flex-wrap: wrap; /* Wrap icons if needed */
      gap: 12px;
  }

  .social-icon img {
      width: 30px;
      height: 30px;
  }

  .footer p {
      font-size: 0.8rem;
  }
}

/* footer section ended */


/* Footer Bottom */
/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #444;
  background-color: #007bff;
  padding-top: 20px;
  font-size: 0.9rem;
  gap: 10px;
}

.copyright-center {
  flex: 1;
  text-align: center;
  font-weight: 500;
  color:whitesmoke;
}

.copyright-right {
  flex: 1;
  text-align: center;
  color: whitesmoke;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .copyright-right {
    text-align: center;
  }
}

 /* ---pop up----- */
 .form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

.form-container h2 {
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #f9f9f9;
}

.form-group button {
  width: 100%;
  padding: 12px;
  /* background-color: #1f2937; */

  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover {
  /* background-color: #1f2937; */
  /* background-color: #58595B; */
  background-color: #9D8F82;

}

.form-group button:active {
  /* background-color: #004a8a;
   */
   background-color: #dcd1d1;
   color: black;
}

/* Thank You Message */
.thank-you-message {
  display: none;
  text-align: center;
  font-size: 18px;
  color: #4CAF50;
  padding: 20px;
}

/* Popup styles */
#contactpopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {

  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* Close button (cross mark) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
}

.close-btn:hover {
  color: red;
}

/* Text input for hidden date selection 
#popup input[type="text"]  {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  display: none;
} */

/* Text input for email address */
input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

/* Textarea */
textarea {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
button[type="submit"] {
  /* background-color:#58595B; */
  background-color: #9D8F82;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #dcd1d1;
  color: black;
}

#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.whatsapp-btn {
  position: fixed; /* Makes the button fixed on the page */
  bottom: 20px; /* Distance from the bottom of the page */
  right: 20px; /* Distance from the right of the page */
  z-index: 1000; /* Ensures it appears above other content */
  width: 60px; /* Button size */
  height: 60px;
  background-color: #25d366; /* WhatsApp green color */
  border-radius: 50%; /* Makes it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn img {
  width: 35px; /* Icon size */
  height: 35px;
}

.whatsapp-btn:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
.whatsapp-btn {
  bottom: 15px;
  right: 15px;
  width: 50px; /* Button size */
  height: 50px;
}
.whatsapp-btn img {
  width: 30px; /* Icon size */
  height: 30px;
}
}
.uppercase-text {
  text-transform: uppercase;
}



/* Custom Translate Button */
.translate-container {
  position: relative;
}

.translate-btn {
  background: #fff;
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.translate-btn:hover {
  background: #939292;
}

/* Language Dropdown */
.language-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  width: 120px;
  z-index: 100;
  animation: fadeIn 0.3s ease-in-out;
}

/* @keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
} */

.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.language-dropdown button:hover {
  background: #fff;
  color: red;
}


/* Hide Google Translate Branding Completely */
.goog-te-banner-frame, .goog-logo-link, .goog-te-gadget span, .goog-te-balloon-frame, 
#google_translate_element select, .goog-te-gadget {
  display: none !important;
}



/* Hide the Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

/* Hide the Google Translate branding and unnecessary elements */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame,
#google_translate_element select,
.goog-te-gadget {
  display: none !important;
}

/* Ensure body does not shift down due to hidden banner */
body {
  top: 0px !important;
}
/* Hide Google Translate banner */
.skiptranslate, .goog-te-banner-frame {
  display: none !important;
}



/* General video container */
#videos{
  margin-top: 2rem;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

#videos h2 {
  padding-top: 8rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  display: block; /* Ensures it behaves as a block element /
  width: 100%; /* Makes sure it takes full width */
  text-align: center; /* Explicit centering */
  position: relative;
  padding-bottom: 10px;
}

/* Styling for each video item */
.video-item video {
    width: 80%; /* Make videos responsive */
    /* max-width: 320px; Limit width */
    height: auto;
    position: relative;
    border-radius: 8px;
}

/* Row for 2 or more videos */
.video-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Specific layouts for different video counts */
.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

.video-item {
  position: relative; /* This makes the button position absolute within */
  display: inline-block;
}

.video-item video {
  width: 100%; 
  max-width: 320px; 
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below the video */
}

/* .video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
} */

/* .video-item .play-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
} */

 
/* Responsive handling */
@media (max-width: 768px) {
    .video-item video {
        max-width: 100%;
    }
    .video-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1024px) {
  .language-dropdown {
      top: -120px;
      right: 0;
      bottom: 0;
      left: 120px;
    }
   }

   @media (max-width: 480px) {
    .nav-list.active {
      align-items: flex-start;
    }
  
    .translate-btn {
      margin-left: 20px;
    }
  
    .nav-list a{
      margin-left: 20px;
  }
}

  /* ---pop up----- */
 #popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Allow scrolling inside popup */
  z-index: 9999; /* Ensure it appears above everything */
}

/* Popup box (Centered properly) */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  max-height: 80vh; /* Restrict height */
  overflow-y: auto; /* Enable scrolling inside popup */
  z-index: 10001; /* Ensure it appears above navbar */
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.close-btn:hover {
  background: darkred;
}

/* Prevent background scrolling when popup is open */
body.no-scroll {
  overflow: hidden;
}

/* Fix Navbar Overlapping */
.navbar {
  position: relative;
  z-index: 100; /* Ensure navbar does not cover popup */
}


/* Product grid layout */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Dynamic grid */
  gap: 15px;
  padding: 10px;
}

.product-item {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.product-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.discounted-price {
  color: #d9534f;
  font-weight: bold;
}

.original-price {
  text-decoration: line-through;
  color: #777;
}

/* Buttons inside the popup */
.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.popup button:hover {
  opacity: 0.8;
}

.cart-item button {
  background-color: #dc3545;
  color: white;
}

.popup button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
}

.popup button:first-of-type {
  background-color: #007bff;
  color: white;
}
.view-cart-btn {
  position: absolute;
  top: 10px;
  right: 80px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.view-cart-btn:hover {
  background-color: #218838;
}
.cart-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: none;
  z-index: 9999;
}

.product-height {
  height: 100% !important;
}

    