
     
   
     
   @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: #2577c4;
    color: black;
  }

  /* 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: 300px;
  }

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

  .shop-name {
    display: inline-block;
    word-break: break-all;
    word-wrap: break-word;
    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: black;
    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: black;
    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: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      /* padding: 0 20px; */
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #2577c4;
      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 */
/* Responsive Design */
@media (max-width: 1250px) {
  .logo img {
    height: 50px;
    width: 50px;
  }

  .shop-name {
    font-size: 1.1em;
  }

}

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

        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", sans-serif;
            background-color: white;
        }

        /* Hero Section */
/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Left Side: Content */
.hero-content {
  flex: 0.45;
  padding: 4%;
  text-align: left;
  background-color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #E59560;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

.btn-primary {
  display: inline-block;
  background: black;
  color: white;
  padding: 12px 24px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: #E59560;
  transform: scale(1.05);
}

/* Middle Divider: S-Shape */
.s-divider {
  flex: 0.1;
  position: relative;
  height: 100vh;
  background: white;
}

.s-divider svg {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
}

/* Right Side: Hero Image */
.hero-image {
  flex: 0.55;
  height: 100vh;
  background: url('images/background.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero {
      flex-direction: column;
      height: auto;
  }
  .hero-content {
      flex: 1;
      width: 100%;
      text-align: center;
      padding: 5%;
  }
  .s-divider {
      display: none;
  }
  .hero-image {
      flex: 1;
      width: 100%;
      height: 50vh;
      min-height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-image {
      height: 45vh;
      min-height: 300px;
  }
  .hero-content h1 {
      font-size: 2.5rem;
  }
  .hero-content p {
      font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
      height: 40vh;
      min-height: 250px;
  }
  .hero-content h1 {
      font-size: 2rem;
  }
  .hero-content p {
      font-size: 1rem;
  }
  .btn-primary {
      font-size: 1rem;
      padding: 10px 20px;
  }
}


/* home section ends */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: black;
}

/* About Section */
.about {
  width: 100%;
  padding: 80px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  /*max-width: 1200px;*/
  width: 100%;
  height: auto;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left Side: Image Container */
.about-image {
  flex: 1;
 /* max-width: 100%;  *//* Increased width */
  height: 100%;  /* Increased height */
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  animation: fadeInZoom 1s ease-in-out;
}

/* Image Inside Container */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Right Side: Text Content */
.about-text {
  flex: 1;
  max-width: 550px;
  text-align: left;
  padding-left: 50px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

/* Animation Effect */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1.2rem;
  }

  .about-image {
    max-width: 500px;
    height: 400px;  /* Increased height */
  }
}

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

  .about-text {
    text-align: center;
    max-width: 90%;
    padding-left: 0;
  }

  .about-image {
    max-width: 450px;
    height: 380px;  /* Increased height */
    margin-bottom: 20px;
  }
}

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

  .about-text p {
    font-size: 1rem;
  }

  .about-image {
    max-width: 100%;
    height: 350px;  /* Increased height for mobile */
  }
}



/* product section started */
.products {
  background-color: white;
}

.products-container {
  margin: auto;
  padding: 20px;
}

.products h1 {
  text-align: center;
  color: #222;
  font-weight: bold;
  font-size: 3rem;
  margin-top: 80px;
  margin-bottom: 20px;
}

.products h2 {
  text-align: center;
  color: #222;
  font-weight: bold;
  font-size: 2.8rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Responsive Grid Layout */
.product-group {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  height: 100%;
}

/* Default Image Style */
.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 100%; /* Default height */
}

/* First & Second Images - Same Height */
.product-item:nth-child(1),
.product-item:nth-child(2) {
  height: 100%; /* Same increased height */
}

/* Third Image (Spanning 2 Rows) */
.product-item:nth-child(3) {
  grid-column: span 1; /* Occupies 1 column */
  grid-row: span 2; /* Spans 2 rows */
  height: 100%; /* Double height */
}

/* Fourth & Fifth Images */
.product-item:nth-child(4),
.product-item:nth-child(5) {
  height: 100%;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.product-description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  overflow-y: auto;
  white-space: normal;
}

.product-item:hover .product-description {
  opacity: 1;
}

