/* General Styles */

* {padding:0;margin:0;font-family: 'Barlow',Arial, sans-serif;position:relative;}
body {  font-family: 'Barlow',Arial, sans-serif;
    margin: 0;
    background-color: white;
    top: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
    }

	a {text-decoration:none;color:unset;}

.loader {
                position: fixed;
    display: flex;
    background: #000000c2;
    width: 100%;
    height: 100vh;
    left: 0;
    z-index: 333;
    align-items: anchor-center;
    justify-content: center;
    backdrop-filter: blur(4px);
        }
        .loader:before , .loader:after {
            content: '';
            width: 15px;
            height: 15px;
            display: inline-block;
            position: relative;
            margin: 0  5px  ;
            border-radius: 50%;
            color: #FFF;
            background: currentColor;
            box-shadow: 50px 0 ,  -50px 0;
            animation: left 1s infinite ease-in-out;
          }
          .loader:after {
            color: #FF3D00;
            animation: right 1.1s infinite ease-in-out;
          }


        @keyframes right {
          0% , 100%{transform: translateY(-10px) }
          50% { transform: translateY(10px) }
        }

        @keyframes left {
          0% , 100%{ transform: translateY(10px) }
          50% { transform: translateY(-10px) }
        }
		
		
/* Header */
.top-bar { display: flex; justify-content: space-between; padding: 10px 5%; background: white; }

