
     
    body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #d7e1ec, #ffffff);
}


/* Start of NavBar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    top: 0;
    left: 0;
    transition: background-color 0.3s, box-shadow 0.3s;
    z-index: 1000;
    background: #1282A2;
    color: #ffffff; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    
}

.logo {
    display: flex;
    align-items: center;
    width: 350px;
}

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

.shop-name {
    font-size: 1.1em;
    font-weight: bold;
    color: black;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}


/* Language Dropdown */
#languageSelect {
    font-size: 1em;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
}
/* Spacing for nav items */
.nav-list li {
    margin: 0 1px;
}

/* Modern Underline Effect (Apply only to nav-list links, NOT login button) */
.nav-list a:not(.login-btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e00a0a;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
    color: white;
    
}

.nav-list a:not(.login-btn) {
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    color: black;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 8px 14px;
    border-radius: 5px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    position: relative;
    display: inline-block;
}

/* Hover Effect */
.nav-list a:hover { 
    transform: scale(1.05);
    font-weight: bold;
}
/* Active State */
.nav-list a.active {
    color: #ffdd57;
    font-weight: 600;
}

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


/* On hover, only nav-list links should get the underline effect */
.nav-list a:not(.login-btn):hover::after {
    width: 100%;
}

/* Login Button */
.login-btn {
    text-decoration: none;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    position: relative;
    background-color: #034078; /* Fill with the border color */
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}


@media (max-width: 1024px) {
    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #d7e1ec, #ffffff);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
        padding: 10px 0;
        display: flex;
        opacity: 0;
        visibility: visible;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .nav-list.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-list a:not(.login-btn) {
        display: block;
        text-align: center;
        padding: 13px;
        color: black;
    }

    .login-btn {
        display: block;
        text-align: center;
        padding: 13px;
        color: white;
        margin-top: 5px;
        margin-bottom: 5px;
       

    }

    .nav-list a:hover {
        border-radius: 5px;
    }
    .menu-toggle {
        display: flex;
    }
 
}


/* Responsive Styles */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #d7e1ec, #ffffff);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
        padding: 10px 0;
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .nav-list.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-list a:not(.login-btn) {
        display: block;
        text-align: center;
        padding: 13px;
        color: black;
    }

    .nav-list a:hover {
        border-radius: 5px;
    }
    .menu-toggle {
        display: flex;
    }
    .logo {
        width: 250px;
    }

    .login-btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        color: #dde0e6;
        padding: 13px;
    }

    
  
}



/* End of NavBar */




/*Hero section Start */
.hero {
    width: 100%;
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

/* 🔹 Container Layout */
.landing-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* 🔹 Hero Image */
.hero-image {
    flex: 1;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 25px; /* Rounded edges */
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}


/* 🔹 Hero Content */
.hero-content {
    flex: 1;
    width: 50%;
    text-align: center;
    padding: 40px; /* Balanced padding */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 🔹 Hero Heading */
.hero-heading {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #0371a0;
}

/* 🔹 Hero Subtext */
.hero-subtext {
    font-size: 1.4rem;
    font-weight: 100;
    margin-bottom: 30px;
    color: #444;
}

/* 🔹 Enhanced Schedule Button */
.schedule-btn {
    background: linear-gradient(135deg, #0371a0, #0391c9);
    border: none;
    color: #fff;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.5s ease;
    width: 55%;
    align-self: center;
    box-shadow: 0 4px 15px rgba(3, 113, 160, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ✨ Optional text glow effect */
.schedule-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* 💫 Hover effect - background fill */
.schedule-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #034078; /* Fill color */
    z-index: -1;
    transition: left 0.5s ease;
    border-radius: 50px;
}

.schedule-btn:hover::before {
    left: 0;
}

/* ✅ Slight scale effect on hover */
.schedule-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(3, 113, 160, 0.6);
}


/* 🔹 Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
        text-align: center;
    }
    .hero {
    height: auto;
    }

    .hero-image,
    .hero-content {
        width: 100%;
    }

    .hero-content {
        height: auto;
        padding: 30px;
    }

    .hero-heading {
        font-size: 2rem; /* Smaller on mobile */
    }

    .hero-subtext {
        font-size: 1.1rem; /* More readable */
    }

    .schedule-btn {
        font-size: 1rem; /* Reduced size */
        padding: 10px 22px;
    }

    .hero-image img {
        height: auto; /* Smaller image */
        border-radius: 15px;
    }
}


/*Hero section End*/


/*About us section start */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    overflow: hidden;
    height: auto;
}