/* Custom Layout for Larger Screens */
@media (min-width: 900px) {
  .product-group {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .product-item:nth-child(1),
  .product-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .product-item:nth-child(3) {
    grid-column: span 1; /* Spans 1 column */
    grid-row: span 2; /* Spans 2 rows */
  }

  .product-item:nth-child(4),
  .product-item:nth-child(5) {
    grid-column: span 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .products h1 {
    font-size: 2.8rem;
  }
  .products h2 {
    font-size: 2.5rem;
  }
  .product-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-item {
    height: 100%;
  }

  .product-item:nth-child(1),
  .product-item:nth-child(2) {
    height: 100%;
  }

  .product-item:nth-child(3) {
    grid-column: span 2; /* Spanning both columns */
    height: 100%; /* Adjust height for medium screens */
  }
}

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

  .product-item {
    height: auto;
  }

  .product-item:nth-child(1),
  .product-item:nth-child(2) {
    height: 100%;
  }

  .product-item:nth-child(3) {
    grid-column: span 1; /* Single column layout */
    grid-row: span 1;
    height: 100%;
  }
}


/* services Layout ends */

/* Prize Section */
.prize {
  width: 100%;
  padding: 60px 5%;
  background: #f8f8f8;
  text-align: center;
  animation: blinkBackground 2s infinite alternate ease-in-out; /* Blinking Animation */
}

/* Blinking Animation */
@keyframes blinkBackground {
  0% {
    background: #f8f8f8;
  }
  50% {
    background: #eaeaea; /* Slightly darker shade */
  }
  100% {
    background: #f8f8f8;
  }
}

/* Container */
.container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* Section Title */
.prize h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

/* Prize Wrapper */
.prizes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Prize Grid: First Row - 3 Columns */
.prize-grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

/* Prize Grid: Second Row - 2 Columns */
.prize-grid-1 {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
}

/* Prize Item */
.prize-item {
  background: white;
  border-radius: 12px;
  width: 100%;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  height: auto;
  animation: blinkPrize 2s infinite alternate ease-in-out; /* Blinking Animation */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Prize Item */
.prize-item-1 {
  background: white;
  border-radius: 12px;
  width: 50%;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  height: auto;
  animation: blinkPrize 2s infinite alternate ease-in-out; /* Blinking Animation */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Blinking Animation for Prize Items */
@keyframes blinkPrize {
  0% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow */
  }
  100% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
}


/* Hover Effect */
.prize-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.prize-item-1:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Prize Image */
.prize-image {
  width: 100%;
  height:100%;
  border-radius: 10px;
  overflow: hidden;
}

.prize-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Image */
.prize-item:hover .prize-image img {
  transform: scale(1.1);
}

/* Prize Text (Price Tags) */
.prize-text {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  animation: blinkPrice 1.5s infinite alternate ease-in-out; /* Blinking Animation */
}

/* Blinking Animation for Price Tags */
@keyframes blinkPrice {
  0% {
    color: #333;
    opacity: 1;
  }
  50% {
    color: #ff5733; /* Change color for emphasis */
    opacity: 0.5;
  }
  100% {
    color: #333;
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .prize-grid,
  .prize-grid-1 {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
  }

  .prize-item,
  .prize-item-1 {
    width: 100%;
    max-width: 90%; /* Adjust width for better spacing */
  }

  .prize-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
  }
}

/* prizes Layout ends *

/* Gallery Section */
/* Gallery Section */
.gallery {
  padding: 50px 5%;
  text-align: center;
}

/* Section Title */
.gallery h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* First Column */
.gallery-item:nth-child(1) {
  grid-row: span 2;
}

/* Second Column - Arranged Images */
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
  grid-row: span 1;
}

/* Fifth Image Spanning 6 Rows */
.gallery-item:nth-child(5) {
  grid-row: span 6;
}

/* Sixth Image */
.gallery-item:nth-child(6) {
  grid-row: span 2;
}

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

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

/* Hover Effect */
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .gallery h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .gallery h2 {
    font-size: 1.8rem;
  }
}
/* Payment Section */

.payment h2{
  text-align: center;
  font-size: 2.5rem;
  padding-top: 3rem;
}

.payment-section {
  /* padding: 60px 20px; */
  background-color: white;
  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: black;
}

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

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

.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: black;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.payment-instructions li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: black;
  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: white;
  color: black;
  font-weight: bold;
  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;
  text-shadow: none;
  
  
}

.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: black;
  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: 90%;
  /*max-width: 400px;*/
  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);
}

/* Increase width and height for mobile view */
@media (max-width: 768px) { 
  .map img {
    width: 120%; /* Increase width */
    height: 100%; /* Maintain aspect ratio */
    /*max-height: 500px; *//* Adjust height as needed */
    max-width: none; /* Remove width restrictions */
    margin-left: -10%; /* Center the image */
  }
}

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

/* Footer Section */
.footer-section {
  background-color: #2577c4;
  color: black;
  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: black;
  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: #222;
}

/* 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: black;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.form-group button:hover {
  background-color: rgb(105, 103, 103);;
}

.form-group button:active {
  background-color:  rgb(105, 103, 103);;
}

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

.close-btn:hover {
  color: rgb(105, 103, 103);;
}

/* Button to select date */
#datePickerButton {
  background-color: black;
  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: rgb(105, 103, 103);;
}

/* 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: black;
  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: rgb(105, 103, 103);
}

#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 {

padding: 2rem 0;

}

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

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

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


/* ---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-items {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.product-items 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;
}


    


    