@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

  
        body {
            box-sizing: border-box;  
        } 
        :root {
            --primary-color: #33446f;
            --primary-dark: #030e29;
            --secondary-color: #6c757d;
            --accent-color: #7689bb;
            --accent-secondary: #030e29;
            --text-primary: #2d3436;
            --text-secondary: #636e72;
            --footer-bg: #040c21;
            --footer-text: #ffffff;
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --glass-bg: rgba(255, 255, 255, 0.95);
            --glass-border: rgba(0, 0, 0, 0.1);
            --shadow: rgba(0, 0, 0, 0.1);
        }
        
        [data-theme="dark"] {
            --text-primary: #ffffff;
            --text-secondary: #adb5bd;
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --glass-bg: rgb(255 255 255 / 2%);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow: rgba(0, 0, 0, 0.3);
        }
        [data-item="dark"]{
            display: none;
        }
        [data-theme="dark"] [data-item="dark"] {
            display: block;
        }
        [data-theme="dark"] [data-item="light"] {
            display: none;
        }
        a{
            color: inherit;
            text-decoration: none;
        }
        a:hover{
            color: inherit;
            text-decoration: none;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            /* transition: all 0.3s ease; */
            overflow-x: hidden;
        }
        
        /* Glassmorphism Effects */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px var(--shadow);
        }
        
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            box-shadow: 0 8px 32px var(--shadow);
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid #2a3960;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            /* transition: all 0.3s ease; */
        }
        @media(max-width:991px){
        [data-theme="dark"] .navbar, [data-theme="dark"] .offcanvas {
            background: rgba(30, 30, 30, 0.95) !important; 
        }

        }
        
        [data-theme="dark"] .navbar{
             background: rgba(30, 30, 30, 0.95) !important; 
            border-bottom: 1px solid #2a3960;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-primary) !important;
            font-weight: 500;
            margin: 0 10px;
            /* transition: all 0.3s ease; */
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .theme-toggle {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
            border-radius: 50px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        /* Navbar Toggler Icon */
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        [data-theme="dark"] .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* Offcanvas Styling */
        .offcanvas{ 
            height: 100vh !important;
        }
        .offcanvas-title {
            color: var(--text-primary);
        }
        
        [data-theme="dark"] .offcanvas-title {
            color: #000000 !important;
        }
        
        /* Offcanvas Close Button */
        .btn-close { 
            background:unset;
            font-size: 20px;
            color: var(--text-primary);
        } 
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.85), rgba(8, 8, 8, 0.7)),
                        url('../../assets/images/hero.webp') center/cover;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 160px 15px 15px 15px;
        }
        
        .hero-content {
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .booking-form {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2); 
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }
        
        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            background: rgba(255, 255, 255, 1);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(27, 12, 93, 0.25);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border: none; 
            border-radius: 0;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(42, 57, 96, 0.7); 
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--bg-secondary);
        }
        
        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px var(--shadow);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
        }
        
        /* Rooms Section */
        .rooms-section {
            padding: 100px 0;
            background: var(--bg-primary);
        }
        
        .room-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border); 
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px var(--shadow);
        }
        
        .room-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
            width: 100%;
        }
        
        .room-price {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
            color: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .room-content {
            padding: 1.5rem;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .room-amenities {
            display: flex;
            gap: 10px; 
        }
        
        .amenity-badge {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: var(--bg-secondary);
        }
        
        .testimonial-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background-size: cover;
            background-position: center;
            border: 3px solid var(--primary-color);
        }
        
        .stars {
            color: rgb(246, 246, 69);
            margin-bottom: 1rem;
        }
        
        /* Footer */
        .footer {
            background: var(--footer-bg);
            border-top: 1px solid var(--glass-border);
            padding: 60px 0 20px;
        }
        
        .footer-section {
            margin-bottom: 2rem;
            color: var(--footer-text);
        } 
        .footer-text{
            color: var(--footer-text);
        }

        .footer-link { 
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        

        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .booking-form {
                margin-top: 2rem;
            }
            
            .feature-card, .room-card, .testimonial-card {
                margin-bottom: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
                padding: 0 10px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.75rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }
        }
        
        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
            background: var(--bg-primary);
        }
        
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px var(--shadow);
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(42, 57, 96, 0.7), rgba(3, 14, 41, 0.5));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease; 
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }
        
        .gallery-content {
            text-align: center;
            color: white;
            padding: 2rem;
        }
        
        .gallery-content h5 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        /* Offers Section */
        .offers-section {
            padding: 100px 0;
            background: var(--bg-secondary);
        }
        
        .offer-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px var(--shadow);
        }
        
        .offer-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
            color: #fff;
            padding: 8px 20px;
            border-radius: 0 0 15px 15px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .offer-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
        }
        
        .offer-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }
        
        .offer-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
        }
        
        .offer-price {
            margin: 1.5rem 0;
            padding: 1rem 0;
            border-top: 1px solid var(--glass-border);
        }
        
        .old-price {
            text-decoration: line-through;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-right: 10px;
        }
        
        .new-price {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        /* Location Section */
        .location-section {
            padding: 100px 0;
            background: var(--bg-primary);
        }
        
        .location-features {
            margin: 2rem 0;
        }
        
        .location-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .location-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px var(--shadow);
        }
        
        .location-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 6px 20px #2a3960;
        }
        
        .location-info h5 {
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        
        .location-info p {
            margin: 0;
            color: var(--text-secondary);
        }
        
        .contact-info {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .map-container {
            height: 100%;
            min-height: 400px;
        }
        
        .map-card {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 3rem;
            background: linear-gradient(135deg, var(--glass-bg), rgba(0, 123, 255, 0.1));
        } 

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: all 0.8s ease;
        }
        
        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }
        
        .preloader-content {
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }
         

        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-primary);
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--glass-bg);
            color: var(--text-primary) !important;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 20px var(--shadow);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .back-to-top i {
            color: var(--text-primary) !important;
            z-index: 2;
            position: relative;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 212, 170, 0.5);
            background: var(--primary-color) !important;
            color: white !important;
            border-color: var(--primary-color) !important;
        }
        
        .back-to-top:hover i {
            color: var(--text-primary) !important;
        }
        
        [data-theme="light"] .back-to-top:hover i {
            color: #000000 !important;
        }
        
        [data-theme="dark"] .back-to-top:hover i {
            color: white !important;
        }
        
        .back-to-top::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            background: conic-gradient(
                var(--accent-color) 0deg,
                var(--accent-color) var(--progress, 0deg),
                transparent var(--progress, 0deg),
                transparent 360deg
            );
            z-index: -1;
            transition: all 0.1s ease;
        }
        
        .back-to-top::after {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: var(--bg-primary);
            border-radius: 50%;
            z-index: -1;
        }
        
        .progress-ring {
            position: absolute;
            top: -4px;
            left: -4px;
            width: 68px;
            height: 68px;
            border-radius: 50%;
            background: conic-gradient(
                from 0deg,
                var(--accent-color) 0%,
                var(--accent-color) var(--scroll-progress, 0%),
                rgba(255, 107, 107, 0.2) var(--scroll-progress, 0%),
                rgba(255, 107, 107, 0.2) 100%
            );
            z-index: -1;
            transition: all 0.1s ease;
        }
        
        .progress-ring::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            right: 3px;
            bottom: 3px;
            background: var(--bg-primary);
            border-radius: 50%;
        }
        
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.1rem;
            }
            
            .progress-ring {
                top: -3px;
                left: -3px;
                width: 56px;
                height: 56px;
            }
            
            .progress-ring::before {
                top: 2px;
                left: 2px;
                right: 2px;
                bottom: 2px;
            }
        }
        
        /* H4 Headings */
        h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .feature-card h4,
        .room-card h4,
        .testimonial-card h5,
        .offer-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        } 
        .footer-title { 
            font-size: 1.3rem;
            font-weight: 600;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .contact-info h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .error{
            color: rgb(255, 36, 36);
        }
        .alertmsg{
            z-index: 9999;
        }