 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
         body {
            padding-top: 80px; /* To offset the fixed navbar */
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
            min-height: 100vh;
        }
        
        nav {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 16px;
            padding: 15px 40px;
            background-color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo img { height: 40px; width: auto; display: block; margin-top: 4px; cursor:pointer; }

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

        .auth-buttons { display: none; }

        .nav-links {
            display: flex;
            gap: 15px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-link {
            text-decoration: none;
            color: #000000;
            font-weight: 500;
            font-size: 16px;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background-color: #f8f8f8;
            border: 1px solid #e0e0e0;
        }

        .nav-link:hover {
            background-color: #ebecec;
            color: rgb(0, 0, 0);
            border-color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .nav-link:active {
            transform: translateY(0);
            box-shadow: none;
        }

        /* Nav Search Bar */
        .nav-search {
            display: flex;
            align-items: center;
            background: #f4f4f4;
            border: 1.5px solid #e0e0e0;
            border-radius: 25px;
            padding: 6px 14px;
            gap: 8px;
            max-width: 340px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-search:focus-within {
            border-color: #FF6820;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255, 104, 32, 0.12);
        }

        .nav-search i { color: #767676; font-size: 14px; flex-shrink: 0; }

        .nav-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 14px;
            color: #333;
            width: 180px;
            font-family: 'Inter', sans-serif;
        }

        .nav-search input::placeholder { color: #767676; }

        .nav-search-btn {
            background: #FF6820;
            color: #fff;
            border: none;
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .nav-search-btn:hover { background: #e05510; }

        /* Autocomplete Dropdown */
        .nav-suggestions-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            width: 320px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            z-index: 9999;
            overflow: hidden;
            max-height: 320px;
            overflow-y: auto;
        }

        .nav-suggestion-header {
            padding: 8px 16px;
            font-size: 11px;
            font-weight: 700;
            color: #767676;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            background: #fafafa;
            border-bottom: 1px solid #f0f0f0;
        }

        .nav-suggestion-item {
            padding: 10px 16px;
            font-size: 14px;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background 0.15s;
        }

        .nav-suggestion-item:hover { background: #fff5f0; color: #FF6820; }
        .nav-suggestion-item i { color: #FF6820; font-size: 13px; width: 16px; }

        @media (max-width: 900px) { .nav-search { display: none; } }




             /* Content styles */

             .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        
        .placeholder {
            height: 300px;
            background: linear-gradient(45deg, #3498db, #9b59b6);
            border-radius: 8px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

          @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }
            
            .nav-links {
                display: none; /* Hide nav links on mobile */
            }
            
            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                font-size: 24px;
                cursor: pointer;
                color: #333;
            }
        }


         /* Your existing styles remain the same */

         /* Hero/Search Section Styles */
.hero-section {
    background-color: #f8f8f8;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
}

.search-container {
    width: 80%;
    max-width: 1200px;
    text-align: center;
}
.search-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}
.search-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.search-tab {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: white;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}
.search-tab.active {
    background-color: #000000;
    color: white;
    border-color: #000;
}
.search-tab:hover {
    background-color: #f0f0f0;
}
.search-box {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 40px;
    overflow: visible;
}
.search-input {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-radius: 12px;
    border-color: #000;
    border-style: 1px solid;
}
.search-input i {
    color: #999;
    margin-right: 10px;
}

.search-input input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 30px;
}

.search-button {
    padding: 15px 30px;
    background-color: #FF6820;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #e67300;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .search-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-button {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
}
        
        /* Search box styles */

        .search-box {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            display: flex;
        }
        
        .search-input {
            position: relative;
            flex-grow: 1;
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background-color: white;
        }
        
        .search-input i {
            color: #999;
            margin-right: 10px;
        }
        
        .search-input input {
            flex-grow: 1;
            border: none;
            outline: none;
            font-size: 16px;
        }
        
        /* Suggestions dropdown styles */
        .suggestions-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid #ddd;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
            text-align: left;
        }
        
        .suggestion-header {
            padding: 12px 15px;
            font-weight: bold;
            background-color: #f5f5f5;
            border-bottom: 1px solid #eee;
        }
        
        .suggestion-item {
            padding: 10px 15px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
        }
        
        .suggestion-item:hover {
            background-color: #f8f8f8;
        }
        
        .search-button {
            padding: 15px 30px;
            background-color: #FF8000;
            color: white;
            border: none;
            font-weight: bold;
            cursor: pointer;
        }

        /* Carousel container */

                /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
        }
        
        /* Carousel Container */
        .carousel-container {
            max-width: 1200px;
            width: 100%;
            height: 400px;
            margin: 30px auto;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
           /*  aspect-ratio: 16/9; /* Key for responsive scaling */
        }
        
        /* Carousel Slider */
        .carousel-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
            will-change: transform;
            transform: translateZ(0);
        }
        
        /* Individual Slides */
        .carousel-slide {
            min-width: 100%;
            position: relative;
        }
        
        /* Images - Critical for Perfect Fit */
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        
        /* Slide Caption */
        .slide-caption {
            position: absolute;
            bottom: 5%;
            left: 5%;
            color: white;
            background: rgba(0, 0, 0, 0.75);
            padding: 12px 20px;
            border-radius: 5px;
            max-width: 90%;
            /* Removed backdrop-filter */
        }
        
        .slide-caption h3 {
            margin-bottom: 5px;
            font-size: clamp(1.2rem, 2vw, 1.8rem);
        }
        
        .slide-caption p {
            font-size: clamp(0.8rem, 1.2vw, 1.1rem);
        }
        
        /* Navigation Buttons */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            color: #333;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 10;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.9);
        }
        
        #prevBtn {
            left: 20px;
        }
        
        #nextBtn {
            right: 20px;
        }
        
        /* Dots Navigation */
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .carousel-container {
                margin: 15px auto;
                border-radius: 0;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
            }
        }
        
        @media (max-width: 480px) {
            .slide-caption {
                padding: 8px 12px;
                bottom: 10px;
                left: 10px;
            }
            
            .carousel-dots {
                bottom: 10px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
            }
        }

        /* Most Searchable Places Carousel */

                /* Add this new CSS for Most Searchable Places carousel */
        .most-searchable-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .most-searchable-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #333;
            font-weight: 600;
        }
        
        .most-searchable-carousel {
            position: relative;
            overflow: hidden;
        }
        
        .most-searchable-slide {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }
        
        .most-searchable-group {
            display: flex;
            flex: 0 0 100%;
            justify-content: space-between;
            padding: 0 10px;
            gap: 20px;
        }
        
        .most-searchable-item {
            width: calc(25% - 15px);
            height: 270px;
            display: flex;
            flex-direction: column;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .most-searchable-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .most-searchable-img-container {
            height: 180px;
            overflow: hidden;
        }
        
        .most-searchable-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .most-searchable-item:hover .most-searchable-img {
            transform: scale(1.05);
        }
        
        .most-searchable-info {
            padding: 15px;
            flex-grow: 1;
        }
        
        .most-searchable-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }
        
        .most-searchable-location {
            font-size: 14px;
            color: #666;
        }
        
        .most-searchable-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .most-searchable-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .most-searchable-dot.active {
            background-color: #FF8000;
        }
        
        .most-searchable-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
            font-size: 18px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .most-searchable-arrow.prev {
            left: 10px;
        }
        
        .most-searchable-arrow.next {
            right: 10px;
        }
        
        @media (max-width: 992px) {
            .most-searchable-item {
                width: calc(33.33% - 14px);
            }
        }
        
        @media (max-width: 768px) {
            .most-searchable-item {
                width: calc(50% - 10px);
            }
            
            .most-searchable-group {
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .most-searchable-item {
                width: 100%;
                max-width: 350px;
                margin: 0 auto;
            }
            
            .most-searchable-group {
                justify-content: center;
            }
        }


       /* Essential of each state carousal*/
       .thingstodo-container {
            max-width: 1200px;
            margin: 8px auto;
            padding: 0 20px;

       }
       .things-to-go{
        font-size: 28px;
        margin-bottom: 20px;
        color: #333;

        font-weight: 600;
       }

        .card-wrapper {
             position: relative;
             width: 360px;
             height: 260px;
             aspect-ratio: 3 / 2;
             margin: 1rem;
             border-radius: 1rem;
             overflow: visible;
             box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
         }

         .slider-container {
             position: relative;
             width: 100%;
             height: 100%;
             border-radius: 1rem;
             overflow: hidden;
         }

         .slider-container:hover {
             transform: scale(1.05);
             transition: transform 0.5s ease;
             
         }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.5);
            color: #1f2937;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 9999px;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .nav-button:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }
        .nav-button.left { left: 1rem; }
        .nav-button.right { right: 1rem; }

        .dots-container {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 8px;
            height: 8px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 9999px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: #ffffff;
        }
        
        .heart-button {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: rgba(255, 255, 255, 0.5);
            color: #ef4444;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 9999px;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .heart-button:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        .badge {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background-color: #4CAF50;
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: bold;
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            z-index: 10;
        }
        .card-title-wrapper {
            text-align: center;
            margin-top: 1rem;
            font-weight: bold;
            font-size: 1rem;
        }

            /* Responsive styles for smaller screens */
        @media (max-width: 768px) {
            .card-wrapper {
                width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
        }


 /* All States in India */

 .states-title-container {
    max-width: 1200px; /* Adjust to match your main content width */
    margin: 40px auto; /* Adds space above, and centers the container */
    padding: 0 20px; /* Aligns the title with the card grid below it */
    background-color: #e7e5e5;
    border-radius:5px;
    border-color: #000;
    
}

.states-title {
    font-size: 28px; /* Sets the font size */
    font-weight: 600; /* Semi-bold weight */
    color: #333; /* Dark grey text color */
    /*text-align: left;  Aligns text to the left */
    margin-bottom: 20px; /* Adds space between the title and the cards */
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    
                                
}

 .all-states {
         font-size: 28px;
        margin-bottom: 20px;
        color: #333;

        font-weight: 600;
    }

  /* Main container for the state cards */
    .states-container {
        display: grid;
        /* Creates a responsive grid that adjusts the number of columns based on screen width */
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px; /* Increased gap for better spacing with images */
        padding: 25px;
        width: 100%;
        max-width: 1200px; /* Max width for larger screens */
        margin: 0 auto; /* Centers the container */
        font-family: 'Inter', sans-serif; /* A clean, modern font */
        content-visibility: auto;
        contain-intrinsic-size: 0 1000px;
    }

    /* Styling for each individual state card */
    .state-card {
        background-color: #ffffff; /* White background for the card */
        border-radius: 12px; /* Rounded corners */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for a "floating" effect */
        padding: 15px; /* Adjusted padding to accommodate the image */
        text-align: center;
        color: #333; /* Dark text color for readability */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
        overflow: hidden; /* Ensures the image corners are rounded */
    }

    /* Styling for the state card image */
    .state-card img {
        width: 100%; /* Makes the image responsive */
        height: 140px; /* Gives a consistent height to the images */
        object-fit: cover; /* Ensures the image covers the area without distortion */
        border-radius: 8px; /* Slightly rounded corners for the image */
        margin-bottom: 15px; /* Space between the image and the state name */
    }
    
    /* Styling for the state name */
    .state-name {
        font-size: 1.1rem;
        font-weight: 600;
    }


    /* Hover effect to make the cards interactive */
    .state-card:hover {
        transform: translateY(-5px); /* Lifts the card slightly on hover */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhances the shadow on hover */
    }



    
    

        /* Footer */
        .trip-footer {
            background: white;
            color: #333;
            padding: 10px 20px 20px;
            border-top: 3px solid #FF6820;
            margin-top: 40px;
        }
        
        
        .footer-bottom {
            padding-top: 10px;
            margin-top: 5px;
            text-align: center;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 8px 0;
            flex-wrap: wrap;
        }
        
        .disclaimer {
            font-size: 0.9rem;
            color: #555;
            margin-top: 5px;
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .legal-links {
                flex-direction: column;
                gap: 10px;
            }
        }


       

/* Desktop Mobile Menu Hiding */
.mobile-menu-btn, .mobile-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu.open {
        display: flex !important;
    }
}

/* Clickable Name Links in Most Searchable Places */
.most-searchable-name-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.most-searchable-name-link:hover {
    color: #FF8000;
}

/* Additional scaling for very small mobile devices to prevent overflow */
@media (max-width: 480px) {
    .states-container {
        gap: 15px !important;
        padding: 15px !important;
    }
    .states-title, .all-states {
        font-size: 22px !important;
    }
}

/* Universal Hamburger Icon Fix */
.mobile-menu-btn {
    display: none !important;
}
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        width: 48px !important;
        height: 48px !important;
        padding: 8px !important;
    }
    .mobile-menu-btn span {
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        background: #000 !important;
        margin: 0 !important;
        border-radius: 2px !important;
    }
}
