
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    overflow-x: hidden !important;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0px 40px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    
}

.logo img {
    height: 95px;       
    width: auto;
    cursor: pointer;
}
.navbar .nav-links li {
    display: inline;
    margin-left: 80px;
    word-spacing: 0%;
}
.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* FORCE NAVBAR HORIZONTAL */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MAIN NAV LINKS */
.nav-links {
    display: flex !important;      
    align-items: center;
    gap: 47px;                     
}

/* REMOVE INLINE / BLOCK ISSUE */
.nav-links li {
    display: flex !important;
    align-items: center;
    margin: 0 !important;          
    padding: 0;
}

/* SOCIAL ICON WRAPPER */
.nav-social {
    display: flex !important;      
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
}

/* ICON STYLE */
.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}

/* HOVER */
.nav-social a:hover {
    color: #7cbf8e;
    transform: translateY(-3px);
}



/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;

        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 120px 25px;

        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 18px;
    }
}

/* Hide hamburger and mobile menu on desktop */
.menu-toggle, .mobile-nav {
    display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    /* Show hamburger */
    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 1100;
    }

    /* Sidebar menu */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -260px; 
        width: 200px;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        padding: 99px 25px;
        gap: 25px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .mobile-nav li a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
    }

    .mobile-nav.active {
        left: 0; /* slide in */
    }

    /* Hide desktop nav on mobile */
    .nav-links {
        display: block;
    }
}
.mobile-logo {
    text-align: center;
    margin-top: -100px;
    margin-bottom: 13px;
    transform: translateX(-50px); 
}

.mobile-logo img {
    height: 80px;
    width: auto;
}

/* Basic header style */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #333;
    color: #fff;
    position: relative;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Desktop nav */

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}


/* Mobile responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -250px; 
        width: 250px;
        height: 100%;
        background: #444;
        padding-top: 60px;
        transition: 0.3s;
        z-index: 999;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
    }

    .nav.active {
        left: 0; 
    }
}
 @media (max-width: 768px) {
    .navbar {
        padding: 5px 12px;   
    }
}
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;  
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Text styling */
.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}
.hero-content h1 {
    
    font-size: 40px;   
    line-height: 1.3;  
     margin-bottom: 3px; 
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 0; 
}

.hero-content.show h1 {
    transition-delay: 0.2s;
}

.hero-content.show p {
    transition-delay: 0.5s;
}

.hero-content.show h1,
.hero-content.show p {
    opacity: 1;
    transform: translateY(0);
}
.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.hero-content.show h1 {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.hero-content.show p {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}


/* Sections */
/* Section Styling */
.section {
    padding: 80px 20px;
    text-align: center;
    background: #f7f9f6;   
}

.section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: #2a5d34;
    position: relative;
}

/* underline below heading */
.section h2::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #2a5d34;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}
/* Stay Section */
.stay-section {
    padding: 10px 7%;
    text-align: center;
    background: linear-gradient(to bottom, #f6faf6, #ffffff);
}

/* Alternate background */
.stay-section:nth-child(even) {
    background: linear-gradient(to bottom, #ffffff, #f3f7f3);
}

/* Heading */
.stay-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2a5d34;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* Decorative line */
.stay-section h2::after {
    content: "";
    display: block;
    width: 110px;
    height: 4px;
    background: linear-gradient(to right, #2a5d34, #7cbf8e);
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Description */
.stay-desc {
    font-size: 1.15rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 55px;
    line-height: 1.7;
}

/* testimonal */
/* ===== PREMIUM TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 100px 20px;
    background:
        radial-gradient(circle at top, #1f3d2b, #0b1510),
        url("./assets/img/leaf-texture.png");
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Soft floating glow */
.testimonial-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(124,191,142,0.25);
    filter: blur(120px);
    top: -100px;
    left: -120px;
}

.testimonial-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonial-desc {
    max-width: 620px;
    margin: auto;
    font-size: 16px;
    color: #cfd8d3;
    margin-bottom: 70px;
}

/* ===== SLIDER ===== */
.testimonial-slider {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    animation: premiumScroll 28s linear infinite;
}

/* ===== CARD ===== */
.testimonial-card {
    min-width: 340px;
    padding: 35px 28px 32px;
    border-radius: 26px;
    position: relative;
    background:
        linear-gradient(180deg,
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.05));
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(124,191,142,0.25);
    transition: all 0.5s ease;
    animation: floatCard 6s ease-in-out infinite;
}

/* Stagger floating */
.testimonial-card:nth-child(2) { animation-delay: 1s; }
.testimonial-card:nth-child(3) { animation-delay: 2s; }

/* Hover magic */
.testimonial-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow:
        0 35px 70px rgba(0,0,0,0.6),
        0 0 35px rgba(124,191,142,0.6);
}

/* Quote icon */
.testimonial-card::before {
    content: "❝";
    position: absolute;
    top: -22px;
    left: 26px;
    font-size: 70px;
    color: rgba(124,191,142,0.45);
}

/* Text */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #eef3f0;
}

