:root {
            --primary-color: #1a237e;
            --primary-dark: #000051;
            --primary-light: #534bae;
            --accent-color: #ffab00;
            --accent-dark: #c67c00;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Header & Navigation */
        .navbar {
            background-color: rgba(26, 35, 126, 0.9);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }
        
        .navbar.scrolled {
            background-color: var(--primary-color);
            padding: 0.5rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: white !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-book {
            background-color: var(--accent-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-book:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Hero Section */
        .hero-slider {
            margin-top: 0px;
        }
        
        .carousel-item {
            height: 90vh;
            min-height: 500px;
        }
        
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
        
        .carousel-caption {
            bottom: 30%;
            text-align: left;
            max-width: 600px;
            left: 10%;
            right: auto;
        }
        
        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .btn-hero {
            background-color: var(--accent-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Section Styling */
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        section {
            padding: 5rem 0;
        }
        
        .bg-light {
            background-color: #f8f9fa !important;
        }
        
        /* Rooms Section */
        .room-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .room-img {
            height: 250px;
            object-fit: cover;
        }
        
        .room-price {
            color: var(--accent-color);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .btn-room {
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-room:hover {
            background-color: var(--primary-dark);
            color: white;
        }
        
        /* Services Section */
        .service-card {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        /* Gallery Section */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 35, 126, 0.8);
            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 img {
            transform: scale(1.1);
        }
        
        .gallery-icon {
            color: white;
            font-size: 2rem;
        }
        
        /* Testimonials Section */
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin: 1rem;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .stars {
            color: var(--accent-color);
        }
        
        /* Booking Form */
        .booking-form {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--primary-color);
        }
        
        .form-control {
            padding: 0.75rem 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background-color: var(--primary-dark);
        }
        
        /* Special Banner */
        .special-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 8rem 0;
            color: white;
            text-align: center;
        }
        
        .special-banner h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .special-banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* Contact Section */
        .contact-info {
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: rgba(255, 255, 255, 0.8);
            padding-top: 4rem;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            bottom: -8px;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 0.5rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .newsletter-form .form-control {
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            margin-bottom: 1rem;
        }
        
        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .btn-newsletter {
            background-color: var(--accent-color);
            color: var(--dark-color);
            font-weight: 600;
            border-radius: 30px;
            width: 100%;
        }
        
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .carousel-caption {
                bottom: 20%;
            }
            
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
            
            .special-banner h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-caption {
                bottom: 15%;
                left: 5%;
            }
            
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .special-banner {
                padding: 5rem 0;
            }
            
            .special-banner h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-item {
                height: 70vh;
            }
            
            .carousel-caption h1 {
                font-size: 1.8rem;
            }
            
            .booking-form {
                padding: 1.5rem;
            }
        }
        
        
        /* Go-to-top button styles */
        .go-top {
            position: fixed !important;
            right: 20px;
            bottom: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
            z-index: 9999;
            background: linear-gradient(135deg, #092361 0%, #1e3a8a 100%);
            position: relative;
            overflow: visible;
        }
        
        .go-top::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 2px dashed #fff;
            border-radius: 50%;
            animation: rotate-border 4s linear infinite;
            pointer-events: none;
            background: transparent;
        }
        
        .go-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .go-top:hover {
            background: linear-gradient(135deg, #1e3a8a 0%, #092361 100%);
            transform: translateY(-2px);
        }
        
        .go-top i {
            font-size: 16px;
            position: relative;
            z-index: 2;
        }
        
        /* Border rotate animation */
        @keyframes rotate-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    