/* Book Container */
.book-container {
    display: flex;
    width: 90%;
    height: auto;
    position: relative;
    background: white;

    /* Shadow Effect - Heavier on Top Left */
    box-shadow: -10px -10px 30px rgba(248, 246, 246, 0.3), /* Top-left shadow */
                 0px 0px 15px rgba(0, 0, 0, 0.1);    /* Optional soft all-around */
    border-radius: 10px;
}

/* Left & Right Pages */
.book-page {
    width: 50%;
    height: auto;
   
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.story-text {
    text-align: justify;
}

/* Left Page - Image */
.left-page {
    transform: translateX(50%);
    animation: openLeft 1.5s ease-in-out forwards;
    align-self: center;
}

.book-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Right Page - Text */
.right-page {
    transform: translateX(-50%);
    animation: openRight 1.5s ease-in-out forwards;
    text-align: center;
}



.chapter-title{
    color: #1a1815;
    font-weight: 600;
    text-align: center;
    font-size: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.chapter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #d4af37;
}


/* Hide Mobile Title on Desktop */
.mobile-title {
    display: none;
}

/* Hide Desktop Title on Mobile */
.desktop-title {
    display: block;
}

/* Open Animation */
@keyframes openLeft {
    0% { transform: translateX(50%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes openRight {
    0% { transform: translateX(-50%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .book-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    /* Show Mobile Title, Hide Desktop Title */
    .mobile-title {
        display: block;
        text-align: center;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .desktop-title {
        display: none;
    }

    .book-page {
        width: 100%;
        height: auto;
        transform: none !important;
        animation: none;
        padding: 30px;
    }

    .left-page {
        transform: translateY(-50%);
        animation: openTop 1.5s ease-in-out forwards;
    }

    .right-page {
        transform: translateY(50%);
        animation: openBottom 1.5s ease-in-out forwards;
    }

    @keyframes openTop {
        0% { transform: translateY(-50%); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }

    @keyframes openBottom {
        0% { transform: translateY(50%); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }
}

/*About us section end */



/* Product section start */

/* 🔹 Product Container */
.product-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 98%;
    margin: auto;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
}

.product-title {
    color: #1a1815;
    font-weight: 600;
    text-align: center;
    font-size: 2.8rem;
    margin: 2rem 0;
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #d4af37;
}



/* 🔹 Grid Sections */
.top-section, .bottom-section {
    display: grid;
    gap: 10px;
    width: 98%;
    align-items: stretch;
}

/* 🔹 Product Grid - Top (3 items centered) */
.top-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

/* 🔹 Product Grid - Bottom (2 items centered) */
.bottom-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
}

/* 🔹 Product Item Styling */
.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    align-items: stretch;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    z-index: 2;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover::before {
    left: 100%;
}

/* 🔹 Image Container */
.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

/* 🔹 Dynamic Overlay Effect */
.product-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    transition: width 0.4s ease;
    z-index: 2;
}

.product-item:hover::after {
    width: 100%;
}

/* 🔹 Description Animation */
.product-description {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    z-index: 3;
    font-size: 1.2rem;
    line-height: 1.6;
}

.product-item:hover .product-description {
    opacity: 1;
    transform: translateY(0);
}

/* 🔹 Glossy Effect */
.product-item:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 75%
    );
    animation: shine 3s infinite;
    z-index: 2;
}

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}


/* 🔹 Mobile Optimization */
@media (max-width: 1024px) {
    .product-item::after {
        display: none;
    }
    
    .product-description {
        position: static;
        opacity: 1;
        color: #2d2926;
        padding: 10px;
        transform: none;
        background: #f8f5f0;
        height: 20%;
        font-size: 1rem;
       
    }
    .product-title{
        font-size: 2rem;
    }
   
    .product-item img {
        width: 100%;
         height: 80%;
        
    }

     .top-section {
        grid-template-columns: repeat(1, 1fr);
    }

    .bottom-section {
        grid-template-columns: repeat(1, 1fr);
    }

  
}
@media (max-width: 480px) {
    .product-description {
        font-size: 0.9rem;
       
    }
  
}



/* Prices section start */
.prices-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    padding: 20px;
    text-align: center;
}

.price-title {
    color: #1a1815;
    font-weight: 600;
    font-size: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.price-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #d4af37;
}

/* Unified Grid Section */
.price-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

/* Each Price Item */
.price-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    width: calc(33.33% - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

/* Price Tag */
.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e60000;
    color: white;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transform: rotate(-5deg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .price-item {
        width: calc(50% - 20px);  /* 2 per row */
    }
    .price-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .price-item {
        width: 100%;  /* 1 per row */
    }
}




/* Price section End */


/* gallery section start */
.gallery-container {
    margin: auto;
    padding: 20px;
    text-align: center;
}

.gallery__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: #1a1815;
}

.gallery__title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #d4af37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 🔥 Grid with 2 columns (each 50% width) */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* 🖼 Each card takes 50% width */
.gallery__card {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/* ✨ Images auto-scale, no stretching */
.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Optional, depends if you want cropped images */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* ✅ On smaller screens (mobile), 1 image per row */
@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr; /* One column */
    }
    .gallery__title{
        font-size: 2rem;
    }
}


/* gallery section End  */




/* payment section start */

.payment-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.payment-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%; /* Occupies 90% of screen width */
    max-width: 800px; /* Ensures it doesn’t get too wide */
    text-align: center;
}