/* Name */
.testimonial-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #7cbf8e;
    margin-bottom: 6px;
}

/* Stars */
.testimonial-card span {
    letter-spacing: 3px;
    color: #ffd966;
}

/* ===== ANIMATIONS ===== */
@keyframes premiumScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 32px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}
/*//////////////////////////////////////////////////////////*/
/* Cards container */
.cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* Individual Card */
.card {
    background: #ffffff;
    width: 280px;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* hover overlay effect */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(42, 93, 52, 0.9),
        rgba(42, 93, 52, 0.9)
    );
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

/* Hover animation */
.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px);
}

/* Card Content */
.card h3,
.card p {
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2a5d34;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* text color change on hover */
.card:hover h3,
.card:hover p {
    color: #ffffff;
}

/* gallery section */
/* ===== GALLERY SECTION ===== */
#gallery {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fdfb, #eef6f0);
    overflow: hidden;
}

#gallery h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.7rem;
    font-weight: 700;
    color: #1f3d2b;
    letter-spacing: 1px;
}

/* ===== CONTAINER ===== */
.gallery-container {
    width: 100%;
    display: flex;
}

/* ===== MOVING GRID ===== */
.gallery-grid {
    display: flex;
    gap: 35px;
    width: max-content;
    animation: cardScroll 35s linear infinite;
}

/* ===== GALLERY CARD ===== */
.gallery-card {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.15),
        inset 0 0 0 1px rgba(255,255,255,0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Floating Effect */
.gallery-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* ===== IMAGE ===== */
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-card:hover img {
    transform: scale(1.15);
}

/* ===== GRADIENT OVERLAY ===== */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15),
        transparent
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-card:hover .card-overlay {
    opacity: 1;
}

/* ===== BUTTON / TEXT ===== */
.card-overlay span {
    color: #fff;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-card:hover .card-overlay span {
    transform: translateY(0);
}

/* ===== PAUSE ON HOVER ===== */
.gallery-grid:hover {
    animation-play-state: paused;
}

/* ===== AUTO SCROLL ANIMATION ===== */
@keyframes cardScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    #gallery h2 {
        font-size: 2rem;
    }

    .gallery-card {
        width: 220px;
        height: 260px;
    }

    .gallery-grid {
        gap: 20px;
    }
}

/* info */
.megh-malhar-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-container {
    display: flex;
    gap: 40px; 
    align-items: center; 
}

/* --- Left Text Column --- */
.text-column {
    flex: 1; 
}

.subtitle {
    font-size: 1.9rem;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e3d8d8;
}

.description {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* --- Explore Button --- */
.explore-button {
    display: inline-flex;
    align-items: center;
    background-color: #053f07; 
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.explore-button:hover {
    background-color: #45a049;
}

.arrow {
    margin-left: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.explore-button:hover .arrow {
    transform: translateX(5px);
}

/* --- Right Image Column --- */
.image-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Responsive Design for Mobile/Tablets --- */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column; 
    }

    h1 {
        font-size: 2rem;
    }

    .megh-malhar-section {
        padding: 40px 20px;
    }
}
/* Make body full height */
html, body {
    height: 100%;
    margin: 0;
}

/* Wrapper flex layout */
.page-wrapper {
    min-height: 100%;          /* Full viewport height */
    display: flex;
    flex-direction: column;    /* Stack content + footer */
}

/* Main content grows to fill space */
.main-content {
    flex: 1;                  /* Take remaining space */
}

/* Make body full height */
html, body {
  height: 100%;
  margin: 0;
}

/* Wrapper flex layout */
.page-wrapper {
  min-height: 100%;           /* full viewport height */
  display: flex;
  flex-direction: column;     /* stack content + footer */
}

/* Main content grows to fill space */
.main-content {
  flex: 1;                    /* take remaining space */
}

/* Footer stays at bottom */

/* ===== FOOTER BASE ===== */
.footer {
    position: relative;
    width: 100%;
    padding: 2px 0 0;
    color: #eaeaea;

    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url("./assets/img/gallery3.jpeg") center / cover no-repeat;
}

/* subtle dark texture */
.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(124,191,142,0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 60%);
    z-index: 0;
}

