
     
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    /* background-color: #ADD8E6;
    color: whitesmoke; */
    font-family: 'Inter', 'Lato', 'Open Sans', sans-serif;
    overflow-x: hidden
  }
  
  html {
    scroll-behavior: smooth;
  }
/* nav bar strated */
.navbar { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #285246;
    transition: background-color 0.3s ease-in-out;
}

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

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

.logo img {
    height: 80px; /* Adjusted for better scaling */
    width: 80px;
    /* border-radius: 50%; */
    margin-right: 12px;
}

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

/* Nav List */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

/* Adjust Font Size for Menu Items */
.nav-list a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 6px;
    transition: color 0.3s ease-in-out;
    position: relative;
}

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

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

/* Language Dropdown */
#languageSelect {
    font-size: 0.9rem;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.nav-btn {
    font-size: 1rem;
    background-color: #000;
    color: whitesmoke;
    padding: 6px 12px;
    border-radius: 20px;
    border: none;
}

/* Responsive Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 4px;
    width: 27px;
    background-color: white;
    margin: 3px 0;
    transition: transform 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1E3D35;
        text-align: center;
        padding: 15px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

    .nav-list a {
        color: whitesmoke;
        padding: 10px 0;
        display: block;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}



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

    .nav-list a {
        color: whitesmoke;
        padding: 10px 0;
        display: block;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 50px;
        width: 50px;
    }

    .shop-name {
        font-size: 0.9rem;
    }

    .nav-btn {
        font-size: 0.9rem;
        padding: 5px 10px;
        margin-left: 20px;
    }
}

/* home section started */

/* Home Section */
.home {
    padding: 10% 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8ea;
}

/* Two-Box Layout */
.home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
}

