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

body {
  background-color: #f8f9fa;
  color: rgb(7, 7, 7);
  font-family: 'Times New Roman', Times, serif;
}

html {
  scroll-behavior: smooth;
}
    
/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  position: fixed;
  transition: background-color 0.3s;
  z-index: 1000; /* Ensure navbar is above other content */
  /* background: rgba(148, 147, 152, 0.95); */
  background-color: #02766e;
}

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

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

.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 */
  color: white;
}


/* 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; */
  color: white;
  font-weight: bold;
  padding: 8px;
  font-size: 1em;
}

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

#languageSelect {
  font-size: 0.9em;
  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; */
  background-color: whitesmoke;
  margin: 3px 0;
}



/* Media Query for Mobile View */
@media (max-width: 1024px) {
  .navbar-content {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    /* background-color: white; */
    background-color: #02766e;
    color: rgb(15, 13, 13);
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 5px  rgba(0, 0, 0, 0.1);
    padding: 10px;
    gap: 10px; /* Adds space between the menu items */
    z-index: 1002; /* Ensure the menu is above the hero section */
  }
  .nav-list a{
      color: white;
  }
  .nav-list.active {
    display: flex;
    /* margin-top: 3rem; */
  }

  .menu-toggle {
    display: flex;
  }

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

  #languageSelect {
    width: 100%;
    margin: 10px auto;
  }
}
/*nav bar end*/


/* Home Section */
.home {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem 10%;
  background:#838578;
  text-align: center;
  
}


/* Content Box */
.home-content {
  max-width: 600px;
  text-align: center;
  margin-bottom: 2rem;
}

.home-content h1 {
  padding-top: 50px;
  font-size:2.8rem;
  font-weight: bold;
  color: #faf7f7;
}

.home-content p {
  font-size: 1.2rem;
  color:  #faf7f7;
  margin: 1rem 0 1.5rem;
  
}

/* Image Container */
.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  
}

/* Single Image (Full Width) */
.image1 {
  width: 100%;
  height: 100%;
  object-fit:fill;
  border-radius: 15px;
  
}

/* Responsive Design */
@media (max-width: 1024px) {
  .image-container {
      width: 90%;
      
  }

  /* .image1 {
      height: 300px;
  } */
}

@media (max-width: 768px) {
  .home-content h1 {
      font-size: 2.2rem;
  }

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

  /* .image1 {
      height: 250px;
  } */
}

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

  /* .image1 {
      height: 200px;
  } */
}


/*About section*/
/* About Section Styling */
.about {
  position: relative;
  height: auto; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f7f7; /* Light background */
  overflow: hidden;
  padding: 2rem 0;
}

/* About Content Container */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  height: auto; /* Adjust height for a balanced layout */
  position: relative;
  flex-direction: row-reverse; /* Swaps text and image positions */
  gap: 20px;
}

/* Image Section */
.image-section {
  width: 90%;
  flex: 1;
  position: relative;
  height: auto;
 
}

.image-section img {
  width: 100%;
  height: auto;
  max-width: 900px;
  object-fit: cover;
  border-radius: 15px;
  
}

/* Text Section */
.text-section {
  flex: 1;
  background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent box */
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  color: #fff;
  z-index: 2; /* Ensure text stays on top */
}

.about-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
  text-align: justify;
  
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
      flex-direction: column-reverse; /* Stacks image first, then text */
      margin-top: 2%;
  }

  .text-section {
      max-width: 90%;
      text-align: center;
      padding: 20px;
  }

  .about-title {
      font-size: 2.5rem;
  }

  .about-description {
      font-size: 1.1rem;
      min-height: 120px;  /* Adjust as needed for longer text */
  
  }

  .image-section img {
      object-fit: cover;
      margin:2% 0%;
  }
}

@media (max-width: 480px) {
  .about-title {
      font-size: 2rem;
  }

  .about-description {
      font-size: 1rem;
  }

  .image-section img {
      object-fit: cover;
  }
}

    
/* service section*/
/* Services Section - Grid Layout */
.services {
  padding: 2rem 0;
}
.services-container {
  
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  padding: 40px 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  object-fit:cover;
  height:auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 
}

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

.service-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #ddd;
}

.service-info h3 {
  text-align: center;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.service-info p {
     min-height: 120px;  /* Adjust as needed for longer text */
    padding: 5px; /* Adding padding for better readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

/* Last image occupies the entire last column */
.service-card:nth-child(4) {
  grid-column: 1/ 2;
  grid-row: 2/3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }

  /* .service-card:nth-child(2) {
    grid-column: span 2;
    grid-row: auto;
  } */
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .service-card {
    grid-column: span 1;
    grid-row: auto;
  }

  .service-card:nth-child(2) {
    grid-column: span 1;
    grid-row: auto;
  }
}



/*pricing section*/
/* General Styles */
.prices-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for larger screens */
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.prices h2 {
  text-align: center;
  margin-bottom: 20px;
}

.price-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  height:auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
 
}

