:root {
    --primary: #ffffff;
    --dark: #1a1a1a;
    --gray: #f4f4f4;
    --text-muted: #666;
        --bg-color: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666;
    --tag-bg: #f5f5f5;
    --accent: #000000;

            --primary-green: #823100;
            --accent-green: #2d6a4f;
            --light-bg: #f8fbf8;
            --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }


* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

        /* --- Scroll Indicator --- */
.scroll-indicator { position: absolute; bottom: 30px; color: white; font-size: 13px; }
.mouse-scroll {
    width: 25px; height: 40px; border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px; margin: 10px auto; position: relative;
}
.mouse-scroll::after {
    content: ''; width: 4px; height: 8px; background: white;
    position: absolute; left: 50%; transform: translateX(-50%);
    top: 8px; border-radius: 2px; animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 25px; }
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* Navigation */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10%;
    /* position: fixed; */
    width: 100%;
    background: rgba(255,255,255,0.95);
    z-index: 1000;
}

/* Logo */
.logo {
    font-weight: bold;
    letter-spacing: 2px;
}

.logo img {
    height: 100px;
    width: auto;
}
/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #555;
}

/* Button */
.btn-book {
    background: #000;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 4px 0;
    transition: 0.3s;
}
@media (max-width: 1024px) {
    .navbar {
        padding: 0px 5%;
    }
 .logo img {
            height: 70px;
        }
    }
/* Mobile */
@media (max-width: 768px) {
 .logo img {
            height: 60px;
        }
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        transition: .5s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }
}


@media (max-width:480px) {
    .navbar {
        padding: 3px 5%;
    }
        .logo img {
            height: 50px;
        }
}
/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}




.near1 h3 {
    margin-top: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #823100;

}