/* Left Box - Image */
.image-container {
    width: 50%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Image */
.image-container img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Image Hover Effect */
.image-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Right Box - Text Content */
.welcome-container {
    width: 50%;
    max-width: 500px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Text */
.welcome-container:hover {
    transform: scale(1.05);
}

/* Heading */
.welcome-container h1 {
    font-size: 2.5vw;
    font-weight: bold;
    color: #285246;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

/* Heading Hover Effect */
.welcome-container h1:hover {
    color: #1d3c34;
}

/* Paragraph */
.welcome-container p {
    font-size: 1.3vw;
    color: #333;
    margin-bottom: 20px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #285246;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Button Hover Effect */
.btn:hover {
    background-color: #D4EDDA;
    color: #285246;
    transform: scale(1.1);
}

/* Medium Screens (1024px) */
@media (max-width: 1024px) {
    .home-container {
        padding-top: 6%;
        gap: 30px;
    }

    .welcome-container h1 {
        padding-top: 3%;
        font-size: 3vw;
    }

    .welcome-container p {
        font-size: 1.8vw;
    }

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

/* Tablet View (768px) */
@media (max-width: 768px) {
    .home {
        padding: 15% 5%;
    }

    .home-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .image-container {
        width: 100%;
    }

    .welcome-container {
        width: 100%;
    }

    .welcome-container h1 {
        padding-top: 3%;
        font-size: 4vw;
    }

    .welcome-container p {
        font-size: 2.5vw;
    }

    .btn {
        font-size: 2rem;
        padding: 12px 24px;
    }
}

/* Mobile View (480px) */
@media (max-width: 480px) {
    .home {
        padding: 15% 5%;
    }

    .home-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }

    .image-container {
        width: 100%;
    }

    .welcome-container {
        width: 100%;
    }

    .welcome-container h1 {
        padding-top: 3%;
        font-size: 6vw;
    }

    .welcome-container p {
        font-size: 3.5vw;
    }

    .btn {
        font-size: 4vw;
        padding: 10px 20px;
    }
}

/* home section ended */
  /* about section started */
  .about {
    width: 100%;
    padding: 1% 0;
    background-color: #f0f8ea;
    overflow: hidden;
    margin-top: -2%;
}

/* Container */
.container {
    width: 90%;
    max-width: 110%;
    margin: 0 auto;
}

/* About Row: Flexbox for Two Columns */
.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

/* About Text: 55% Width */
.about-text {
    width: 55%;
    padding: 5%;
    text-align: justify;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeSlideInLeft 2s ease-out forwards;
}

.about-text h2 {
    font-size: 2.5vw;
    color: #222;
    font-weight: bold;
    margin-bottom: 2%;
}

.about-text p {
    font-size: 1.2vw;
    line-height: 1.5rem;
    color: #222;
}

/* About Image: 40% Width */
.about-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeSlideInRight 2s ease-out forwards;
    animation-delay: 1s;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */

/* Medium Screens (1024px) */
@media (max-width: 1024px) {
    .about {
        margin-top: -2%;
    }
    .about-text {
        width: 60%;
    }
    
    .about-text h2 {
        font-size: 3vw;
    }

    .about-text p {
        font-size: 1.5vw;
    }

    .about-image {
        width: 35%;
    }
}

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

    .about-text, .about-image {
        width: 90%;
        padding: 0;
    }

    .about-text h2 {
        font-size: 4vw;
    }

    .about-text p {
        font-size: 2.5vw;
    }
}

/* Mobile View (480px) */
@media (max-width: 480px) {
    .about {
        padding: 8% 0;
    }

    .about-text, .about-image {
        width: 100%;
        padding: 0;
    }

    .about-text h2 {
        font-size: 5vw;
    }

    .about-text p {
        font-size: 3.2vw;
    }
}
  /* about section ended */
  /* product section started */
  
 .products {
  background-color: #f0f8ea;
 }
  .products-container {
    max-width: 90%;
    margin: auto;
    padding: 20px;
}

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

/* Responsive Grid Layout */
.product-group {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.product-item img {
    width: 100%;
    height: 100%;
    display: block;
    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;
    max-width: 100%;
    max-height: 95%; /* Limits height while allowing scrolling */
    overflow-y: auto; /* Enables vertical scrolling if needed */
    white-space: normal; /* Allows text wrapping */
}

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

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .products h2 {
        font-size: 2.5rem;
    }
    .product-group {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .product-group {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 900px) {
    .product-group {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    .product-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 2;
    }

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

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

  /* product section ended */
  /* prize section started */

  .prize {
    background-color: #f0f8ea;
    padding: 50px 0;
    margin-top: -5%;
}

.container {
    max-width: 90%;
    margin: auto;
    /* padding: 20px; */
}

/* Title */
.prize h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* Prize Grid */
.prize-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Prize Box */
.prize-item {
    flex: 1;
    max-width: 30%;
    min-width: 280px;
    height: auto;
    /* margin: 15px; */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: white;
    padding: 15px;
    border: 2px solid #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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

/* Image Container */
.prize-image {
    width: 100%;
    height: 80%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

/* Prize Text */
.prize-text {
    text-align: center;
    font-size: 18px;
    color: #444;
    font-weight: bold;
    padding: 15px 0;
}

/* Responsive Design */

/* Large Screens (1024px) */
@media (max-width: 1024px) {
    .prize-item {
        max-width: 45%;
    }

    .prize h2 {
        font-size: 2.2rem;
    }
}

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

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

    .prize h2 {
        font-size: 2rem;
    }
}

/* Mobile View (480px) */
@media (max-width: 480px) {
    .prize h2 {
        font-size: 1.8rem;
    }

    .prize-item {
        max-width: 100%;
    }

    .prize-text {
        font-size: 16px;
    }
}

/* prize section ended  */
/* gallery section started */

.gallery {
    background-color: #f0f8ea;
    padding: 2%;
    margin-top: -2%;
    text-align: center;
}

.gallery h2 {
    margin-top: 80px;
    margin-bottom: 5%;
    font-size: 2.8rem;
    font-weight: bold;
    color: #222;
}

/* Default Grid Layout (for larger screens) */
.gallery-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
    max-width: 90%;
    margin: auto;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 10px;
    border: 3px solid #2a682a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s, filter 0.3s;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s, filter 0.3s;
    border-radius: 5px;
}

/* Hover Effects */
.gallery-item:hover {
    transform: rotate(2deg) scale(1.08);
    box-shadow: 0 10px 20px rgba(34, 139, 34, 0.7);
}

.gallery-item:hover img {
    filter: brightness(1.2);
}

/* Responsive Design */

/* Large Screens (1024px) */
@media (max-width: 1024px) {
    .gallery-flex {
        grid-template-columns: repeat(2, 1fr);
        /* gap: 3%; */
    }

    .gallery h2 {
        font-size: 2.4rem;
    }
}

/* Tablet View (768px) */
@media (max-width: 768px) {
    .gallery-flex {
        grid-template-columns: repeat(2, 48%);
        /* gap: 4%; */
    }

    .gallery h2 {
        font-size: 2.2rem;
    }
}

/* Mobile View (480px) */
@media (max-width: 480px) {
    .gallery-flex {
        grid-template-columns: 100%;
        /* gap: 5%; */
    }

    .gallery h2 {
        font-size: 2rem;
    }
}

/* gallery section ended */

/* payment section strated */
.payment-section {
    background-color: #f0f8ea;
    padding: 5%;
    margin-top: -10px;
}

.payment-section h2 {
    margin-top: 80px;
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 2.8rem;
}

.container {
    max-width: 90%;
    margin: auto;
}

/* Flexbox Layout */
.payment-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5%;
}

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

.qr-code {
    width: 40%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

/* QR Image */
.qr-code img {
    width: 100%;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Scan Line Effect */
.qr-code::before {
    content: "";
    top: -100%;
    left: 0;
    width: 100%;
    height: 15%;
    background: rgba(255, 0, 0, 0.5);
}

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

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

.method-icons img {
    width: 12%;
    max-width: 50px;
    margin: 5px;
    border-radius: 15%;
}

/* Right Side: Instructions */
.instructions {
    flex: 1;
    text-align: left;
}

.instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

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

.note {
    font-style: italic;
    color: red;
}

/* Responsive Design */

/* Large Screens (1024px) */
@media (max-width: 1024px) {
    .payment-content {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code {
        width: 50%;
    }
    
    .instructions {
        text-align: center;
    }
}

/* Tablet View (768px) */
@media (max-width: 768px) {
    .payment-content {
        flex-direction: column;
        align-items: center;
    }

    .qr-code {
        width: 60%;
    }
}

/* Mobile View (480px) */
@media (max-width: 480px) {
    .qr-code {
        width: 80%;
    }

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

    .instructions h3 {
        font-size: 1.5rem;
    }
}

/* payment section ended */

/* contact us section started */

.contact-section {
    background-color: #f0f8ea;
    padding: 60px 5%;
    margin-top: -5%;
}

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

.container h2 {
    margin-top: 80px;
    font-weight: bold;
    font-size: 2.8rem;
}

/* Contact Details */
.contact-details {
    width: 55%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.instructions h3 {
    font-weight: bold;
}

/* Button */
#contact-btn {
    background: #285246;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
}

#contact-btn:hover {
    background: #D4EDDA;
    transform: scale(1.05);
}

/* Map Styling */
.map {
    width: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.map:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Map Image */
.map img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}

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

/* Responsive Design */

/* Large Screens (1024px) */
@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        width: 80%;
        font-size: 1rem;
        padding: 25px;
    }
    
    .map {
        width: 80%;
    }
}

/* Tablet View (768px) */
@media (max-width: 768px) {
    .contact-details {
        width: 100%;
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .map {
        width: 100%;
    }
}

/* Mobile View (480px) */
@media (max-width: 480px) {
    .container h2 {
        font-size: 2.2rem;
    }

    .contact-details {
        width: 100%;
        padding: 15px;
        font-size: 0.9rem;
        text-align: left;
    }

    #contact-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .map {
        width: 100%;
        border-radius: 10px;
    }

    .map img {
        border-radius: 10px;
    }
}

/* contact us section ended */

/* footer section started */

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

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

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

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

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

/* Responsive Design */

/* Large Screens (1024px) */
@media (max-width: 1024px) {
    .social-icons {
        gap: 18px;
    }

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

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

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

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

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

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

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

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

/* footer section ended */

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #444;
    background-color: #285246;
    padding-top: 20px;
    font-size: 0.9rem;
    gap: 10px;
  }
  
  .copyright-center {
    flex: 1;
    text-align: center;
    font-weight: 500;
    color:whitesmoke;
  }
  
  .copyright-right {
    flex: 1;
    text-align: center;
    color: whitesmoke;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-bottom {
      flex-direction: column;
      align-items: center;
    }
  
    .copyright-right {
      text-align: center;
    }
  }
  
  .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: #222;
  }
  
  .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;
    
  }
  
  .form-group button {
    width: 100%;
    padding: 12px;
    background-color: #007bff; /* Dark Gravy */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  
  .form-group button:active {
    background-color: #1F1F1F; /* Even darker on click */
  }
  
  
  /* 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;
  }
  .popup-content h2 {
    color: #1F1F1F !important;
  }
  
  
  
  
  /* 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:#285246;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  
  
  .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;
  }
  
  @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;
  }
  }


/* General video container */
#videos{
  background-color: #f0f8ea;
  padding: 2rem;
}

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

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

    