
     
   @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Poppins", serif;
    background-color:  rgba(191, 224, 205, 0.132);
  }

  html {
    scroll-behavior: smooth;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    position: relative;
    transition: background-color 0.3s;
    z-index: 1000; /* Ensure navbar is above other content */
    background: black;
    color: rgb(255, 255, 255);
  }

  /* Align logo and shop name to the left, nav content to the right */
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    margin-right: 10px;

  }

  /* Logo Styling */
  .logo {
    display: flex;
    align-items: center;
    height: auto;
    width: 200px;
  }

  .logo img {
    height: 80px;
    width: 80px;
    /* border-radius: 50%; */
    margin-right: 10px;
  }

  .shop-name {
    display: inline-block;
    font-size: 1.2em;
    text-align: left; /* Align text to left */
  }

  /* Nav List */
  .nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* Align nav items to the right */
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .nav-list a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding: 10px;
  }

  /* Language Dropdown */
  .language-dropdown {
    display: flex;
    align-items: center;
  }
  

  #languageSelect {
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 7px;
    width: 100px;
  }
  

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

  /* Hamburger Menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Make sure hamburger menu is above the navbar */
  }

  .menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: rgba(255, 140, 0, 0.5);
    margin: 3px 0;
  }

  .book-now {
    background: #2A004E;
    color: var(--dark) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
    margin-right: 1rem;
  }

  .book-now:hover {
    transform: translateY(-3px);
  }

  /* Media Query for Mobile View */
  @media (max-width: 1024px) {

    .navbar-content {
      width: 100vw;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding: 0 20px;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: black;
      width: 100%;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 10px;
      gap: 25px; /* Adds space between the menu items */
      z-index: 1002; /* Ensure the menu is above the hero section */
    }

    .nav-list.active {
      display: flex;
      margin-top: 3rem;
    }

    .menu-toggle {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    /* Center Language Select in Mobile Menu */
    .language-dropdown {
      justify-content: center;
      width: 100%;
    }
  

#languageSelect {
  width: 100%;
}
 /* Logo Styling */
  .logo {
    display: flex;
    align-items: center;
    height: auto;
    width: 250px;
  }
  .shop-name{
    display: inline-block;
    font-size: larger;
  }
  .logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 0px;
  }
  }

  /* Navbar Background Change on Scroll */
  .scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
 @media (max-width: 768px) {
    .navbar-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100vw; 
    }

/* Ensure logo and shop name are left without gaps */
.logo {
    display: flex;
    align-items: flex-start;
    width: 250px;
    gap: 0;
}

.shop-name {
    font-size: 1rem; /* Adjust size if needed */
    white-space: normal; /* Allows text to wrap */
    word-break: break-word; /* Breaks long words to prevent overflow */
    
}

/* Hamburger menu on the right */
.menu-toggle {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-right: 0px;
}
}

/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: black;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('images/background.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Dark Overlay */
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Fully Responsive Semi-circle */
.hero-semicircle {
  position: absolute;
  top: 0;
  left: 0;
  width: 45vw; /* Adjusts with screen width */
  height: 100vh; /* Full viewport height */
  background: #222;
  border-bottom-right-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

/* Semi-circle Content */
.semi-circle-content {
  text-align: center;
  padding: 30px;
  max-width: 400px;
  color: rgba(255, 140, 0, 0.9);
  text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.5);
}

.semi-circle-content h1 {
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.5);
}

.semi-circle-content p {
  font-size: 1.3rem;
  color: #fffcfc;
  font-weight: 500;
}

