* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

/* Header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease-in-out;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    flex-wrap: wrap;
    transition: transform 0.3s ease-in-out;
}

.header-details {
    color: #333;
    font-size: 14px;
}

.header-details i {
    color: #a27b41;
    margin-right: 6px;
}

.header-details a {
    color: #a27b41;
    font-weight: 600;
    text-decoration: none;
}

.header-details a:hover {
    text-decoration: underline;
}

.logo {
    text-align: center;
}

.logo img {
    width: 80px;
}

.logo span {
    display: block;
    font-family: 'Quattrocento', serif;
    font-size: 20px;
    color: #222;
    font-weight: 700;
    margin-top: 5px;
}

.header-details.contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.separator {
    color: #a27b41;
    font-weight: bold;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    background: #1f2407;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 10px 0;
    transition: max-height 0.3s ease-in-out;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-family: 'Quattrocento', serif;
    color: #f1d18a;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #a8c081;
    background: #3b4022;
}

/* Dropdown hover indicator */
.nav-links li:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #f1d18a;
    transform: translateX(-50%);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* Responsive */
@media(max-width: 900px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .header-details.contact {
        flex-direction: column;
        gap: 5px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 50px; /* below menu toggle */
        right: 20px;
        background: #1f2407;
        width: 200px;
        padding: 15px 20px;
        border-radius: 5px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        max-height: 0;
        overflow: hidden;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        max-height: 900px;
    }

    .nav-links li {
        margin-bottom: 12px;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Body offset for fixed header */
body {
    margin-top: 160px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #270f06;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    padding-top: 70px; /* Offset for fixed header */
}

.hero-section h1 {
    font-family: 'Quattrocento', serif; /* Set Quattrocento for h1 */
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-family: 'Raleway', sans-serif; /* Set Raleway for paragraphs */
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

/* Booking Form Container */
.booking_form_container {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

.booking_form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.booking_input {
    flex: 1;
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.booking_input:focus {
    border-color: #ff9800;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

.booking_button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ffb84d);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.booking_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .booking_button {
        width: 100%;
    }
}

/* Additional Style */
.booking_form_container {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-top: 20px;
}

.booking_form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.booking_input {
    flex: 1 1 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.booking_input:focus {
    border-color: #a8c081;
}

.booking_button {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 25px;
    background: linear-gradient(135deg, #1f2407, #637507);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
}

.booking_button:hover {
    background: #a8c081;
}
/* General Styling for Hotel Info */
#hotel-info {
    background-color: #f9f9f9;
    color: #333;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Raleway', sans-serif;
}

#hotel-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

#hotel-info h2 {
    font-family: 'Quattrocento', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2575fc; /* Highlighted color for the heading */
}

#hotel-info .intro-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

#hotel-info h3 {
    font-family: 'Quattrocento', serif;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2575fc;
}

#hotel-info .attractions-list {
    list-style-type: none;
    padding-left: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 30px;
}

#hotel-info .attractions-list li {
    margin: 10px 0;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

#hotel-info p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hotel-info h2 {
        font-size: 2rem;
    }

    #hotel-info .intro-text {
        font-size: 1rem;
    }

    #hotel-info h3 {
        font-size: 1.5rem;
    }
}


/* Footer Styling */
footer {
    background: linear-gradient(135deg, #000000, #293700);
    color: #d4af37; /* Royal gold */
    padding: 60px 0;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating Glow Effect */
footer::before,
footer::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(209, 185, 125, 0.2);
    border-radius: 50%;
    filter: blur(80px);
}

footer::before {
    top: -80px;
    left: -80px;
}

footer::after {
    bottom: -80px;
    right: -80px;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 280px;
    margin: 20px 0;
}

.footer-section h4 {
    font-family: 'Quattrocento', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #f1d18a;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Elegant Underline */
.footer-section h4::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #d4af37;
    margin: 5px auto;
    border-radius: 2px;
}

/* Footer Links */
.bullet-list {
    list-style-type: disc; /* Adds default bullet points */
    margin-left: 5ch;
    text-align: left;
    padding-left: 20px; /* Adjust spacing */
}

.bullet-list li {
    margin-bottom: 5px; /* Space between links */
}

.bullet-list li a {
    text-decoration: none;
    color: #f1d18a; /* Gold accent */
    font-family: 'Raleway', sans-serif;
    transition: color 0.3s ease-in-out;
}

.bullet-list li a:hover {
    color: #a8c081; /* Softer gold on hover */
}



/* Contact Details */
.footer-section p {
    font-size: 1.1rem;
    margin: 5px 0;
    line-height: 1.7;
}

.footer-section a {
    color: #f1d18a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-section a:hover {
    color: #a8c081;
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #3b4022;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(209, 185, 125, 0.3);
}

.social-icon i {
    font-size: 2rem;
    color: #d4af37;
}

/* Neon Glow Hover Effect */
.social-icon:hover {
    background: #d4af37;
    box-shadow: 0 0 15px rgba(255, 223, 88, 0.6);
    transform: translateY(-4px);
}

.social-icon:hover i {
    color: #1a1f07;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    background: #222a0b;
    color: #d1b97d;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #f1d18a;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: #a8c081;
}

/* Responsive Design */
@media (max-width: 850px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 15px;
    }
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Complimentary Section Styling */
.complimentary-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 40px 20px;
    color: #ffffff;
    text-align: center;
}

