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

body {
    font-family: Arial, sans-serif;
    background-color: beige;
}

p {
    padding: 12px;
}


/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and name */
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    color: white !important;
    font-size: 18px;
    font-weight: bold;
    max-width: 150px;
    word-wrap: break-word;
    display: block;
    line-height: 1.2; /* Adjust spacing */
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centers everything vertically */
    background-color: #2C3E50 ;
    padding: 10px 20px;
    z-index: 1000;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    color: white;
    font-size: 18px;
    font-weight: bold;
    max-width: 150px;
    word-wrap: break-word;
    display: block;
    line-height: 1.2;
}

/* Navigation Links */
.nav-container {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end; /* Aligns nav to the right */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center; /* Ensures vertical centering */
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: yellow;
}

/* Login and Language */
.extra-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Selector */
.translate-container {
    position: relative;
}

.translate-btn {
    background: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    
}

/* Hide Hamburger Menu on Large Screens */
.menu-toggle {
    display: none;
}

/* Responsive Navigation (Only for Mobile View) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show only on mobile */
        font-size: 20px;
        color: white;
        cursor: pointer;
    }

    .nav-container {
        justify-content: flex-end;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #2C3E50;
        padding: 10px 0;
        gap: 15px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }
}

/* end of nav bar */

/* start of hero section */
/* Hero Section */
.hero {
    background: url('images/background.jpg') 
    no-repeat center center/cover;
    min-height: 100vh; /* Adjust dynamically instead of fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
    text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}

/* Hero Content */
.hero-content {
    scroll-margin-top: 100px;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
}

/* Hero Heading */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Hero Paragraph */
.hero p {
    font-size: 1.2rem;
}

/* Explore Button */
.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover Effect */
.explore-btn:hover {
    background-color: #e55d00;
    transform: scale(1.05);
}

/* 🔹 Responsive Fixes */
@media (max-width: 768px) {
    .hero {
        min-height: auto; /* Allow content to determine height */
        padding: 60px 20px; /* Add extra padding to prevent cutting */
    }

    .hero-content {
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .explore-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 150px 20px; /* More padding for smaller screens */
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .explore-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* end of hero section */

/* start of about section */
#about {
    padding: 40px 15px; /* Adjust padding for smaller screens */
    /* background: #f8f8f8; */
    text-align: center;
    scroll-margin-top: 100px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 15px;
}

.about-text {
    flex: 1;
    min-width: 280px; /* Ensure better responsiveness */
}

.about-text h2 {
    font-size: 24px; /* Reduce font size for smaller screens */
    color: #d32f2f;
}

.about-text p {
    font-size: 16px; /* Adjust text size for better readability */
    color: #555;
    line-height: 1.5;
}

.about-image {
    flex: 1;
    min-width: 280px; /* Adjust for smaller screens */
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100% !important;
    max-width: 350px; /* Reduce max-width for small screens */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive for very small screens (320px width) */
@media (max-width: 480px) {
    #about {
        padding: 30px 10px; /* Reduce padding for better fit */
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-image img {
        max-width: 280px; /* Reduce image size further */
    }
}


/* end of about section */

/* Start of Product Section */
/* Start of Product Section */
.product-section {
    text-align: center;
    padding: 50px 20px;
    background-color: beige; /* Light wedding theme */
    scroll-margin-top: 100px;
}

.product-section h2 {
    font-size: 28px;
    color: #d32f2f;
    margin-bottom: 20px;
}

/* Product Grid */
.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* First Row - 2 Images Centered */
.row:first-child {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.row:first-child .product {
    width: 45%;
}

/* Second Row - 3 Images */
.row:last-child {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.row:last-child .product {
    width: 30%;
}

/* Product Styling */
.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: white; /* Background for better separation */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .row:first-child, .row:last-child {
        flex-direction: column;
        align-items: center;
    }

    .row:first-child .product, .row:last-child .product {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .row:first-child .product, .row:last-child .product {
        width: 100%;
    }
}

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

/* Paragraph inside container */
.product p {
    margin-top: 10px; /* Keeps space between the image and text */
    transition: color 0.3s ease;
    position: relative;
    z-index: 1; /* Ensures text stays above the image */
    padding: 10px;
    background: white;
    width: 100%;
    border-radius: 10px;
}

/* Optional: Change text color on hover */
.product:hover p {
    color: #d32f2f;
}
/* End of Product Section */



/* end of product section */


/* Start of Pricing Section */
/* Pricing Section */
#pricing {
    text-align: center;
    padding: 50px 20px;
    /* background: #f8f8f8; */
}

/* Pricing Heading */
.pricing-heading {
    font-size: 32px;
    color: #d32f2f;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Pricing Container */
.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Pricing Row */
.pricing-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

/* Price Box - Fixed Height for Consistency */
.price-box {
    width: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    background: white;
    transition: transform 0.3s ease-in-out;
}

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

/* Image Wrapper */
.image-wrapper {
    width: 100%;
    height: 80%; /* Set a fixed height for all images */
    overflow: hidden;
}

/* Ensure Image Fills Wrapper */
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Content Below Image */
.price-p {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    background: white;
}

/* Hover Effect: Image Zooms, Content Stays */
.price-box:hover {
    transform: scale(1.05);
}

.price-box:hover .image-wrapper img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .price-box {
        width: 280px;
    }
}

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

    .price-box {
        width: 85%;
    }

    .image-wrapper {
        height: 200px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 480px) {
    .price-box {
        width: 95%;
    }

    .image-wrapper {
        height: 180px;
    }

    .pricing-heading {
        font-size: 24px;
    }
}


/* end of price section */

/* start of Gallery section */
#gallery {
    text-align: center;
    padding: 50px 20px;
    /* background: #f8f8f8; */
    scroll-margin-top: 100px;
}

/* Gallery Heading */
.gallery-heading {
    font-size: 32px;
    color: #d32f2f;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Gallery Container */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Gallery Item */
.gallery-item {
    width: 30%;
    /*max-width: 300px;*/
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* 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: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 90%;
    }
}
/* End of Gallery section */

/* start of payment section */
.payment-section {
    text-align: center;
    padding: 60px 20px;
    /* background: #f8f8f8; */
    scroll-margin-top: 100px;
}

/* Title */
.payment-title {
    font-size: 32px;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Payment Container */
.payment-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* QR Code Section */
.qr-code-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    text-align: center;
}

.qr-code-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #444;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.qr-code:hover {
    transform: scale(1.1);
}

.qr-code-section p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Payment Information */
.payment-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    text-align: left;
}

.payment-info h2 {
    font-size: 24px;
    color: #444;
    margin-bottom: 15px;
    text-align: center;
}

.payment-info ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #555;
}