/* Primary Button */
.btn-primary {
  display: inline-block;
  background: #ff8c00;
  color: white;
  padding: 12px 24px;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: #ff6c00;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-semicircle {
    width: 50vw; /* Adjust width for tablets */
  }
  .semi-circle-content h1 {
    font-size: 2rem;
  }
  .semi-circle-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  
  .hero-semicircle {
    width: 100%;
    height: 50vh; /* Adjust height for smaller screens */
    border-bottom-right-radius: 100% 50%;
    border-top-right-radius: 0;
  }

  .semi-circle-content {
    padding: 20px;
  }

  .semi-circle-content h1 {
    font-size: 1.8rem;
  }

  .semi-circle-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-semicircle {
    width: 100%;
    height: 45vh;
    border-bottom-right-radius: 100% 40%;
  }

  .semi-circle-content h1 {
    font-size: 1.5rem;
  }

  .semi-circle-content p {
    font-size: 0.9rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


/* home section ends */

/* About Section */
.about {
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #222;
  

}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  /*max-width: 50%;*/
  text-align: center;
  height: 100%;
  width: 100%;
}

.about-image img {
  width: 100%;
  /*max-height: 400px;*/
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.about-text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.about-text h2 {
  font-size: 3em;
  color: white;
  text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1.3em;
  line-height: 1.6;
  color: white;
}

@media (max-width: 1024px) {
  .about-text h2 {
      font-size: 2.5em;
  }
  .about-text p {
      font-size: 1.2em;
      

  }
}

@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2rem;
  }
  .hero-content p {
      font-size: 1rem;
    
  }
  .btn-primary {
      font-size: 1rem;
      padding: 10px 20px;
  }
  .about-content {
      flex-direction: column;
      text-align: center;
  }
  .about-image, .about-text {
      max-width: 100%;
  }
  .about-text h2 {
      font-size: 2em;
  }
  .about-text p {
      font-size: 1em;
  }
}
/* aboutsection ends*/

/* services Layout */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 90%;
}

.services-wrapper.center {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.service-card {
  width: 100%;
  height: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  text-align: center;
  position: relative;
  gap:2%;
  margin-bottom: 7%;
}

.service-card:hover {
  transform: scale(0.9);
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 80%; /* Fixed height for uniformity */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  text-align: center;
}

.service-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-overlay p {
  margin: 5px 0 0;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .services-wrapper {
      grid-template-columns: repeat(2, 1fr);
  }
  .services-wrapper.center {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-wrapper {
      grid-template-columns: 1fr;
  }
  .services-wrapper.center {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-wrapper {
      grid-template-columns: 1fr;
  }
  .services-wrapper.center {
      grid-template-columns: 1fr;
  }
}

/* services Layout ends */


/* prizes Layout */

.prizes {
  text-align: center;
  padding: 60px 5%;
  background:  #222;
}

.prizes h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.5);
  margin-bottom: 40px;
}

.prizes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.prize-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 100%;
  # max-width: 550px;
  margin: auto;
  height: 100%
}

.prize-card.center {
  grid-column: span 2;
  display: flex;
  justify-content: center;
}

.prize-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.prize-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prize-box {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 69, 0, 0.85);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(255, 69, 0, 0.3);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .prizes-container {
      grid-template-columns: 1fr;
  }
  .prize-card {
      width: 100%;
      # max-width: 100%;
  }
  .prize-card.center {
      grid-column: span 1;
  }
}

