        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ffffff;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #7f8c8d;
            --header-bg: rgba(255, 255, 255, 0.98);
            --header-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        a {
  color: #3D413C;
  text-decoration: none;
}

/* Active link (while being clicked) */
a:active {
  color: red;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: var(--header-bg);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.8rem 0;
            box-shadow: var(--header-shadow);
            transition: all 0.3s ease;
        }
        
        .container {
            width: 95%;
            max-width: 1350px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 0.2rem;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary-color);
        }
        
        .logo-icon {
            margin-right: 0.5rem;
            color: var(--secondary-color);
        }
        
        /* Navigation Styles */
        .nav-menu {
            display: flex;
            gap: 1.5rem;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
        }
        
        .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .nav-link i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        
        /* Dropdown menu */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 4px;
            z-index: 1;
            top: 100%;
            left: 0;
        }
        
        .dropdown-content a {
            color: var(--text-color);
            padding: 0.75rem 1rem;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .dropdown-content a:hover {
            background-color: #f8f9fa;
            color: var(--secondary-color);
        }
        
        .nav-item:hover .dropdown-content {
            display: block;
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
        
        /* Search Section */
        .search-section {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin: 2rem auto;
        }
        
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .search-input {
            flex: 1;
            min-width: 250px;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .filter-section {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .filter-select {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
            font-size: 0.9rem;
        }
        
        .search-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        
        .search-btn:hover {
            background-color: #2980b9;
        }
        
        /* Results Header */
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .results-count {
            font-size: 1.1rem;
            color: var(--text-color);
        }
        
        .results-count strong {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Hotel Listing */
        .hotel-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .hotel-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .hotel-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .hotel-details {
            padding: 0.5rem;
        }
        
        .hotel-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        
        .hotel-name {
			color: #000000;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.1rem;
        }
        
        .hotel-address {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 0.1rem;
        }
        
        .hotel-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent-color);
        }
        
        .hotel-excerpt {
            margin: 0.3rem 0;
            color: var(--text-color);
            font-size: 0.95rem;
        }
        
        .hotel-amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem;
            margin: 0.2rem 0;
        }
        
        .amenity-tag {
            background-color: var(--light-color);
            color: #3C83CB;
            padding: 0.1rem 0.2rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid #ddd;
        }
        
        .hotel-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 0.2rem;
            padding-top: 0.2rem;
            border-top: 1px solid #eee;
        }
        
        .hotel-rating {
            display: flex;
            align-items: center;
        }
        
        .stars {
            color: #f1c40f;
            margin-right: 0.5rem;
        }
        
        .review-count {
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .view-btn {
            background-color: #252183;
            color: white;
            border: none;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .view-btn:hover {
            background-color: #1a252f;
        }
		
		  .booknow-btn {
            background-color: #1a252f;
            color: white;
            border: none;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
           .boonow-btn:hover {
            background-color: #252183;
        }
        

        /* Utility Classes */
        .no-results {
            text-align: center;
            padding: 2rem;
            grid-column: 1 / -1;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-top: 2rem;
        }
        
        /* Mobile Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem 1.5rem;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                z-index: 1000;
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .dropdown-content {
                position: static;
                box-shadow: none;
                display: none;
                width: 100%;
                background: #f9f9f9;
                margin-top: 0.5rem;
            }
            
            .dropdown-content a {
                padding: 0.6rem 0;
                border-bottom: 1px solid #eee;
            }
            
            /* Change menu icon to X when active */
            .nav-menu.active ~ .menu-toggle #menuIcon {
                transform: rotate(90deg);
            }
            
            .nav-menu.active ~ .menu-toggle #menuIcon::before {
                content: "\f00d"; /* FontAwesome X icon */
            }
            
            .hotel-list {
                grid-template-columns: 1fr;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .filter-section {
                flex-direction: column;
            }
            
            .results-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
        
        /* Prevent scrolling when menu is open */
        .no-scroll {
            overflow: hidden;
            height: 100vh;
        }