* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden !important;
}

/* ==================== NAVIGATION ==================== */
.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;                     
}

.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;
    }
}
 @media (max-width: 768px) {
    .navbar {
        padding: 5px 12px;   
    }
}
/* Hide hamburger and mobile menu on desktop */
.menu-toggle, .mobile-nav {
    display: none;
}


.menu-toggle, .mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 1100;
    }
    .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;
    }
    .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;
}

/* ==================== CONTACT INTRO ==================== */
.contact-intro {
    text-align: center;
    padding: 20px 20px 60px;
    background: #ffffff;
}

.intro-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #d3d3d3;
    color: #333;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.intro-title {
    font-size: 44px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    margin-bottom: 26px;
    color: #222;
    line-height: 1.2;
}

.intro-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 30px;
    }
    .intro-text {
        font-size: 16px;
    }
}

/* ==================== CONTACT FORM SECTION ==================== */
.contact-section {
    background: #f4f6f8;
    padding: 30px 10px;
}

.contact-wrapper {
    max-width: 950px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info {
    background: linear-gradient(135deg, #66ad0e, #c49d11);
    color: #fff;
    padding: 36px;
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.info-box i {
    font-size: 18px;
    margin-right: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #3f704d;
}

.contact-form {
    padding: 50px;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.send-options {
    display: flex;
    gap: 12px;
}

.send-options button {
    width: 100%;
    padding: 14px;
    background: #bdc31b;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.send-options button:hover {
    background: #8fca19;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.email-image {
    text-align: center;
    margin-top: 15px;
}

.email-image img {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: opacity 0.6s ease-in-out;
}
/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
}

/* Animation for hero content */
.hero-content h1,
.hero-content p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.hero-content.show h1,
.hero-content.show p {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.show h1 {
    transition-delay: 0.2s;
}

.hero-content.show p {
    transition-delay: 0.5s;
}
/* ==================== INFO SECTION (4 BOX) ==================== */
.info-section {
    padding: 50px 10px;
}

.info-grid {
    max-width: 820px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.info-card {
    background: #ffffff;
    padding: 20px 10px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    text-decoration: none;
    color: #4f8a5a;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 22px 55px rgba(0,0,0,0.15);
    color: #4f8a5a;
}

.icon-circle {
    width: 78px;
    height: 78px;
    margin: auto;
    border: 2px dashed #4f8a5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: 0.35s;
}

.info-card:hover .icon-circle {
    transform: rotate(8deg) scale(1.05);
}

.icon-circle i {
    font-size: 26px;
    color: #4f8a5a;
    transition: 0.35s;
}

.info-card:hover i {
    transform: scale(1.15);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
}

.info-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .info-card h3 {
        font-size: 22px;
    }
}

/* ==================== MAP SECTION ==================== */
.map-section {
    width: 100%;
    margin: 50px 0;
}

.map-container {
    width: 92%;        /* space left + right */
    max-width: 1200px; /* limit for big screens */
    margin: 40px auto; /* center + top-bottom spacing */
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ==================== FOOTER ==================== */
.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("../imgvideo/img/gallery3.jpeg") center / cover no-repeat;
}

.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;
}

.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;
}

.footer-logo {
    height: 100px;
    width: auto;
    cursor: pointer;
    position: relative;
    left: -29px;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d6d6d6;
}

.food-type {
    display: flex;
    gap: 25px;
}

.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;
}

.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;
}

.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;
}

.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;
    text-decoration: none;
}

.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;
    }
}

.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 {
    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;
}

@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;
    }
}

@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;
    }
}

/* ==================== WHATSAPP BUTTON ==================== */
.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);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
}