/* ===== CONTAINER ===== */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;

    position: relative;
    z-index: 1;
}

/* ===== LOGO ===== */
.footer-logo {
    height: 100px;
    width: auto;
    cursor: pointer;
    position: relative;
    left: -29px;
}
/* ===== TEXT ===== */
.footer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d6d6d6;
}

/* ===== PURE VEG ===== */
.food-type{
    display: flex;
    gap: 25px;
}

/* VEG */
.pure-veg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 25px;
    font-weight: 600;
    color: #caffd8;
}

.veg-dot {
    width: 14px;
    height: 14px;
    background: #1aff6b;
    border-radius: 4px;
    box-shadow: 0 0 12px #1aff6b;
}

/* NON-VEG */
.pure-nonveg {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 25px;
    font-weight: 600;
    color: #ffd6d6;
}

.nonveg-dot {
    width: 14px;
    height: 14px;
    background: #ff2a2a;
    border-radius: 4px;
    box-shadow: 0 0 12px #ff2a2a;
}


/* ===== HEADINGS ===== */
.footer h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 65px;
    position: relative;
    color: #ffffff;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 55px;
    height: 3px;
    background: linear-gradient(to right, #7cbf8e, #b8f0c6);
    border-radius: 10px;
}
.footer-col h3{
    margin-top: 30px;   /* value adjust kara */
}
/* ===== LISTS ===== */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 16px;
}

.footer ul li a {
    line-height: 1.1;
    letter-spacing: 0.4px;
    color: #d0d0d0;
}
.footer ul li::before {
    content: "›";
    margin-right: 10px;
    color: #7cbf8e;
}

.footer ul li:hover {
    color: #b8f0c6;
    transform: translateX(6px);
}
.useful-links {
    padding-left: 0;
    margin-left: -40px;  
}

.footer-col h4:hover {
    color: #b8f0c6;
    transition: 0.3s ease;
}

.footer-col h4:hover i {
    transform: scale(1.15);
    color: #b8f0c6;
    transition: 0.3s ease;
}

.footer-col p:hover {
    color: #ffffff;
    transform: translateX(4px);
    transition: 0.3s ease;
}

.footer-col ul li a {
    transition: all 0.3s ease;
}

.footer-col ul li:hover a {
    color: #b8f0c6;
    padding-left: 6px;
}


.footer-col ul li::before {
    transition: 0.3s ease;
}

.footer-col ul li:hover::before {
    color: #b8f0c6;
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .useful-links {
        margin-left: 0;        
        padding-left: 0;
        text-align: left;   
    }
 
}
/* ===== CONTACT ===== */
.footer .contact span {
    display: block;
    margin-bottom: 12px;
    color: #d0d0d0;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #7cbf8e;
    color: #000;
    transform: translateY(-6px);
}


/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 5%;
    font-size: 14px;
   color: #cfcfcf;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
     top: 10px;  
    
}
.footer-bottom p {
    margin: 0;
}

.footer-bottom .footer-botom-links {
    display: flex;
    gap: 20px; 
}

.footer-bottom .footer-botom-links a {
    text-decoration: none;
    color: #cfcfcf;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-bottom .footer-botom-links a:hover {
   color: #cfcfcf;
    text-decoration: underline;
}
/* ===== FOOTER BOTTOM MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px 10px;
    }

    .footer-bottom .footer-botom-links {
        flex-direction: column;
        gap: 8px;
    }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer h3::after {
        left: 10%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}


/* for standard cotage */
/* Container jo extra part hide karel */
.carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 10%, rgba(255,255,255,0.7) 90%, rgba(255,255,255,1) 100%);
}

/* Images  line */
.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Navin animation properties */
    animation: slideAndScale 25s linear infinite;
}

/* Hover effect */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Image styling */
.carousel-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.carousel-track img:hover {
    transform: scale(1.05) translateY(-5px);
    cursor: pointer;
}

/* wrapper */
.carousel-item {
    position: relative;
}

/* Label inside image */
.img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    border: 1px solid rgba(124,191,142,0.6);
    box-shadow: 0 0 10px rgba(124,191,142,0.5);
    pointer-events: none; 
}

/* Hover pe thoda glow */
.carousel-item:hover .img-label {
    background: rgba(124,191,142,0.9);
    color: #000;
}

/* ===== NAVIN ANIMATION KEYFRAMES (Slide and Scale) ===== */
@keyframes slideAndScale {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-25%) scale(1.02); 
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
}

/* Default: Desktop view (show) */
.whatsapp-btn {
    position: fixed;      
    bottom: 20px;         
    left: 20px;           
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 2s infinite ease-in-out;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
}