.logo { font-weight: bold; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a { text-decoration: none; color: #000; margin: 0 15px; font-size: 0.9rem; }
.btn-book { background: #000; color: #fff !important; padding: 10px 20px; }

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.651)), url('/assets/current-img/image4.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 5px;
}

.hero h1 { font-size: 4rem; letter-spacing: 5px; }
.hero h1 span { color: #e46906; }
.hero h2 { border: 1px solid #823100; font-size: 1.5rem; margin-bottom: 20px; color:rgb(0, 0, 0) ; background-color: #fff ; padding: 5px 40px; width: fit-content; margin: 0 auto 20px; border-top-left-radius: 25px;border-bottom-right-radius: 25px; }
.btn-outline { border: 1px solid white; color: white; padding: 12px 30px; background: #823100; text-decoration: none; margin-top: 20px; display: inline-block; transition: all .3s ease-in-out; }
.btn-outline:hover { background: white; color: #000; }
/* Features */
.features { padding: 80px 10%; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; }
.feature-item .icon { font-size: 2rem; margin-bottom: 15px; }

/* Banner Section */
.banner-section {
    background: linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.651)), url('/assets/paradise-img.jpg') center/cover;
    padding: 100px 10%;
    color: white;
    /* text-align: center; */
    height:80vh;
    display: flex;
    flex-direction: column;
    
}

.banner-text h4 { font-size: 2.5rem; margin-bottom: 20px; }
.banner-text p { font-size: 1.2rem; margin-bottom: 30px

}

/* Experience Section */
.experience { display: flex; align-items: center; padding: 80px 10%; background: var(--gray); }
.exp-content { flex: 1; padding-right: 50px; }
.exp-image { flex: 1; }
.exp-image img { width: 100%; border-radius: 4px; }
.btn-dark { background: #000; color: #fff; padding: 12px 30px; text-decoration: none; display: inline-block; margin-top: 20px; }

/* Final CTA */
.final-cta { background: #e46906; color: #fff; text-align: center; padding: 100px 10%; }

/* Footer */
footer { background: #000; color: #fff; padding: 50px 10% 20px; border-top: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-col ul { list-style: none; }
.footer-bottom { text-align: center; margin-top: 50px; font-size: 0.8rem; opacity: 0.6; }
.footer-col ul li a { color: #fff; text-decoration: none; font-size: 1rem; }
.footer-bottom a { color: #fff; text-decoration: none; }
.footer-col img {
    height: 130px;
    width: auto;
    margin-bottom: 15px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Simplified for example: add JS toggle for menu */
    .hero h1 { font-size: 2.5rem; }
    .experience { flex-direction: column; text-align: center; }
    .exp-content { padding-right: 0; margin-bottom: 30px; }

    .footer-col img {
    height: 80px;
    
}

}



.rooms-header {
    text-align: center;
    padding: 80px 20px;
}

.rooms-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.rooms-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Room Card Layout */
.room-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.room-card.row-reverse {
    flex-direction: row-reverse;
}

.room-image {
    flex: 1.2;
}

.room-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.room-info {
    flex: 1;
}

.room-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.description {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.specs {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Tags Styling */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background: var(--tag-bg);
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 2px;
}

/* Booking Section */
.booking-footer {
    display: flex;
    align-items: center;
    gap: 30px;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-box .from { font-size: 0.75rem; color: var(--text-muted); }
.price-box .price { font-size: 1.5rem; font-weight: 600; line-height: 1; }
.price-box .per-night { font-size: 0.75rem; color: var(--text-muted); }

.btn-book {
    background: var(--accent);
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.btn-book:hover { opacity: 0.8; }

/* Responsive for Mobile */
@media (max-width: 768px) {
    .room-card, .room-card.row-reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .room-image img {
        height: 250px;
    }

    .booking-footer {
        justify-content: space-between;
        width: 100%;
    }
}













.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header1 {
            text-align: center;
            margin-bottom: 50px;
        }

        .header1 h3 {
            font-size: 2.2rem;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .header1 p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- Content Cards Grid --- */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .info-box {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            border-top: 5px solid var(--accent-green);
            transition: transform 0.3s ease;
        }

        .info-box:hover {
            transform: translateY(-5px);
        }

        .info-box h3 {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-box ul {
            padding-left: 20px;
        }

        .info-box li {
            margin-bottom: 10px;
        }

        /* --- Image Slider Styling --- */
        .slider-section-title {
            text-align: center;
            color: var(--primary-green);
            margin-bottom: 30px;
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .slider-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide {
            position: relative;
            flex: 0 0 100%; /* Mobile: 1 image */
            box-sizing: border-box;
            padding: 5px;
        }

        @media (min-width: 768px) {
            .slide {
                flex: 0 0 33.333%; /* Laptop: 3 images */
            }
        }

        .slide img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
            display: block;
        }

        /* Hover Overlay */
        .overlay {
            position: absolute;
            inset: 5px;
            background: rgba(130, 49, 0, 0.85);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: 0.4s ease;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
        }

        .slide:hover .overlay {
            opacity: 1;
        }

        .overlay h4 { margin: 0 0 10px; font-size: 1.4rem; }

        /* Navigation Dots */
        .dots-container {
            text-align: center;
            margin-top: 20px;
        }

        .dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #ccc;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background-color: var(--primary-green);
            width: 25px;
            border-radius: 5px;
        }

        /* Extra Info Section */
        .meta-info {
            background: var(--primary-green);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-top: 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }









        @media (max-width:480px) {
            .header1 h3 {
                font-size: 2rem;
            }

            .header1 p {
                font-size: 1rem;
            }

            .info-box h3 {
                font-size: 1.2rem;
            }

            .slider-section-title {
                font-size: 1.5rem;
            }
        }




















        .v3-main-container { padding: 50px 0; background: #fff; overflow: hidden; }
    .v3-slider-box { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 40px; }
    
    .v3-mask { width: 100%; overflow: hidden; border-radius: 20px; }
    .v3-track { display: flex; transition: transform 0.6s ease-out; will-change: transform; }

    .v3-card-item { min-width: 100%; padding: 12px; box-sizing: border-box; cursor: pointer;}
    
    @media (min-width: 768px) {
        .v3-card-item { min-width: 33.333%; } /* Laptop par 3 cards */
    }

    .v3-inner-content { 
        position: relative; height: 400px; border-radius: 15px; 
        overflow: hidden; background: #222; box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .v3-inner-content img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

    /* --- Updated Overlay: Always Visible --- */
    .v3-text-overlay {
        position: absolute; 
        inset: 0; 
        background: linear-gradient(transparent, rgba(0,0,0,0.85)); /* Gradient hamesha dikhega */
        display: flex; 
        flex-direction: column; 
        justify-content: flex-end;
        padding: 25px; 
        color: white; 
        opacity: 1; /* Hamesha visible */
        transform: translateY(0); /* Koi movement nahi */
        transition: 0.4s;
    }

    /* Hover par sirf halka sa zoom effect rakha hai image ke liye */
    .v3-inner-content:hover img { transform: scale(1.05); }

    /* Navigation Buttons */
    .v3-nav-btn {
        position: absolute; top: 50%; transform: translateY(-50%);
        width: 45px; height: 45px; border-radius: 50%; border: none;
        background: #e67e22; color: white; cursor: pointer; z-index: 100;
        font-size: 1.2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: 0.3s;
    }
    .v3-nav-btn:hover { background: #d35400; transform: translateY(-50%) scale(1.1); }
    .v3-prev { left: 10px; }
    .v3-next { right: 10px; }













    /* why choose us  */

    .wcu-section {
        padding: 80px 20px;
        background-color: #f9fbf9;
        text-align: center;
    }

    .wcu-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .wcu-title {
        font-size: 2.5rem;
        color: #823100;
        margin-bottom: 10px;
    }

    .wcu-subtitle {
        color: #666;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .wcu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .wcu-card {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
    }

    .wcu-card:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid #823100;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .wcu-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

    .wcu-card h3 {
        color: #823100;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .wcu-card p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .wcu-title { font-size: 2rem; }
        .wcu-section { padding: 50px 10px; }
    }







       .about-hero {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.445), rgba(0, 0, 0, 0.562)), 
                        url('/assets/current-img/image3.png') center/cover no-repeat;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
        }
        .about-hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 10px; color: #fff;}
        .about-hero p { font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 1rem;color: #fff; }