/* Navigation */
.main-nav {       background: linear-gradient(45deg, #ff8d38 14%, #0083fe 0%); }
.main-nav ul { list-style: none; display: flex; justify-content: flex-end; margin: 0; padding: 15px 5%; }
.main-nav a { color: white; text-decoration: none; margin-left: 20px; font-weight: bold; }

.main-logo {    height: 65px;}

/* Container for the whole login area */
.login-section {
        display: flex;
    flex-direction: row;
    align-items: anchor-center;
    gap: 5px;
}


.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy-image.loaded {
    opacity: 1;
}



.language-wrapper {    position: relative;}
.language-wrapper i{
               padding: 8px;
    border-radius: 36px;
    background: linear-gradient(45deg, #ffa716, #ff0a3b);
    position: relative;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
}

body.dark-mode .language-wrapper {
	 background: #4c4c4c;
}

.language-wrapper:hover .lang-buttons {display: flex;}
 
.language-wrapper i {
    font-size:18px;
    
}

/* Hide Google Translate top bar */
.skiptranslate iframe{
    display: none !important;
}




.lang-buttons::-webkit-scrollbar {
    display: none; /* The actual "width: 0" equivalent */
}

/* Hide scrollbar for IE, Edge and Firefox */
.lang-buttons {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}




.lang-buttons {          display: none;
    flex-direction: column;
    position: absolute;
    top: 3px;
    width: 200px;
    right: -25px;
    z-index: 3;
    padding: 32px;
    background: #00000000;
    height: 70vh;
    overflow-y: auto;-webkit-overflow-scrolling:touch;}

.lang-buttons button {
              border: none;
    border-radius: 0px;
    background: #ffffff;
    cursor: pointer;
    font-size: 12px;
    border-bottom: 1px solid #eeeeee;
    text-align: left;
    padding: 8px 20px;

}


.lang-buttons button:hover {
    background:#e4f2ff;
	
}
/* Blue "Register" Button */
.register-btn {
           background: linear-gradient(45deg, #56bcff, #007bff);
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.register-btn:hover {
    background-color: #005a96;
}

/* Horizontal Form Layout */
.login-form {
        display: flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    padding: 2px;
    border-radius: 4px;
}

.login-form span {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    padding: 0 10px;
}

/* Input Fields */
.login-form input {
    border: 1px solid #ccc;
    padding: 6px 10px;
    font-size: 12px;
    width: 180px;
    outline: none;
}

/* The Login Button inside the form */
.login-submit {
        background: linear-gradient(45deg, #ffa448, #ff0202);
    color: white;
    border: none;
    padding: 7px 15px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

.login-submit:hover {
    background-color: #555;
}

/* Forgot Password Link */
.forgot-pw {
    font-size: 11px;
    color: #0072bc;
    text-decoration: none;
    margin-top: 2px;
}

.forgot-pw:hover {
    text-decoration: underline;
}

/* Responsive adjustment for small screens */
@media screen and (max-width: 768px) {
    .login-form {
        flex-direction: column;
        width: 100%;
        background: transparent;
    }
    .login-form input, .login-submit {
        width: 100%;
        margin-bottom: 5px;
    }
    .login-section {
        align-items: center;
    }
}
/* Hero Search Bar */
.hero-search { 
        height: 400px;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding-top: 50px;
    overflow: hidden;
    color: white;
}

/* The Animated Background Layer */
.hero-search::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    /* Link the animation here */
    animation: slideImages 15s  infinite alternate;
}

/* Ensure the search container stays on top */
.search-container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 50, 0.7);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
}

/* Define the Background Slide Sequence */
@keyframes slideImages {
    0% { background-image: url('images/banner/banner8.jpg'); }
    100% { background-image: url('images/banner/banner8.jpg'); }
}
.search-container { 
           background: rgb(26 79 149 / 29%);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    backdrop-filter: blur(4px);
    max-width: 1000px;
    width: -webkit-fill-available;
    align-items: anchor-center;
    justify-content: center;
}
.search-container input,.search-container select {    padding: 12px;
    border: none;
    border-radius: 2px;
    width: 100%;
    font-size: 16px;
    outline: none;}
.search-btn {     background: linear-gradient(45deg, #ffa448, #ff0202);
    border: none;
    padding: 11px 35px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    font-size: 18px;
    border-radius: 200px; }


.total_page_views {
              background: #ffffff;
    border: 2px solid #0b84ff;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    justify-content: center;
    border-radius: 47px;
    color: #125391;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.total_page_views:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 50, 54, 0.15);
}

.total_page_views i {
    color: #1188ff;
    font-size: 16px;
}

.total_page_views b {
    font-size: 18px;
    font-weight: 700;
}

/* Explore Section */
/* Container for the whole section */
.explore-section {
              background: linear-gradient(45deg, #0083fe, #0083fe);
    padding: 20px 5%;
    color: white;
    position: relative;
}

/* Header with Title and Mini-Search */
.explore-header {
              display: flex;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 0px;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column;
    z-index: 7;
    position: relative;
}

.explore-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: normal;
}

.banner_back2 {           position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    object-fit: cover;
    max-height: 400px;
    filter: brightness(0.6);}
	
	
	@media screen and (max-width:700px){
		.banner_back2 {
			
			max-height: 530px;
		}
		
		
		
	}

/* Mini Search Bar Styling */
.mini-search {
    display: flex;
    background: white;
    padding: 3px;
    border-radius: 4px;
    align-items: center;
}

.mini-search select {
            border: none;
    border-right: 1px solid #ccc;
    padding: 10px 5px;
    outline: none;
    width: 100%;
    font-size: 15px;
    max-width: 150px;
    background: transparent;
}

.mini-search input {
           border: none;
    padding: 10px 5px;
    outline: none;
    font-size: 15px;
    width: 200px;
}

.mini-search button {
        background: #ffffff;
    border: none;
    padding: 6px 10px;
    border-radius: 2px;
    cursor: pointer;
    color: #ffcc00;
    font-size: 29px;
    display: flex;
}

/* Location Slider Layout *//* Slider Container */
.location-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.location-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

/* Individual Card */
.location-card {
          position: relative;
    width: 250px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid #c2c2c2;
}

/* Image Styling */
.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Premium Gradient Overlay */
.location-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 1;
}

/* State Label Styling */
.location-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid #ff0000; /* Your theme red accent */
    padding-left: 10px;
}

/* Hover Effects */
.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15); /* Red tinted shadow */
}

.location-card:hover img {
    transform: scale(1.1);
}

/* Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-slider a {
    text-decoration: none;
    animation: fadeInUp 0.6s ease backwards;
}

/* Staggered animation for the cards */
.location-slider a:nth-child(1) { animation-delay: 0.1s; }
.location-slider a:nth-child(2) { animation-delay: 0.2s; }
.location-slider a:nth-child(3) { animation-delay: 0.3s; }
.location-slider a:nth-child(4) { animation-delay: 0.4s; }


.mini-search-container {
        max-width: 600px;
    margin: 0px 0px 0px;
}

/* Base Styles (for Desktop) */
.search-group {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px; 
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}





.search-group:focus-within {
    border-color: #e53236; /* Your brand red */
    box-shadow: 0 4px 12px rgba(229, 50, 54, 0.15);
}

/* Select Dropdown Styling */
.state-select {
    border: none;
    background: #f8f9fa;
    padding: 0 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border-right: 1px solid #eee;
    outline: none;
    min-width: 120px;
}

/* Text Input Styling */
.search-group input {
    border: none;
    flex-grow: 1;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    color: #333;
}

/* Search Button Styling */
.search-btn {
    background: #e53236; /* Your brand red */
    color: #fff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-btn:hover {
    background: #c42a2d;
}

.search-btn i {
    font-size: 1.1rem;
}

.search-status {
         display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0px;
   
    color: #ffffff;
    width: fit-content;
    gap: 20px;
}

.search-status p {
    margin: 0;
    font-size: 1rem;
}



/* Clear Filter Button */
.clear-filter-btn {
       font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #373737;
    padding: 5px 10px;
    border-radius: 38px;
}

.clear-filter-btn:hover {
    color: #e53236; /* Your brand red */
}

.clear-filter-btn i {
    font-size: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .search-group {
            flex-direction: row;
    border-radius: 12px;
    }

    .state-select {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding: 12px 15px !important;
        height: 50px;
    }

    .search-group input {
        width: 100%;
        padding: 15px !important;
    }

    .search-btn {
           width: 80px;
    padding: 10px !important;
    border-radius: 0;
    }
	
	.clear-filter-btn{
	       padding: 5px 11px;
    border-radius: 38px;
}


}


/* Custom Scrollbar for the slider */
.location-slider::-webkit-scrollbar {
    height: 6px;
}
.location-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .explore-header {
           flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    }
    
    .mini-search {
        width: 100%;
        justify-content: space-between;
    }

    .mini-search input {
        flex-grow: 1;
        width: auto;
    }
}
/* Ad Banners */
.ad-banner {     height: auto;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0px;
    padding: 0px 0px;
    width: -webkit-fill-available;
    align-items: anchor-center;
    text-align: center;
    background: #0083fe;}
.ads_boxm {     width: -webkit-fill-available;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    object-fit: contain; }
	
.blue-box { background: #000066; }
.catalog-box {       background: #0083fe;
    flex-direction: column;}

.ads_place2 {
    display: flex;
    gap: 20px;
    padding: 20px 5%;
    background-color: #f9f9f9;
}

.ads_place_low {    width: 60%;}

.h_ads2 {       width: -webkit-fill-available;
    object-fit: cover;
    margin: 0px;
    max-height: 200px;
    border-radius: 10px;}

/* Left Column: Books and WhatsApp CTA */
.ads_box1 {
           flex: 2;
    display: grid;
    grid-template-columns: 50%  auto;
    gap: 10px;
    max-height: 283px;
}


@media screen and (max-width:700px){
	.ads_place_low {
    width: 100%;
}
	.ads_box1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: unset;
    width: 100%;
}
}

.book-box1 {
          flex: 1;
    display: grid;
    gap: 3px;
    grid-template-columns: 50% auto;
}

.book-box1  .book1 {
        flex: 1;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: anchor-center;
    justify-content: start;
    max-width: 180px;
}

.book-box1 img {
       width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.book-box1  .book1 p {    font-size: 14px;
    padding: 5px 0px;
    color: gray;}

/* WhatsApp Banner Image */
.ads_box1 a img {
       width: 100%;
    border-radius: 8px;
    display: block;
    height: 100%;
}

/* Right Column: YouTube Video */
.ads_box2 {
         flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    min-height: 200px;
    max-height: 400px;
}

.ads_box2 iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive: Stack columns on Mobile */
@media screen and (max-width: 992px) {
    .ads_place2 {
        flex-direction: column;
    }

    .ads_box2 {
           min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .book-box1 {
        flex-direction: column;
    }
}

/* Footer */
.main-footer {
       display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 5%;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    color: #333;
}



/* Left Section: Logo & Address */
.footer-info {
       display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

#pwa-install-btn {    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin: 10px;
    font-size: 15px;
    display: block;}

.footer-info img {
       height: 100px;
}

.info-text p {
    margin: 2px 0;
    font-size: 13px;
}

/* Right Section: Contacts & Socials */
.footer-contact {
    text-align: right;
    font-size: 14px;
}

.contact-item {
    margin-bottom: 5px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #333;
}

/* Social Media Icons Styling */
.social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.social-icons .fb { background-color: #3b5998; }
.social-icons .ig { background-color: #e4405f; }
.social-icons .tw { background-color: #000; } /* X/Twitter style */
.social-icons .yt { background-color: #cd201f; }

.social-icons a:hover {
    opacity: 0.8;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .main-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-info {
        flex-direction: column;
    }
    .footer-contact, .social-icons, .contact-item {
        justify-content: center;
        text-align: center;
    }
}
.sidebar {
         position: fixed;
    top: 0;
    left: 0;
    width: 0px;
    height: 100vh;
    background-color: #ffffff;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    padding-top: 60px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    overflow: hidden;
    overflow-y: auto;
}

/* The class toggled by JavaScript to show the menu */
.sidebar.active {
    left: 0;
}

/* Basic styling for links inside the sidebar */
.sidebar a {
       display: block;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.2s;
}

.sidebar a:hover {
    background-color: #333;
    color: #fff;
    padding-left: 35px; /* Subtle slide effect on hover */
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}



/* The main container */
.menu-toggle {
           display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #fc9859, #e1002d);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: absolute;
    margin: 10px;
}

/* Hover effect */
.menu-toggle:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.05);
}

/* When the menu is active (Toggled via JavaScript) */
.menu-toggle.active {
    background-color: #ff4757; /* Change color when open */
    color: white;
}

/* RESPONSIVE MEDIA QUERIES */
@media screen and (max-width: 768px) {
    .top-bar {
           flex-direction: column;
    align-items: end;
    }

    /* Stack the search bars */
    .search-container {
            flex-direction: column;
    width: 90%;
    padding: 20% 32px;
    }

    /* Adjust the Ad banner to 1 column */
    .ad-banner {
        grid-template-columns: 100%;
    }
}




.h_ads {           width: -webkit-fill-available;
    object-fit: cover;
    margin: 0px;
    max-height: 100%;
    border-radius: 10px;}
	
	.ads_slider {
    width: 100%;
    margin: 20px auto;
}

.ad-slide {
    padding: 10px; /* Space between ads */
}

.ad-slide img {
           width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    max-height: 600px;
    object-fit: cover;
    background: unset;
}

/* Optional: Style for the fallback box */
.blue-box {
    background: #007bff;
    color: white;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}



/* Ensure the slider container has enough room for arrows */
.ads_slider {
    width: 90%; /* Leave 5% space on each side for arrows */
    margin: 0 auto;
}

/* --- About Us Section Styling --- */
.about_us {
        max-width: 1000px;
    margin: 0px auto;
    padding: 40px;
    background-color: #ffffff;
    line-height: 1.8;
    color: #333;
}

/* Typography Enhancements */
.about_us h2, .about_us h3 {
    color: #0054a6; /* Corporate Blue */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #f37021; /* Saffron Accent */
    padding-left: 15px;
}

/* Introduction Styling */
.about_us strong {
    color: #f37021;
    font-size: 1.1em;
}

/* Mode of Search Section */
.about_us .search_modes {
    display: flex;
    justify-content: space-around;
    background: #fdf2e9;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    list-style: none;
}

.about_us .search_modes li {
    font-weight: bold;
    color: #0054a6;
}

/* Priority & QR Section */
.about_us .priority_box {
    background: linear-gradient(135deg, #0054a6, #003366);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

/* Destination Search Highlight (Coming Soon) */
.about_us .future_feature {
    border: 2px dashed #0054a6;
    padding: 25px;
    background-color: #f0f7ff;
    border-radius: 12px;
    position: relative;
    margin-top: 40px;
}

.about_us .future_feature::before {
    content: "Coming Soon";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f37021;
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Call to Action */
.about_us .cta_text {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #0054a6;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about_us {
        padding: 0px;
        margin: 0px;
    }
    
    .about_us .search_modes {
        flex-direction: column;
        gap: 10px;
    }
}



   .profile-container {     max-width: 1000px;
    margin: 0px auto;
    padding: 30px;
    background: white; }
    .hero-img { width: 100%; height: 450px; object-fit: cover; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
    .place-header { margin-top: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
    .place-type {    
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 10px 0px;
    position: relative;
    text-transform: uppercase;
    display: block; }
	
	.tourist-place {background: linear-gradient(45deg, #357ae8, #2d7cfc);}
	.resort {background: linear-gradient(45deg, #357ae8, #2d7cfc);}
	.hotel {background: linear-gradient(45deg, #ff3f3f, #ff7802);}
	.home-stay {background: linear-gradient(45deg, #357ae8, #2d7cfc);}
	
    .rating-badge {     background: #fef5ed;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    color: #f47b21;
    border: 1px solid;
    padding: 6px;
    border-radius: 36px; }
    .details-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-top: 20px; }
    .info-box {     border-radius: 10px;
    margin: 10px 0px;}
    .map-btn { display: inline-block; background: #27ae60; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; margin-top: 10px; }
    .description { line-height: 1.8; color: #444; font-size: 1.1rem; }
    .meta-item { margin-bottom: 10px; font-size: 0.95rem; }
    .meta-item b { color: #555; }
	
	.info-box h4 {    font-size: 20px;
    padding: 10px 0px;}
	
	.place_icon {    color: #ef4715;
    padding: 10px 0px;
    font-weight: 600;}
	
	.image_txt {    position: relative;}
	.image_txt h2{    font-size: 50px;
    position: absolute;
    z-index: 1;
    top: 0;
    background: #0000005c;
    height: 100%;
    color: white;
    width: 100%;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    backdrop-filter: blur(1px);}
	

	 .results-grid {
           display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    }
	

	
	
	
	/* mobile ---------------------------*/
	
	
	
    .place-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: 0.3s;
        background: #fff;
    }
    .place-card:hover { transform: translateY(-5px); }
    .place-card img { width: 100%; height: 200px; object-fit: cover; }
    .card-content {    padding: 15px;
    position: relative; }
    .search-header {     color: white;
    background: #0382ff;
    padding: 20px 20px;
     }
	 
	 
	 /* Ensure both images and avatars have the same constraints */
.card-img, .letter-avatar {
    width: 100%;
    height: 200px; /* Adjust based on your UI */
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0; /* Optional: rounds top corners */
}

.letter-avatar {
    color: #ffffff;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    user-select: none;
}


	/* Button Styling */
.btn-primary {
        background-color: #2277ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffa322;
}


.ad-banner-horizontal {      width: -webkit-fill-available;
    margin: 20px 0;
    height: auto;
    max-width: 600px;
    display: inline-block;
    border: 2px solid #fe8a00;
    border-radius: 10px;
    margin: 10px;
    position: relative;}
	
	
	.place_website_btn {      display: inline-block;
    background: #357ae8;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;}
	.sponsored_label {
           font-size: 12px;
    color: #4c4a4a;
    background-color: #ffe8cd;
    padding: 2px 8px;
    border-radius: 5px 0px 0px;
    text-transform: uppercase;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
	
		@media screen and (max-width:700px){
		
		.ad-banner-horizontal {
    width: -webkit-fill-available;
    margin: 20px 0;
    height: auto;
    max-width: 600px;
    display: inline-block;
}

.h_ads {
            margin: 5px;
    max-height: 100%;
    border-radius: 10px;
}





		.details-grid {
    
    grid-template-columns: auto;
    gap: 10px;
    margin-top: 20px;
	}

	.hero-img {
		width: 100%;
		height: auto;
		
	}

	.image_txt h2 {
	   
		display: none;
	}
	
	
	.ads_boxm {
   
    height: auto;
	
	}
}

	@media screen and (max-width:700px){
		.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(46%, 1fr));
    gap: 5px;
    padding: 10px;
    align-items: flex-start;
}

.btn-primary {
    background: linear-gradient(45deg, #4e8ef4, #2277ff);
    color: white;
    border: none;
    padding: 10px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.place-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

   .place-type {
   
    position: absolute;
    top: -19px;
    right: 7px;
}
	


	}
	
	
/* Responsive Container */
.slider-container {
    width: 100%;           /* Full width on mobile */
    max-width: 600px;      /* Caps size on desktop */
    margin: 0 auto;        /* Centers it */
    padding: 0 15px;       /* Adds a little breathing room on small screens */
    box-sizing: border-box;
}

/* Ensure images scale proportionally */
#ad-slider .item img {
    width: 100% !important;
    height: auto !important; /* Maintains 600:500 aspect ratio */
    border-radius: 8px;     /* Optional: adds nice rounded corners */
}

/* Hide navigation arrows on small mobile phones to save space */
@media (max-width: 480px) {
    .owl-nav {
       display: none !important; 
    }
    /* Keep dots visible so users know there are more ads */
     .owl-dots {
        margin-top: 10px;
    }
}

/* Style for the Navigation Container */
 .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* Allows clicking ads through the container */
}

/* Individual Arrow Styling */
 .owl-nav button.owl-prev,
 .owl-nav button.owl-next {
    background: rgba(0, 0, 0, 0.5) !important; /* Semi-transparent black */
    color: #fff !important;
    border-radius: 50% !important; /* Makes it a circle */
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto; /* Re-enables clicking on the buttons */
    margin: 0 10px;
}

/* Hover Effect */
 .owl-nav button.owl-prev:hover,
 .owl-nav button.owl-next:hover {
    background: #007bff !important; /* Changes to blue on hover */
    transform: scale(1.1);
}

/* Pagination Dots Styling */
 .owl-dots {
    margin-top: 15px;
    text-align: center;
}

 .owl-dot span {
    background: #ccc !important;
    width: 10px !important;
    height: 10px !important;
}

 .owl-dot.active span {
    background: #007bff !important; /* Active dot color */
}

.location-details-container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.location-details-container h4 {
       margin-top: 0;
    color: #333;
    padding: 23px 0px;
    position: relative;
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.meta-item {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.meta-item i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

/* Icon Colors */
.icon-blue { color: #007bff; }
.icon-green { color: #25d366; }
.icon-red { color: #dc3545; }
.icon-purple { color: #6f42c1; }
.icon-orange { color: #fd7e14; }

.meta-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}

.meta-item a:hover {
    text-decoration: underline;
}

.map-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4285F4; /* Google Blue */
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s ease;
}

.map-btn:hover {
    background-color: #357ae8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.map-btn i {
    margin-right: 8px;
}

/* Specific icon color for coordinates */
.icon-blue { color: #4285F4; }

.download-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #28a745; /* Green */
    color: white !important;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    margin-top: 10px;
}

.download-btn:hover {
    background-color: #218838;
}



.results-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Card Container */
.dest-card-container {
       background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    position: relative;
}

.dest-card-container:hover {
    transform: translateY(-5px);
}

/* Media Section */
.dest-card-media iframe {    width: 100%;
    height: 300px;}

.dest-card-media img {
        width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Text Section */
.dest-card-body {
    padding: 20px;
}

.dest-card-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #333;
    font-weight: 700;
}

.dest-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9); /* Clean white background */
    backdrop-filter: blur(4px); /* Modern blur effect */
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    width: fit-content;
    border-radius: 50px; /* Pill shape */
    border: 1px solid #eee;
    margin: 8px;
    position: absolute;
    top: 10px; /* Added top to prevent sticking to the ceiling */
    right: 10px; /* Added spacing from the edge */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 5;
}

/* Optional: Add a small red dot if the views are high/trending */
.dest-views::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #e43737;
    border-radius: 50%;
    display: inline-block;
}

.dest-card-desc {
          font-size: 14px;
    color: #292828;
    line-height: 1.6;
    margin-bottom: 20px;
    height: auto;
    overflow: hidden;
    text-align: justify;
}

.dest-card-state {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #fff0f3; /* Light blush */
    color: #d63384;      /* Deep pink/magenta for contrast */
    border: 1px solid #ffdae0;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 20px
    display: flex;
    align-items: center;
    gap: 5px; /* Space for the icon */
}

/* Footer Section */
.dest-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.dest-rating {
    color: #ff9800;
    font-weight: bold;
    font-size: 16px;
}

.dest-view-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.dest-view-btn:hover {
    background-color: #0056b3;
}

/* Pagination Styles */
.pagination-container {
        display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 auto;
    margin-top: 30px;
    padding-bottom: 50px;
    width: fit-content;
    overflow: auto;
    max-width: 95%;
}

.page-link {
    padding: 8px 16px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s;
}

.page-link:hover {
    background-color: #f8f8f8;
    border-color: #007bff;
}

.page-link.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Container styling */
.catalogue-header {
       background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.catalogue-header h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Flexbox form layout */
.mini-search {
       display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
}

/* Individual input areas */
.mini-search .input-area {
       flex: 1;
    min-width: 180px;
    position: relative;
}

.input-area label {color:black;padding:5px 2px;}
/* Styling Selects and Inputs */
.mini-search select, 
.mini-search input[type="text"] {
       width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    color: #444;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
    height: auto;
    max-width: 180px;
}

.mini-search select:focus, 
.mini-search input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* The Search Button */
.mini-search button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0 20px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-search button:hover {
    background-color: #0056b3;
}

.mini-search button i {
    font-size: 16px;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .mini-search {
            flex-direction: row;
    align-items: stretch;
    }
    
    .mini-search .input-area {
          
    width: fit-content;
    display: inline-block;
    min-width: 130px;
    }
}





#catalog-form {display:none;}



.hero-search-wrapper {
        max-width: 900px;
    margin: 50px auto 15px;
    text-align: center;
    padding: 0 20px;
}

.hero-search-wrapper h2 {
        font-size: 2rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 800;
    text-shadow: 1px 1px 7px black;
}

/* Toggle Pill */
.form-toggle-pill {
            display: block;
    padding: 4px;
    border-radius: 30px;
    z-index: 2;
    position: relative;
    margin: 0px auto 30px;
    background: #9aceff;
    width: fit-content;
}

.form-toggle-pill button {
        border: none;
    padding: 8px 24px;
    border-radius: 25px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-size: 16px;
}

.form-toggle-pill button.active {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


button.toggle-btn.active:after {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 20px;
    height: 40px;
    top: -28px;
    margin-left: -31px;
    border-radius: 20px;
}


/* The Search Bar */
.hero-search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 8px 12px 8px 30px;
}

.search-column {
           display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 15px;
    flex: 1;
    position: relative;
    width: 230px;
}



.search-column.flex-grow { flex: 1.5; }

.search-column label {
       font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    color: #000;
    margin-bottom: 2px;
    top: -5px;
    position: relative;
}

.search-column select, 
.search-column input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #717171;
    background: transparent;
}

.search-divider {
    width: 1px;
    height: 32px;
    background-color: #ebebeb;
}

/* Search Button */
.search-submit-btn {
        background-color: #ff8d38;
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.search-submit-btn span { display: none; } /* Hidden on desktop for "Icon only" look */

.search-submit-btn:hover {
    transform: scale(1.05);
    background-color: #e31c5f;
}.search-column { position: relative; }

.search_results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}

.result-item {
        padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: black;
    text-align: left;
}

.result-item:hover { background: #f8f9fa; }

.result-item small { color: #666; font-size: 0.85em; }


/* Mobile Responsive */
@media (max-width: 768px) {
	.hero-search-wrapper {
  
    margin: 20px auto 0px;
    text-align: center;
    padding: 0 0px;
}
	
    .hero-search-box {
           flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    min-width: 300px;
    }
    .search-divider { display: none; }
    .search-column {
            width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
    }
    .search-submit-btn {
        width: 100%;
        border-radius: 10px;
        margin-top: 15px;
        gap: 10px;
    }
    .search-submit-btn span { display: inline; }
}


 
.back-container {
    margin: 20px 0;
    padding: 0 15px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: transparent;
    color: #e43737; /* Your Brand Red */
    border: 1px solid #e43737;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back i {
    font-size: 12px;
}

.btn-back:hover {
    background: #e43737;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(228, 55, 55, 0.2);
    transform: translateX(-3px); /* Subtle nudge to the left */
}


/* Layout Container */
.directory-wrapper {
       display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 15px;
    align-items: flex-start;
}

/* Sidebar Navigation */
.sidebar-nav {
       flex: 0 0 280px;
    background: #fdfdfd;
    border-right: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    height: 80vh;
    overflow-y: auto;
    position: sticky;
    top: 20px;
}

.sidebar-nav h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e43737;
}

.cat-group-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.count-badge {    position: absolute;
    top: 9px;
    background: #e7e7e7;
    font-size: 10px;
    min-width: 13px;
    padding: 2px;
    color: black;
    display: flex;
    text-align: center;
    border-radius: 24px;
    right: 14px;
    align-items: anchor-center;
    justify-content: center;}

.cat-link {
        display: block;
    padding: 10px 12px;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.cat-link:hover {
    background: #fff5f5;
    color: #e43737;
}

.cat-link.active {
    background: #e43737;
    color: #ffffff;
    font-weight: 600;
}

/* Main Content Area */
.main-content {
    flex: 1;
}

.dest-page-title {
       font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

.destination_page_grid {
          display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 30%));
    gap: 20px;
}







/* Responsive */
@media (max-width: 992px) {
	
	.destination_page_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40%, 48%));
    gap: 10px;
}


    .directory-wrapper { flex-direction: column; }
    .sidebar-nav { 
            flex: none;
    width: -webkit-fill-available;
    height: auto;
    position: relative;
    top: 0;
    }
}
/* Card Container */
.classified-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards in a row are same height */
}

.classified-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #e43737;
}

/* Image Styling */
.dest-card-img {
        width: 100%;
    max-height: 200px;
    height: auto;
    min-height: 100px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.classified-card:hover .card-img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Body Content */
.card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.card-body h4 {
    font-size: 1.15rem;
    color: #222222;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px !important;
}

/* Category Tag */
.destination_type {
       display: inline-block;
    color: #e43737;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* Text & Icons */
.card-body p {
    font-size: 0.9rem;
    color: #666666;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body p i {
    color: #999999;
    width: 14px; /* Fixes alignment for icons */
    text-align: center;
}

/* View Details Button */
.btn-view {
    display: block;
    text-align: center;
    background: #e43737;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto; /* Pushes button to bottom of card */
    transition: background 0.2s ease;
}

.btn-view:hover {
    background: #c22b2b;
    box-shadow: 0 4px 10px rgba(228, 55, 55, 0.3);
}


/* Card Actions Wrapper (to align buttons if you have multiple) */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}