.payment-info ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.payment-info ul li::before {
    content: "✔";
    color: #d32f2f;
    font-weight: bold;
    margin-right: 10px;
}

/* Accepted Payment Methods */
.payment-methods {
    margin-top: 20px;
    text-align: center;
}

.payment-methods h3 {
    font-size: 20px;
    color: #444;
    margin-bottom: 15px;
}

.method-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.icon {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.icon:hover {
    transform: scale(1.2);
}

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

    .qr-code-section,
    .payment-info {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .payment-title {
        font-size: 26px;
    }

    .qr-code {
        width: 180px;
        height: 180px;
    }

    .icon {
        width: 40px;
    }
}
/* end of payment section */

/* Contact Section */
.contact-section {
    padding: 50px 10px;
    text-align: center;
    /* background-color: #f9f9f9; */
    scroll-margin-top: 100px;
}

/* Title */
.contact-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #d32f2f;
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-info h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: darkgreen;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
}

/* Map Container */
.map-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.map-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

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

/* Responsive Design */
@media (max-width: 480px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, 
    .map-container {
        min-width: 100%;
    }

    .map-image {
        max-width: 100%;
    }
}

/* end of contact section */

/* connect us button */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

/* .contact-info, .map-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 300px;
}

.map-container {
    width: 20px;
} */

.connect-btn-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Centers button horizontally */
    margin-top: 20px;
}

/* Button Styling */
.connect-btn {
    display: inline-block;
    background: darkgreen;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.connect-btn:hover {
    background: lightgreen;
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* end of connect btn */
/* Footer section */
.footer {
    background: #2C3E50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .social-media {
    display: flex;
    gap: 15px;
  }
  
  .social-media a {
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .social-media a:hover {
    transform: scale(1.2);
    color: #ffcc00;
  }
  
  /* Copyright Text */
  .footer-copyright {
    font-size: 14px;
    margin-top: 10px;
  }
  /* end of footer section */
  
  /* WhatsApp Button Styling */
  /* whatsapp icon start */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background 0.3s;
    text-decoration: none;
    z-index: 9999;
  }
  
  /* Hover effect */
  .whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
  }
  
  /* WhatsApp icon */
  .whatsapp-btn img {
    width: 35px;
    height: 35px;
  }
  
  /* whatsapp icon end  */





/* 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 {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-right: 10px;
  }
  
  .language-dropdown button {
    display: block;
    width: 100px;
    padding: 10px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    
  }
  
  .language-dropdown button:hover {
    background: #f0f0f0;
  }
  
  /* Show Dropdown */
  .language-dropdown.show {
    display: block;
  }
  
  
  
  /* 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;
  }

  .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: #a10d0d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .form-group button:hover {
    background-color: #a10d0d8f;
  }
  
  .form-group button:active {
    background-color: #a10d0d;
  }
  
  /* Thank You Message */
  .thank-you-message {
    display: none;
    text-align: center;
    font-size: 18px;
    color: #4CAF50;
    padding: 20px;
  }
  
  /* Popup styles */
  
  #contactpopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
  }
  
  /* Close button (cross mark) */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .close-btn:hover {
    color: red;
  }
  
  /* Button to select date */
  
  #datePickerButton {
    background-color:#a10d0d;
    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: #a10d0da5;
  }
  
  /* 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: #2C3E50;
    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: lightgreen;
  }
  
  #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;
  }
  
/* 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;
    }
}

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



    