.complimentary-section h2 {
    font-family: 'Quattrocento', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds shadow for better readability */
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 5px;
    display: inline-block; /* Makes the background wrap around the text */
}

/* Service Icons Grid */
.service-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Contact Section */
.contact-section {
    background: url('../images/blur-img.jpg') no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
    font-family: 'Quattrocento', serif; /* Keeping it elegant */
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #00c3ff; /* Gold accent */
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-section h2 hr {
    width: 60px;
    height: 3px;
    background-color: #f1d18a;
    border: none;
    margin: 10px auto;
    z-index: 2;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


/* Contact Card */
.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Header with Logo and Background */
.header-card {
    background-color: #1f2407;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.header-card .logo {
    max-width: 120px;
    margin-bottom: 10px;
}

.hotel-name {
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
}

.slogan {
    font-size: 1rem;
    color: #ddd;
    font-style: italic;
    margin-top: 5px;
}

/* Contact Section Styling */
.contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #f1d18a; /* Gold accent */
}

.contact p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact i {
    color: #f1d18a;
    font-size: 1rem;
}

.contact-link {
    color: #f1d18a; /* Softer gold tone */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.contact-link:hover {
    color: #a8c081;
    text-decoration: underline;
}

/* Responsive Fixes */
@media (max-width: 850px) {
    .contact {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .contact p {
        flex-direction: column;
    }

    .contact-link {
        display: block;
        margin-top: 3px;
    }
}

/* Hotel Info Section */
.hotel-info-section {
    position: relative;
    padding: 50px 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background: url('../images/rooms/counter.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    border-radius: 10px; /* Optional rounded corners for a modern look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Adds depth */
    font-family: 'Quattrocento', serif;
}

/* Content container */
.hotel-info-section .container {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for better text contrast */
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Headings and Text */
.hotel-info-section h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.hotel-info-section .intro-text {
    font-family: 'Quattrocento', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e6e6e6;
}

.hotel-info-section .attractions-list {
    font-family: 'Quattrocento', serif;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.hotel-info-section .attractions-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.hotel-info-section .attractions-list li::before {
    position: absolute;
    left: 0;
}

/* Responsiveness */
@media (max-width: 768px) {
    .hotel-info-section h3 {
        font-size: 2rem;
    }

    .hotel-info-section .intro-text {
        font-size: 1rem;
    }

    .hotel-info-section .attractions-list li {
        font-size: 1rem;
    }
}

/* General Section Styling */
#testimonials {
    background: linear-gradient(to right, #1f2407, #637507); /* Blue gradient background */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Quattrocento', serif;
}

#testimonials h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

/* Testimonials Slider Container */
.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.testimonial {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
}

/* Testimonial Item Styling */
.testimonial li {
    background-color: rgba(255, 255, 255, 0.9); /* Light white background */
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    list-style: none; /* Removes default list styling */
    font-family: 'Quattrocento', serif;
}

.testimonial li h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.testimonial li p {
    font-family: 'Quattrocento', serif;
    font-size: 1rem;
    color: #555;
}

.testimonial li p strong {
    font-weight: bold;
    color: #122c02; /* Highlight the key points */
}

/* Slider Navigation Arrows
.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-slider::before {
    left: 10px;
}

.testimonial-slider::after {
    right: 10px;
} */

/* Responsive Design */
@media (max-width: 768px) {
    #testimonials {
        padding: 40px 15px;
    }

    .testimonial {
        flex-direction: column;
        align-items: center;
    }

    .testimonial li {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Scroll Snap for Smooth Scrolling */
.testimonial-slider {
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    position: relative;
}

.testimonial li {
    scroll-snap-align: start;
}

/* Optional: Adding Smooth Transition for Slider */
.testimonial-slider {
    position: relative;
    display: flex;
    gap: 30px;
    overflow-x: hidden;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quattrocento', serif;
    background-color: #f4f4f4;
    color: #ffffff;

}

h2 {
    color: #ffffff;
    text-align: center;
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
}

/* House Rules Section */
.rules-section {
    position: relative;
    padding: 4rem 2rem;
    background: url('../images/rooms/counter.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-align: left;
    z-index: 1;
    overflow: hidden;
    font-family: 'Quattrocento', serif;
}

.rules-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better contrast */
    z-index: -1;
}

.rules-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rules-list-wrapper, .reviews-rating-wrapper {
    background: rgba(0, 0, 0, 0.2); /* Semi-transparent background for readability */
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(50% - 1rem); /* Adjust width for side-by-side layout */
    max-width: 48%;
    font-family: 'Quattrocento', serif;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #ffffff;
}

.rules-list i {
    font-size: 1.5rem;
    color: #637507;
    margin-right: 1rem;
}

.reviews-rating-wrapper .rating-category {
    margin-bottom: 1rem;
}

.reviews-rating-wrapper .progress-bar {
    height: 6px;
    background: #637507;
    border-radius: 3px;
    position: relative;
    margin-top: 0.5rem;
    overflow: hidden;
}

.reviews-rating-wrapper .progress-bar::before {
    content: "";
    display: block;
    height: 100%;
    background: #637507;
    width: var(--progress);
}

.Contact {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #1f2407, #637507);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.Contact:hover {
    background: linear-gradient(135deg, #1f2407, #637507);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rules-container {
        flex-direction: column;
        align-items: center;
    }

    .rules-list-wrapper, .reviews-rating-wrapper {
        max-width: 100%;
    }
}

/* Ratings Section */
.reviews-rating-wrapper {
    flex: 1;
    min-width: 320px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Quattrocento', serif;
}

.reviews-rating-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ratings-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    border-bottom: 3px solid #637507;
    
    padding-bottom: 0.6rem;
    text-align: center;
}

.rating-category {
    font-family: 'Quattrocento', serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #f9f9f9, #f2f2f2);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.rating-category:hover {
    transform: scale(1.02);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rating-category span {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #555;
}

.progress-bar {
    position: relative;
    background-color: #e0e0e0;
    border-radius: 6px;
    height: 14px;
    width: 60%;
    margin-left: 1rem;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress);
    background: linear-gradient(135deg, #4b2313, #92553d);
    border-radius: 6px;
    transition: width 0.4s ease-in-out;
}
/* Contact Button */
.Contact {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg, #1f2407, #637507);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    font-family: ui-sans-serif;
}

.Contact:hover {
    background: linear-gradient(135deg, #4b2313, #92553d);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rules-container {
        flex-direction: column;
    }

    .rules-list-wrapper,
    .reviews-rating-wrapper {
        width: 100%;
    }
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

.contact-section h2 {
    font-family: 'Quattrocento', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1f2407;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.card {
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
}

.card .logo {
    max-width: 120px;
}

.card h1 {
    font-family: 'Quattrocento', serif;
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

.card .hotel-name {
    font-family: 'Quattrocento', serif;
    color: #ffffff;
    font-weight: bold;
}

.card .slogan {
    font-style: italic;
    font-size: 1.2rem;
    color: #e0d7f0;
    font-family: 'Raleway', sans-serif;
}

.card .contact-info {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
    font-family: 'Raleway', sans-serif;
}

/* Map */
.map iframe {
    border-radius: 8px;
    max-width: 100%;
    height: 450px;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #f1d18a;
    padding: 2rem 0;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1rem;
}

footer p {
    font-size: 1rem;
    color: #f1d18a;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #f1d18a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #ffffff; /* Highlight color on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* About Section Styling */
#about {
    background: url("../images/bg-image-leaf.jpg") no-repeat center center / cover;
    padding: 80px 20px;
}

/* About Container */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; /* Better spacing */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.637); /* Light background for readability */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* About Text Styling */
.about-text {
    flex: 1 1 500px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.8;
    color: #3d3d3d;
    background: rgba(255, 255, 255, 0.95); /* Slightly transparent white for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Heading Style */
.about-text h2 {
    font-family: 'Quattrocento', serif;
    font-size: 2.5rem;
    color: #1f2407; /* Dark green */
    margin-bottom: 20px;
}

/* Paragraph Styling */
.about-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Bullet Point List */
.about-text ul {
    list-style: disc inside;
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Image Section */
.about-image {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow for depth */
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.about-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        order: 2;
        margin-right: 0;
    }

    .about-image {
        order: 1;
        margin-bottom: 20px;
    }
}

/* Floating Book Now Button */
.book-now-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    z-index: 9999; /* Ensures it stays above other elements */
}

.book-now-btn i {
    font-size: 1.4rem;
}

.book-now-btn:hover {
    background-color: #1ebe5d; /* Darker WhatsApp Green */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-now-btn {
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

.career-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #f4f4f4, #ffffff);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 40px auto;
    max-width: 1000px;
    font-family: 'Raleway', sans-serif;
}

.career-section h2 {
    font-family: 'Quattrocento', serif;
    font-size: 38px;
    color: #1f2407;
    display: inline-block;
    margin-bottom: 10px;
}

.career-section hr {
    width: 60px;
    height: 4px;
    background: #637507;
    border: none;
    margin: 10px auto 30px;
    border-radius: 2px;
}

.career-container {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.career-container ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.career-container ul li {
    background: #ffffff;
    border-left: 6px solid #637507;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-container ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.career-container a.Contact {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #1f2407, #637507);
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.career-container a.Contact:hover {
    background: #a8c081;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .career-section {
        padding: 60px 15px;
    }

    .career-container ul li {
        padding: 12px 15px;
    }
}