        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #FEF9F0;
            color: #2D2A24;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Color Variables */
        :root {
            --primary: #A33327;
            --primary-dark: #7a2a1f;
            --secondary: #F4A261;
            --tertiary: #2A9D8F;
            --bg-light: #FEF9F0;
            --text-dark: #2D2A24;
            --text-light: #FFFFFF;
            --gray: #6B6A66;
            --light-gray: #E8E4DC;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: var(--text-light);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0;
        }

        .logo p {
            font-size: 0.75rem;
            color: var(--gray);
            margin-top: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: var(--primary);
        }

        .header-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-call, .btn-wa {
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-call {
            background: var(--text-dark);
            color: white;
        }

        .btn-wa {
            background: #25D366;
            color: white;
        }

        .btn-call:hover, .btn-wa:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Buttons */
        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--secondary);
            color: var(--text-dark);
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        /* Hero Section */
        /* .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1634912314704-c646c586b131?w=1600');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        } */

        .hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}



        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Quick Booking */
        .quick-booking {
            z-index: 1;
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-top: -60px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
        }

        /* Cards */
        .destinations-grid, .packages-grid, .villages-grid, .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .destination-card, .package-card, .village-card, .blog-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .destination-card:hover, .package-card:hover {
            transform: translateY(-5px);
        }

        .card-image {
            height: 220px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .destination-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }

        .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--tertiary);
            margin: 15px 0;
        }

        /* Tabs */
        .tabs {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 30px 0;
        }

        .tab-btn {
            padding: 10px 25px;
            background: var(--light-gray);
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .tab-btn.active {
            background: var(--primary);
            color: white;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Testimonials */
        .testimonials {
            background: var(--light-gray);
            padding: 60px 0;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin: 20px;
        }

        .stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 999;
        }

        .floating-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .floating-wa {
            background: #25D366;
        }

        .floating-call {
            background: var(--primary);
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-section a {
            color: var(--light-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            font-size: 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .quick-booking {
                margin-top: -30px;
                padding: 20px;
            }
            
            .header-buttons {
                display: none;
            }
        }


        /* slider carousel */
        .hero {
    position: relative;
    overflow: hidden;
}

/* .hero-slider {
    position: relative;
} */
 .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* .hero-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
} */

.hero-slide {
    position: absolute;
    width: 100% !important;
    /* height: 100%; */
        height: 100%;  /* 🔥 THIS WAS MISSING */

    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* .hero-slide.active {
    opacity: 1;
    position: relative;
} */

.hero-slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('./puri-bg.jpg');
                  background-size: cover !important;
    background-repeat: no-repeat !important;
}

.hero-slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('./puri-1.1-bg.png');
}

.hero-slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('./konark-bg.jpg');
}


/* gallery  */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* 🔥 MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    width: 70%;
    max-height: 80%;
    border-radius: 10px;
}