 
        :root {
            --primary: #0a4a6a;
            --primary-light: #1a6b8f;
            --secondary: #d4af37;
            --gold-light: #e6c875;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --section-padding: 120px;
        }
        
         
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
  
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            background: linear-gradient(rgba(10, 74, 106, 0.2), rgba(10, 74, 106, 0.1)), 
                        url('/assets/img/hotel/heroimg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, white, transparent);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 900px;
            padding: 20px;
            z-index: 2;
        }
        
        .hero h1 {
            color: white;
            font-size: 5rem;
            margin-bottom: 25px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 50px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }
        
        .btn-hero {
            display: inline-block;
            background: orange;
            color: var(--dark);
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }
        
        .btn-hero:hover {
         
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
            letter-spacing: 0.5px;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            z-index: 2;
            cursor: pointer;
        }
        
        /* Booking Card */
        .booking-section {
            padding: var(--section-padding) 0 80px;
            background: linear-gradient(to bottom, rgba(248,249,250,0.9), rgba(248,249,250,1));
            position: relative;
            z-index: 5;
        }
        
        .booking-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            padding: 50px;
            margin-top: -120px;
            position: relative;
            z-index: 10;
            transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        
        .booking-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            font-size: 2.5rem;
            position: relative;
        }
        
        .form-title:after {
            content: '';
            display: block;
            width: 120px;
            height: 4px;
            background: var(--secondary);
            margin: 25px auto;
            border-radius: 2px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 500;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .form-group label i {
            margin-right: 12px;
            color: var(--secondary);
        }
        
        .form-group input, 
        .form-group select {
            width: 100%;
            padding: 16px 25px;
            border: 1px solid var(--light-gray);
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            transition: all 0.4s ease;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.03);
        }
        
        .form-group input:focus, 
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 4px rgba(26, 107, 143, 0.1);
        }
        
        
        .btn:hover {
            background: var(--primary-light);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(10, 74, 106, 0.3);
            letter-spacing: 0.8px;
        }
        
        .btn i {
            margin-right: 12px;
        }
        
        .testimonials,
.testimonials h2,
.testimonials h4,
.testimonials p,
.testimonials .rating {
    color: white !important;
}
        /* Rooms Section */
        .rooms-section {
            padding: var(--section-padding) 0;
            background: white;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: var(--secondary);
            bottom: -15px;
            left: 15%;
            border-radius: 3px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 750px;
            margin: 0 auto;
            font-size: 1.25rem;
            line-height: 1.9;
        }
        
        .room-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
            gap: 50px;
        }
        
        .room-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
            position: relative;
        }
        
        .room-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }
        
        .room-img-container {
            overflow: hidden;
            height: 280px;
            position: relative;
        }
        
        .room-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        
        .room-card:hover .room-img {
            transform: scale(1.1);
        }
        
        .room-badge {
            position: absolute;
            top: 25px;
            right: 25px;
            background: var(--secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 2;
        }
        
        .room-content {
            padding: 35px;
        }
        
        .room-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .room-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 25px;
            display: flex;
            align-items: flex-end;
        }
        
        .room-price span {
            font-size: 1.1rem;
            color: var(--gray);
            font-weight: 400;
            margin-left: 8px;
            margin-bottom: 5px;
        }
        
        .room-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            font-size: 1rem;
            color: var(--gray);
            background: var(--light-gray);
            padding: 10px 18px;
            border-radius: 30px;
        }
        
        .feature i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .room-card p {
            margin-bottom: 30px;
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.9;
        }
        
        .amenities {
            margin-bottom: 30px;
        }
        
        .amenities h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .amenities h4 i {
            margin-right: 15px;
            color: var(--secondary);
            font-size: 1.5rem;
        }
        
        .amenity-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .amenity-item {
            background: var(--light-gray);
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--gray);
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .amenity-item:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-2px);
        }
        
        .amenity-item i {
            margin-right: 8px;
            color: var(--secondary);
            font-size: 0.8rem;
        }
        
        .amenity-item:hover i {
            color: var(--dark);
        }
        
        .book-now {
            background: orange;
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
            font-weight: 600;
            font-size: 1.2rem;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
           
        }
        
        .book-now:hover {
            background: var(--gold-light);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
            letter-spacing: 0.5px;
        }
        
        /* Testimonials */
       .testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(10, 74, 106, 0.95) 0%, rgba(8, 62, 89, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    display: inline-block;
}

.testimonials .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
}

.testimonials .section-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.testimonial-card:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    z-index: 1;
}

.testimonial-text p {
    margin: 0;
}

.testimonial-text:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -25px;
    left: -10px;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
    color: #d4af37;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-img {
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

.rating {
    color: #d4af37;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 15px;
    }
    
    .testimonials .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonials .section-title p {
        font-size: 1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-author {
        flex-wrap: wrap;
    }
    
    .rating {
        margin-left: 75px;
        margin-top: -20px;
    }
}
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            :root {
                --section-padding: 100px;
            }
            
            .hero h1 {
                font-size: 4.5rem;
            }
        }
        
        @media (max-width: 992px) {
            :root {
                --section-padding: 80px;
            }
            
            .container {
                padding: 0 30px;
            }
            
            .hero h1 {
                font-size: 4rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
            .room-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --section-padding: 70px;
            }
            
    
          
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 15px 10px;
            }
            
            .book-now-nav {
                margin: 15px 0 0;
            }
            
            .hero {
                min-height: 700px;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .hero p {
                font-size: 1.2rem;
                margin-bottom: 40px;
            }
            
            .booking-card {
                margin-top: -80px;
                padding: 40px 30px;
            }
            
            .form-title {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .room-grid, .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 576px) {
            :root {
                --section-padding: 60px;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .booking-card {
                padding: 35px 25px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
            
            .room-title {
                font-size: 1.6rem;
            }
            
            .room-price {
                font-size: 2rem;
            }
        } 

        @media (max-width: 768px) {
    [data-aos] {
        transition-delay: 0 !important;
    }
    
    /* Reduce animation duration on mobile */
    [data-aos] {
        transition-duration: 500ms !important;
    }
}