.price-card img {
  width: 100%;
  height:100%;
  object-fit:cover;
  display: block;
}

/* Positioned Price Box */
.price-box {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff5722; /* Vibrant red-orange for visibility */
  color: white;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); /* Ribbon effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for a slight pop */
.price-card:hover .price-box {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}



/* Layout Adjustments */
.price-card:nth-child(1) {
  grid-column: span 2;
}

.price-card:nth-child(2) {
  grid-column: span 1;
}

.price-card:nth-child(3),
.price-card:nth-child(4),
.price-card:nth-child(5) {
  grid-column: span 1;
  grid-row: 2;
}

/* Base Layout */
.prices-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Price Card */
.price-card {
  width: 100%;
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .prices-container {
    grid-template-columns: repeat(3, 1fr); /* 2 columns on tablets */
  }

  .price-card {
    width: 100%;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .prices-container {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    gap: 20px;
  }

  .price-card {
    width: 100%;
  }

  .price-box {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
  .prices-container {
    flex-direction: column;
  }

  .price-card {
    width: 100%;
  }


  .price-box {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


/* General Styles */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-auto-rows: 200px; /* Default row height */
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery h2 {
  text-align: center;
  width: 100%;
}

/* Base styles for gallery items */
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  align-items: stretch;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height:auto;
}

.gallery-item:hover {
  transform: scale(1.05);

}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Layout Specifics --- */

/* Row 1 */
.gallery-item:nth-child(1) {
  grid-column: span 2; /* 1st image spans 2 columns */
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 1; /* 2nd image in row 1 */
  grid-row: span 2; /* Extends into row 2 */
}

/* Row 3 */
.gallery-item:nth-child(3) {
  grid-column: span 1; /* 1st image spans into row 3 */
  grid-row: span 4;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

/* Row 3 */
.gallery-item:nth-child(5) {
  grid-column: 2 / span 1; /* Starts after the first grid */
  grid-row: span 2;
}

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

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

  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
  }

  .gallery-item img {
    width: 100%;
    height: 100%; /* Prevent image cropping */
    object-fit: cover; /* Ensure full image is displayed */
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr; /* Single column for mobile */
    grid-auto-rows: auto;
  }

  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center; /* Center align */
    justify-content: center; /* Center align */
  }

  .gallery-item img {
    width: 100%;
    height: auto; /* Ensure full image is visible */
    object-fit: contain; /* Prevent cropping */
  }
}


/* Payment Section */
.payment-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  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 */
  .contact-section {
    background-color: #fcfcfc;
    color: #333;
  }
  
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 20px;
  }
  
  .contact-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 450px;
    text-align: center;
  }
  
  .contact-card .btn {
    width: fit-content;
    display: inline-block;
    padding: 10px 20px;
    background-color:#03544f;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s;
  }
  
  .contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    /*margin: 10px 0;*/
    /*gap: 10px;*/
    text-align: left;
  }
  
  .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  @media (max-width: 768px) {
    .contact-card {
        width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .contact-card h2, .google-map h2 {
      font-size: 1.25rem; /* Slightly smaller headings */
    }
    
    .info-item i {
      font-size: 1.2rem; /* Smaller icons */
      margin-right: 0.8rem;
    }
    
    .info-item p {
      font-size: 0.9rem; /* Adjust text size for readability */
    }
    }
  

  /* Footer Styles */
  .footer {
    background-color:#02766e;
    color:rgb(255, 255, 255);
    padding: 1rem 2rem;
    display: flex;
    /* height:25vh; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    
    
  }
  .footer-social {
    margin-bottom: 10px;
    display: flex;
    gap: 10px; /* Controls spacing between icons */
    justify-content: center;
    align-items: center;
}
  
  .footer-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
  }
  .social-icon {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    
}

.social-icon:hover {
    transform: scale(1.1);
}
  
  
  .footer-copyright {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .product-by-visys p {
    opacity: 0.5;
    font-size: 0.7rem;
    color: black;
  
  }
  
  
  
  .footer-copyright {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .product-by-visys p {
    opacity: 0.5;
    font-size: 0.7rem;
    color: black;
  
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
  
    
    .footer-copyright {
        text-align: center;
    }
  
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  }
  
  .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: 10px;
        right: 10px;
        width: 40px; /* Button size */
        height: 40px;
    }
      .whatsapp-btn img {
        width: 25px; /* Icon size */
        height: 25px;
    }
    }
  
  .form-container {
    background-color: white;
    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:#48A6A7;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .form-group button:hover {
    background-color:#48A6A7;
  }
  
  /* Thank You Message */
  .thank-you-message {
    display: none;
    text-align: center;
    font-size: 18px;
    color:#48A6A7;
    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: #48A6A7;
  }
  
  /* Button to select date */
  #datePickerButton {
    background-color:#48A6A7;
    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:#48A6A7;
  }
  
  /* 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: #48A6A7;
    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:#48A6A7;
  }
  
  #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;
  }

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

@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;
}
}



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

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

    