.qr-container img {
    width: 260px;
    height: 260px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(59, 130, 246, 0.4);
    transition: transform 0.3s ease-in-out;
}

.qr-container img:hover {
    transform: scale(1.05);
}

.scan-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #374151;
}

.payment-details h2 {
    font-size: 2.5rem;
    color: #1a1815;
    font-weight: bold;
}

.payment-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: #1a1815;
}



.payment-steps {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    line-height: 2;
}

.arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-icons img {
    width: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.payment-icons img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

@media (max-width: 600px) {
    .qr-container img {
        width: 200px;
        height: 200px;
    }
}
/* payment section end */

/* contact us section start */

.contact-section {
    padding: 3rem 1.5rem;
    text-align: center;

}

/* Title Styling */
.contact-title {
    color: #1a1815;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: #d4af37;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Contact Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: auto;
}

/* Card Styling */
.contact-card, .map-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover, .map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Details */
.contact-card-title {
    font-size: 1.8rem;
    color: #144d2d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-details {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #2c7f4f;
}
.info-item p {
    font-size: 1rem;
    margin-top: 10px;

}





.map-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-card  a {
    width: 100%;
    height: 100%;
}

.map-card  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

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

/* Contact Button */
.contact-btn-container {
    margin-top: 2rem;
}

.contact-btn {
    font-weight: bold;
    background: #1282A2;/* More vibrant gradient */
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    position: relative;
    overflow: hidden;
}



/* Optional light glow around the button on focus */
.contact-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 229, 123, 0.5);
}

/* Add a light inner gloss effect */
.contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
    border-radius: inherit;
}


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

    .contact-title {
        font-size: 2rem;
    }

    .contact-card-title {
        font-size: 1.5rem;
    }

    .info-item {
        font-size: 1rem;
    }

    .contact-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}





/* contact us section end  */

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

/* footer section start */


    /* Footer Styling */
.footer {
    background: #0371a0;
    color: #ffffff; 
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

/* Social Icons */
.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out, filter 0.3s;
    border-radius: 50%;
}

/* Hover Effects */
.social-icon img:hover {
    transform: scale(1.2);
    filter: brightness(0.8);
}

/* Text Alignment */
.rights {
    font-size: 14px;
    margin: 0;
}

/* Footer Text */
.footer p {
    font-size: 10px;
    margin: 3px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .footer {
        padding: 15px;
    }

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

    .rights, .footer p {
        font-size: 12px;
    }
}


/* footer section end  */



/* Popup button start */
.form-container {
    background-color: var(--dark-green);
    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: #4f46e5;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  

  
  /* 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: 98%;
    max-width: 500px;
    position: relative;
  }
  .popup-content h2 {
    color: black;
    margin-bottom: 5px;
  }

  
  
  /* 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: linear-gradient(to right, #0371a0, #4ECDC4); 
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
 
  
  /* 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: linear-gradient(to right, #0371a0, #4ECDC4);
    color: black;
    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: linear-gradient(to right, #0371a0, #4ECDC4); 
  }
  
  #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;
  }

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



    