/* prizes Layout ends */

        /* Gallery Section */
        .gallery {
          padding: 60px 0;
          background: #222;
          text-align: center;
          position: relative;
          overflow: hidden;
      }

      /* Smoke Effect on the Container */
      .gallery::before {
          content: "";
          position: absolute;
          top: 0;
          left: 50%;
          width: 200%;
          height: 100%;
          background: url('https://www.transparenttextures.com/patterns/smoke.png');
          opacity: 0.2;
          transform: translateX(-50%);
          animation: smokeAnimation 10s linear infinite;
          pointer-events: none;
      }

      @keyframes smokeAnimation {
          0% {
              transform: translateX(-50%) translateY(0);
              opacity: 0.2;
          }
          50% {
              transform: translateX(-50%) translateY(-20px);
              opacity: 0.3;
          }
          100% {
              transform: translateX(-50%) translateY(0);
              opacity: 0.2;
          }
      }

      .gallery h2 {
          font-size: 2.5rem;
          color: white;
          font-weight: bold;
          text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.5);
          margin-bottom: 30px;
      }

      /* Grid Layout */
      .gallery-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 15px;
          padding: 20px;
           
          margin: 0 auto;
          position: relative;
          z-index: 2;
      }

      /* Image Container */
      .gallery-item {
          width: 100%;
          height: 100%; /* Set equal height */
          overflow: hidden;
          border-radius: 10px;
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
          transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
          position: relative;
      }

      /* Smoke Effect on Images */
      .gallery-item::after {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url('https://www.transparenttextures.com/patterns/smoke.png');
          opacity: 0.15;
          animation: smokeAnimation 12s linear infinite;
          pointer-events: none;
      }

      /* Image Styling */
      .gallery-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.3s ease-in-out;
      }

      .gallery-item:hover img {
          transform: scale(1.05);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
          .gallery-grid {
              grid-template-columns: repeat(2, 1fr);
          }
      }

      @media (max-width: 768px) {
          .gallery-grid {
              grid-template-columns: 1fr;
          }
      }



/* Payment Section */
.payment-section {
  padding: 60px 20px;
  background-color: #222;
  display: flex;
  justify-content: center;
}

/* Payment Container */
.payment-container {
  display: flex;
  flex-direction: row;
  max-width: 850px;
  background: white;
  border-radius: 12px;
  
  overflow: hidden;
  align-items: center;
  padding: 30px;
}

/* Left Side - QR Code Section */
.qr-code-section {
  flex: 1;
  background: #eef2f6;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  border-right: 2px solid #e0e6ed;
}

.qr-code-section h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #333;
}

.qr-code {
  width: 160px;
  border: 4px solid #e0e6ed;
  border-radius: 10px;
  margin-bottom: 10px;
}

.qr-code-section p {
  font-size: 1rem;
  color: #555;
}

/* Right Side - Payment Info */
.payment-info {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.payment-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.payment-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.payment-methods h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.method-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.method-icons img {
  width: 50px;
  transition: transform 0.3s ease-in-out;
}

.method-icons img:hover {
  transform: scale(1.1);
}

/* Payment Instructions */
.payment-instructions {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.payment-instructions li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.payment-instructions li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #6f0402;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .payment-container {
      flex-direction: column;
      text-align: center;
      padding: 20px;
  }

  .qr-code-section {
      border-right: none;
      border-bottom: 2px solid #e0e6ed;
  }

  .payment-info {
      text-align: center;
  }

  .method-icons {
      justify-content: center;
  }
}

  

.contact-section {
  background-color: #222;
  color:white;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(255, 140, 0, 0.5);
  padding: 60px 20px;
  text-align: center;
  font-size: 1.5rem;
  

}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  
}

.contact-details {
  text-align: left;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 20px;
  background: #ff8c00;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: whitesmoke;
  color: #222;
}

.map img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.map img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  .contact-details {
      text-align: center;
  }
}

/* Footer Section */
.footer-section {
  background-color: black;
  color: #FEFEFE;
  padding: 20px 40px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  /* border-top: 1px solid #444; */
  padding-top: 20px;
  font-size: 0.9rem;
  gap: 10px;
}
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px; /* Adjust spacing between icons */
  margin-bottom: 10px;
}

.social-icons a {
  font-size: 24px;
  color: white;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
}


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

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

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

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


.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: #ff6c00;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover {
  background-color: #da752d;
}

.form-group button:active {
  background-color: #ff6c00;
}

/* 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:#222;
  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:white;
  cursor: pointer;
  background: none;
  border: none;
}

.close-btn:hover {
  color: #ff6c00;
}

/* Button to select date */
#datePickerButton {
  background-color: #ff6c00;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

#datePickerButton:hover {
  background-color: #da752d;
}

/* 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: #ff6c00;
  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:  #da752d;
}

#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 */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

#videos h2 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  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;
    }
}


/* ---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: 100%;
  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;
}

    