/* General Body and Fonts */
body {
    font-family: 'Barlow Condensed', sans-serif;
    color: #333;
    /* Adjust padding to account for fixed top bar and navbar */
    padding-top: 90px; /* (Utility bar height ~38px + Navbar height ~52px) */
    overflow-x: hidden; /* Prevent horizontal scroll during sidebar transition */
}


/* --- Global Variables --- */
:root {
    /* Your new base colors */
    --primary-rustic: #404040; /* Darker grey to fit neon theme, less rustic brown */
    --secondary-rustic: #606060; /* Medium grey for subtle accents */
    --background-cream: #F0F0F0; /* Keep for other sections if needed, but not directly in footer */
    --text-dark: #333; /* For general body text outside footer (now #333 based on your new root) */
    --text-light: #666; /* For general body text outside footer */

    /* Neon Black Specific Colors (as provided by you, likely for footer/dark sections) */
    --brand-red-neon: #FF3366; /* Brighter, more vivid red for neon effect */
    --footer-bg-neon: #0A0A0A; /* Very deep black background */
    --footer-text-neon: #FFFFFF; /* Crisp white for general text */
    --footer-title-neon: #FFFFFF; /* Pure white for titles */
    --footer-border-neon-subtle: rgba(255, 255, 255, 0.08); /* Very subtle white border */
    --neon-glow-shadow: 0 0 10px var(--brand-red-neon), 0 0 20px var(--brand-red-neon); /* Standard neon glow */

    /* Re-introducing variables needed for the utility bar & navbar (assuming they remain light-themed) */
    --primary-gold: #cda274; /* Re-added: Your previous highlight color */
    --border-light: #e0e0e0; /* Re-added: For light borders */
    --text-muted: #6c757d; /* Re-added: For muted text like contact info */
}

/* TOP UTILITY BAR */
.top-utility-bar {
    font-size: 18px; /* Desktop default font size */
    position: fixed; /* Keep fixed at top on desktop */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040; /* Above main content, below overlay menu */
    background-color: white; /* Ensure background is set */
    border-bottom: 1px solid var(--border-light); /* Bottom border for separation */
    padding-top: 8px; /* Vertical padding */
    padding-bottom: 8px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.top-utility-bar .container {
    display: flex;
    justify-content: space-between; /* Space contact info and social links apart */
    align-items: center; /* Vertically center content */
    gap: 10px;
}

.top-utility-bar .contact-info,
.top-utility-bar .social-partner-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping on desktop to keep elements on one line */
}

.top-utility-bar .contact-info i {
    font-size: 16px;
    color: var(--text-muted); /* Consistent muted color for icon */
    margin-right: 8px; /* Space after the phone icon */
}

/* Adjust margin for phone numbers for better spacing and consistent color */
.top-utility-bar .contact-info span {
    white-space: nowrap; /* Prevent phone numbers from wrapping */
    color: var(--text-muted); /* Consistent muted color for numbers */
}
.top-utility-bar .contact-info span.me-3 {
    margin-right: 15px !important; /* Standard Bootstrap spacing or adjust as needed */
}


.top-utility-bar .social-partner-links a {
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex; /* Ensure flex for image/icon alignment */
    align-items: center;
    text-decoration: none; /* Remove underline from links */
    color: var(--text-dark); /* Default dark text color for links */

    /* --- Your existing red border for individual links on desktop --- */
    border-right: 2px solid red;
    margin-right: 15px; /* Spacing between bordered links */
    padding-right: 15px; /* Padding inside the link before its border */
}


/* Remove border from the last link in the group */
.top-utility-bar .social-partner-links a:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0; /* Remove padding for the last link as well */
}

/* Left border for the entire social-partner-links group (desktop only) */
.top-utility-bar .social-partner-links {
    border-left: 1px solid var(--border-light); /* A light gray border as a separator */
    padding-left: 20px; /* Space between the border and the links */
    margin-left: 20px; /* Space between contact info and the border */
}

/* Ensure the image heights are consistent and aligned */
.top-utility-bar .social-partner-links img {
    height: 1.2em; /* Consistent image height */
    vertical-align: middle; /* Align icons vertically with text */
    flex-shrink: 0; /* Prevent images from shrinking */
    margin-right: 5px; /* Slight margin after image for text */
}

/* FIXED MAIN NAVBAR */
.navbar {
    position: fixed; /* Keep fixed at top */
    width: 100%;
    top: 38px; /* Position below the top utility bar (adjust if utility bar height changes) */
    left: 0;
    z-index: 1030; /* Below sidebar, above main content */
    background-color: #f8f9fa; /* Match Bootstrap bg-light */
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
}
.navbar .container {
    display: flex;
    justify-content: space-between; /* Change to space-between for toggler on right, logo centered */
    align-items: center;
    position: relative; /* Needed for absolute positioning of toggler if used */
}

/* Navbar Logos */
.navbar-brand { /* Added this for easier targeting of the logo */
    position: absolute; /* Position logo absolutely on desktop */
    left: 50%; /* Start at 50% from the left */
    transform: translateX(-50%); /* Pull back by half its width to truly center */
    width: auto; /* Let content define width */
    padding: 0; /* Remove any default padding that might affect centering */
    margin: 0; /* Remove any default margin */
    z-index: 1035; /* Make sure it's above other elements if needed */
}

.navbar-brand .navbar-logo {
    height: 70px; /* Adjust logo size for desktop */
    object-fit: contain;
}
.navbar-logo-mobile { /* This class should be applied to the logo shown on mobile */
    height: 50px !important; /* Smaller for mobile */
    object-fit: contain;
}

/* Desktop Navigation Links */
.navbar-nav .nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    padding: 30px 15px !important;
    color: var(--text-dark) !important; /* Dark text for light background navbar */
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important; /* Highlight color on active/hover */
}

/* Navbar Toggler (Hamburger Icon) for mobile */
.navbar-toggler {
    margin-left: auto; /* Push the toggler to the right on desktop (when collapsed) */
    border: 1px solid #ccc; /* Add a subtle border */
    padding: 8px 10px; /* Adjust padding */
    border-radius: 4px; /* Slightly rounded corners */
    cursor: pointer;
    z-index: 1035; /* Ensure it's clickable and visible */
}

/* OVERLAY SIDEBAR MENU STYLES FOR MOBILE */
#sidebarMenu {
    position: fixed;
    top: 0;
    right: 0; /* Slides in from right */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1); /* Solid black overlay */
    z-index: 1050; /* Higher than fixed navbar and utility bar */
    transform: translateX(100%); /* Hidden initially, slides in from right */
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ALIGN ITEMS TO THE START (TOP) OF THE FLEX CONTAINER */
    align-items: center; /* Center content horizontally for menu items, overridden for logo */
    text-align: center;
    padding-top: 20px; /* Give some space from the very top */
    overflow-y: auto; /* Enable scrolling if content overflows */
    box-sizing: border-box; /* Ensure padding is included in width/height */
}

#sidebarMenu.active {
    transform: translateX(0); /* Slide in when active */
}

#sidebarMenu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px; /* Position to the top-right corner */
    left: auto; /* Ensure it's not affected by previous left property */
    font-size: 30px;
    color: var(--primary-gold); /* Golden color */
    cursor: pointer;
    z-index: 1060; /* Ensure it's clickable */
    transition: transform 0.3s ease; /* Added for subtle hover effect */
}

#sidebarMenu .close-btn:hover {
    transform: scale(1.1); /* Slight enlarge on hover */
}

#sidebarMenu .navbar-brand { /* Styling for logo inside sidebar */
    position: relative; /* Reset position for inside sidebar */
    left: auto;
    transform: none; /* Reset transform for inside sidebar */
    margin-bottom: 30px; /* Space below logo */
    padding-top: 40px; /* Add padding to push logo down, away from close button */
    max-width: 90%; /* Prevent it from stretching too wide */
    align-self: flex-start; /* Align logo to the start (left) */
    margin-left: 20px; /* Add a left margin for alignment */
    text-align: left; /* Ensure logo image within the brand aligns left */
}

#sidebarMenu .navbar-brand img {
    height: 80px; /* Adjust logo size within the sidebar */
    max-width: 100%; /* Ensure logo fits within its parent */
    object-fit: contain;
}

#sidebarMenu .navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Ensure ul takes full width */
    max-width: 400px; /* Max width for menu items to prevent stretching on large screens */
}

#sidebarMenu .navbar-nav .nav-item {
    margin-bottom: 15px; /* Spacing between links */
}

#sidebarMenu .navbar-nav .nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 28px; /* Larger font for overlay links */
    text-transform: uppercase;
    color: #fff !important; /* White text for overlay links */
    transition: color 0.3s ease, transform 0.2s ease; /* Added transform for hover effect */
    display: block; /* Make links block level for full clickable area */
    padding: 10px 0;
    letter-spacing: 1px; /* Slightly increased letter spacing for impact */
}

#sidebarMenu .navbar-nav .nav-link:hover,
#sidebarMenu .navbar-nav .nav-link.active {
    color: var(--primary-gold) !important; /* Highlight color on hover/active */
    transform: translateX(5px); /* Subtle slide effect on hover */
}


/* RESPONSIVE ADJUSTMENTS */

/* Desktop Specifics (min-width: 992px) - Hide mobile-only elements */
@media (min-width: 992px) {
    #sidebarMenu {
        display: none; /* Hide the overlay sidebar entirely on desktop */
    }
    .navbar-toggler { /* Hide the toggler button on desktop */
        display: none;
    }
    /* Ensure main desktop nav links are shown */
    .navbar-collapse { /* Target Bootstrap's collapse class */
        display: flex !important; /* Force display flex for desktop */
        flex-basis: auto; /* Reset flex basis */
    }
    /* On desktop, restore original navbar-brand positioning */
    .navbar-brand .navbar-logo-mobile {
        display: none; /* Hide mobile logo on desktop */
    }
    .navbar-brand .navbar-logo {
        display: block; /* Ensure desktop logo is visible */
    }
}


/* Adjustments for screens between 768px and 991.98px (e.g., Tablets in Portrait) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Main Navbar adjustments */
    .navbar-brand .navbar-logo { /* Desktop logo is default */
        height: 60px; /* Slightly smaller logo for tablets */
    }
    .navbar-nav .nav-link {
        font-size: 16px; /* Slightly smaller font for tablet nav links */
        padding: 8px 12px !important;
    }

    /* Sidebar Menu adjustments */
    #sidebarMenu {
        width: 60%; /* Make sidebar a bit narrower on larger tablets */
    }
    #sidebarMenu .close-btn {
        font-size: 35px; /* Slightly larger close button */
        top: 30px;
        right: 30px; /* Adjust position for tablets */
    }
    #sidebarMenu .navbar-brand {
        padding-top: 50px; /* Adjust padding for tablets */
        margin-left: 30px; /* Adjust left margin for tablets */
    }
    #sidebarMenu .navbar-brand img {
        height: 90px;
    }
    #sidebarMenu .navbar-nav .nav-link {
        font-size: 32px; /* Larger links for tablets */
        padding: 12px 0;
    }
}

/* Adjustments for screens smaller than 768px (e.g., Mobile Phones) */
@media (max-width: 767.98px) {
    /* Top Utility Bar */
    .top-utility-bar {
        font-size: 13px; /* Slightly smaller font for better mobile fit */
        padding: 8px 15px; /* Adjust padding for mobile to prevent content touching edges */
        position: static; /* Make it static on mobile so it scrolls with content */
    }
    .top-utility-bar .container {
        flex-direction: column; /* Stack contact info and social links vertically */
        align-items: center; /* **THIS IS THE CHANGE: Center content horizontally** */
        gap: 10px; /* Add a gap between stacked flex items (contact info and social links) */
    }
    .top-utility-bar .contact-info {
        width: 100%; /* Take full width */
        justify-content: center; /* **THIS IS AN ADDITIONAL CHANGE: Center contact info items** */
    }
    .top-utility-bar .contact-info i {
        font-size: 14px; /* Adjust icon size for mobile */
    }

    /* Remove borders and adjust spacing for the entire social-partner-links group on mobile */
    .top-utility-bar .social-partner-links {
        border-left: none; /* Remove the left separator border on mobile */
        padding-left: 0;
        margin-left: 0;
        border-right: none; /* Ensure no residual right border from previous attempts */
        flex-wrap: wrap; /* Allow the partner links to wrap to the next line if needed */
        width: 100%; /* Take full width */
        justify-content: center; /* **THIS IS AN ADDITIONAL CHANGE: Center partner links items** */
        gap: 8px; /* Add gap between wrapped items for better spacing */
    }

    /* Adjust individual link styles for mobile (image links) */
    .top-utility-bar .social-partner-links a {
        font-size: 13px; /* Adjust font size for mobile links */
        border-right: none; /* REMOVE RED BORDER FROM INDIVIDUAL LINKS ON MOBILE */
        margin-right: 0; /* Use gap on parent instead of margin-right */
        padding-right: 0; /* Remove padding from link borders */
        padding: 0; /* Reset general padding for these links */
        border: none; /* Ensure no default border on image links */
        background-color: transparent;
        color: var(--text-dark); /* Black text for default links */
    }
    /* Specific styles for the "Offers" button (.btn) within social-partner-links on mobile */
    .top-utility-bar .social-partner-links a.btn {
        background-color: transparent;
        color: var(--text-dark); /* Black text for the button */
        border: 1px solid var(--text-dark); /* Dark border for the button */
        border-radius: .25rem; /* Small border-radius for the button */
        padding: .1rem .5rem; /* Keep original small padding for the button */
        font-size: .75rem; /* Keep original small font size for the button */
    }

    .top-utility-bar .social-partner-links img {
        height: 1em; /* Slightly smaller image size for mobile */
        margin-right: 4px; /* Smaller margin for images on mobile */
    }

    /* Main Navbar in Mobile View */
    .navbar {
        top: 0; /* Navbar should be at the very top when utility bar is static */
        padding: 5px 15px; /* Add some horizontal padding for the content */
    }
    .navbar .container {
        justify-content: space-between; /* Ensure space-between is active */
    }
    .navbar-brand {
        position: static; /* Make logo static again for mobile to flow with flex */
        transform: none; /* Remove transform */
        flex-grow: 1; /* Allow logo to take up available space */
        text-align: center; /* Center the logo within its flex space */
    }
    .navbar-brand .navbar-logo {
        display: none; /* Hide desktop logo on mobile */
    }
    .navbar-brand .navbar-logo-mobile {
        display: block; /* Show mobile logo */
        margin: 0 auto; /* Center it horizontally */
    }
    .navbar-toggler {
        order: 2; /* Place toggler after the brand visually */
        margin-left: 0; /* Remove auto margin */
        margin-right: 0; /* No explicit right margin */
    }
    .navbar-collapse { /* Hide the desktop nav links entirely on mobile */
        display: none !important;
    }

    /* Sidebar Menu adjustments for smallest screens */
    #sidebarMenu {
        padding: 15px; /* Reduce overall padding for smaller screens */
    }
    #sidebarMenu .close-btn {
        font-size: 28px; /* Slightly smaller close button for phones */
        top: 15px;
        right: 15px; /* Adjust position for phones */
    }
    #sidebarMenu .navbar-brand {
        margin-bottom: 20px; /* Reduce margin below logo */
        padding-top: 30px; /* Adjust padding for phones */
        margin-left: 15px; /* Adjust left margin for phones */
    }
    #sidebarMenu .navbar-brand img {
        height: 70px; /* Smaller logo for phones */
    }
    #sidebarMenu .navbar-nav .nav-item {
        margin-bottom: 10px; /* Reduce spacing between links */
    }
    #sidebarMenu .navbar-nav .nav-link {
        font-size: 24px; /* Adjust font size for mobile phones */
        padding: 8px 0;
    }
}
/* ======= NEW CSS FOR IMAGE GALLERY AND SCROLL BUTTON ======= */

/* Fix the height of the carousel items and use object-fit for images */
.about-gallery-carousel .item {
    height: 550px; /* Set a fixed height for consistency on larger screens */
    overflow: hidden; /* Hide parts of the image that overflow */
}

.about-gallery-carousel .item img {
    height: 100%; /* Make the image take up the full height of its container */
    width: 100%; /* Make the image take up the full width */
    object-fit: cover; /* This is the key property: it crops the image to fill the container without distortion */
    object-position: center; /* Center the image within the container */
}

/* Media Queries for Responsive Heights */
@media (max-width: 991.98px) {
    .about-gallery-carousel .item {
        height: 300px; /* Adjust height for tablet screens */
    }
}

@media (max-width: 767.98px) {
    .about-gallery-carousel .item {
        height: 250px; /* Adjust height for smaller mobile screens */
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999; /* Ensure it's on top of other elements */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #333; /* Dark color to match footer and design */
    color: #fff;
    border-radius: 10%;
    text-decoration: none;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.scroll-to-top-btn:hover {
    background-color: #555;
    transform: translateY(0);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

    /* To prevent background scroll when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
    }

    /* Carousel/Slider specific styles */


/* Booking Section */
/* Booking Section */
.booking-section {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Pull the section box up over the slider */
}

/* Booking form container */
.booking-section .container {
    background-color: #fff; /* White background */
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15); /* Shadow */
    padding: 0;
    max-width: 1200px; /* Example max-width, adjust based on your layout */
}

/* Style for the form and its children */
.booking-section #bookingForm {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
    align-items: stretch; /* Make items fill height */
}

/* Style for individual input groups */
.booking-input-group {
    position: relative; /* IMPORTANT: This is crucial for absolute positioning of children */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 25px;
    border-right: 1px solid #eee; /* Separator line on desktop */
    flex-grow: 1; /* Allows columns to grow */
    text-align: left;
}

/* Remove the right border from the button container and the last input group on desktop */
.booking-section #bookingForm > div:last-of-type,
.booking-section #bookingForm .booking-input-group:last-of-type {
    border-right: none;
}

.booking-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.booking-value-display {
    font-family: 'Gilda Display', serif;
    font-size: 40px;
    margin-top: 30px;
    color: #333;
    /* cursor: pointer; -- REMOVED: Cursor should be on the input */
    width: 100%;
    line-height: 1.2;
    padding-right: 40px;
    pointer-events: none; /* IMPORTANT: Let clicks pass through to the element underneath */
    z-index: 0; /* Keep it below the input */
}

/* Icons next to the display value */
.booking-input-group .fas {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #b08d62; /* Golden color for icons */
    pointer-events: none; /* IMPORTANT: Let clicks pass through to the element underneath */
    font-size: 16px;
    z-index: 0; /* Keep it below the input */
}


/* Hidden input/select to capture values */
.booking-date-input,
.booking-select {
    position: absolute; /* Position absolutely within the relative parent */
    top: 0;
    left: 0;
    width: 100%; /* Make it cover the entire booking-input-group */
    height: 100%; /* Make it cover the entire booking-input-group */
    opacity: 0; /* Keep it completely invisible */
    z-index: 2; /* IMPORTANT: Place it on top of everything else in the group */
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer; /* IMPORTANT: Show a pointer cursor to indicate clickability */
}

/* Crucial for making the native calendar picker clickable when the input is covered */
input[type="date"]::-webkit-calendar-picker-indicator {
    /* Remove display: none; */
    /* Remove -webkit-appearance: none; if you want the native icon to function */
    opacity: 0; /* Still make it visually transparent, but not completely hidden */
    pointer-events: auto; /* Allow clicks on this invisible indicator */
    width: 100%; /* Make its clickable area cover the input's width */
    height: 100%; /* Make its clickable area cover the input's height */
    cursor: pointer; /* Ensure the cursor changes */
}

/* For Firefox, the indicator works differently. This generally handles it. */
input[type="date"] {
    -moz-appearance: textfield; /* Keeps the input as a text field in Firefox */
    cursor: pointer; /* Ensure cursor is pointer for the input itself */
}

/* Check Availability Button Styles */
.booking-submit-btn {
    background-color: #a4845b;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 25px;
    border-radius: 0 5px 5px 0; /* Rounded right corners for the desktop layout */
    height: 130%; /* This makes the button fill the full height of the form container on desktop */
    border: none;
    width: 100%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-submit-btn:hover {
    background-color: #8d704f;
    color: #fff;
}
#bookingMessage {
    padding-top: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    color: #555;
}

/* Styles for the simple list of available rooms */
.available-rooms-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 20px auto; /* Center the list */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 10px; /* Space between list items */
    max-width: 400px; /* Constrain width for better readability */

    /* ----- ADD THESE STYLES FOR SCROLLING ----- */
    max-height: 300px; /* Set a maximum height for the list (adjust as needed) */
    overflow-y: auto; /* Enable vertical scrolling if content exceeds max-height */
    border: 1px solid #e9e9e9; /* Optional: add a subtle border to the scrollable area */
    padding-right: 5px; /* Optional: add some padding for the scrollbar on the right */
    box-sizing: border-box; /* Include padding in the element's total width and height */
    /* ------------------------------------------- */
}

.available-rooms-list li {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 20px; /* Padding inside each list item */
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: left; /* Align text to the left within each item */
    transition: background-color 0.3s ease, border-color 0.3s ease;

    /* Add flexbox to align name and price on the same line */
    display: flex;
    justify-content: space-between; /* Puts space between room name and price */
    align-items: center; /* Vertically center them */
}

.available-rooms-list li:hover {
    background-color: #f0f0f0; /* Light highlight on hover */
    border-color: var(--primary-gold); /* Highlight border on hover */
}

.available-rooms-list .room-name-link {
    text-decoration: none; /* Remove underline */
    color: var(--text-dark); /* Inherit or set your desired text color */
    font-weight: 500; /* Inherit font weight from parent or set specifically */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.available-rooms-list .room-name-link:hover {
    color: var(--primary-gold); /* Change color on hover, use your brand's highlight color */
}

.available-rooms-list .room-price {
    font-weight: 600; /* Make price a bit bolder */
    color: var(--primary-gold); /* Use your primary gold color for price */
    margin-left: 15px; /* Add some space between room name and price */
    white-space: nowrap; /* Prevent price from wrapping */
}


/* --- Refined Responsive adjustments --- */
@media (max-width: 991.98px) {
    /* Adjust top margin for stacked mobile layout */
    .booking-section {
        margin-top: -60px; 
    }

    /* Adjust container width for smaller screens */
    .booking-section .container {
        max-width: 95%; /* Use a slightly larger percentage to fill more space */
    }
    
    /* Key change: Force form items to stack vertically on all mobile devices */
    .booking-section #bookingForm {
        flex-direction: column;
        flex-wrap: wrap; /* Allow wrapping to prevent overflow */
    }

    /* Style for each stacked input group */
    .booking-input-group {
        border-right: none; /* Remove right border for stacked items */
        border-bottom: 1px solid #eee; /* Add a bottom border as a separator */
        width: 100%; /* Ensure full width */
        padding: 15px 20px; /* Smaller padding for mobile */
    }

    /* Remove the bottom border from the very last item in the flex container (the button's div) */
    .booking-section #bookingForm > div:last-child {
        border-bottom: none;
    }

    /* Adjust button styling for mobile (full width, rounded bottom corners) */
    .booking-submit-btn {
        /* On mobile, the button stacks, so its height should be determined by padding, not by its container. */
        height: auto; /* This is the key change: lets the height adjust to the content */
        border-radius: 0 0 5px 5px; /* Rounded bottom corners for the stacked mobile layout */
        padding: 15px 20px; /* Adjust padding for a more compact mobile button */
    }
    
    /* Reduce font size for displays on smaller screens */
    .booking-value-display {
        font-size: 24px;
    }
}

    /*==============================
        About Section
    ============================*/

.about-section {
    background-color: #fff;
    margin-top: 80px;
}

.about-section .title-small {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #888;
    letter-spacing: 5px;
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
}

.about-section .title-small::before {
    
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.about-section .title-large {
    font-family: "Gilda Display", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.about-section .about-description {
    max-width: 900px;
    color: #666;
    font-size: 20px;
    line-height: 1.7;
 
}

.about-gallery-carousel .item img {
   /* You can change this value to your desired height */
    width: 93%;
    height: 115%;
    object-fit: cover; /* Ensures images fill the space without stretching */
    border-radius: 8px; /* Added from your previous CSS */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Added from your previous CSS */
}

/* Owl Carousel Custom Navigation Styles */
.about-gallery-carousel.owl-carousel {
    position: relative;
    z-index: 1;
}

.about-gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* Allows clicks to pass through the container */
    padding: 0 20px; /* Add some padding to prevent buttons from touching edges on mobile */
    box-sizing: border-box;
}

.about-gallery-carousel .owl-nav button.owl-prev,
.about-gallery-carousel .owl-nav button.owl-next {
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    pointer-events: all; /* Re-enable clicks for the buttons */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-gallery-carousel .owl-nav button.owl-prev:hover,
.about-gallery-carousel .owl-nav button.owl-next:hover {
    background: #fff !important;
    color: #000;
}

/* Customize arrow icons */
.about-gallery-carousel .owl-nav button.owl-prev span,
.about-gallery-carousel .owl-nav button.owl-next span {
    font-size: 30px; /* Increase icon size */
    line-height: 1; /* Adjust line height to center */
}

/* Responsive styles for the about section */
@media (max-width: 991.98px) {
    .about-section .title-large {
        font-size: 40px;
    }
    .about-gallery-carousel .owl-nav {
        /* You can hide nav arrows on smaller screens if you prefer */
        /* display: none; */
    }
}

@media (max-width: 767.98px) {
    .about-section .title-large {
        font-size: 36px;
    }

    .about-section .title-small::before {
        left: -25px;
        width: 20px;
        height: 20px;
    }

    .about-section .about-description {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .about-section .title-large {
        font-size: 30px;
    }
    .about-section .title-small {
        font-size: 16px;
        letter-spacing: 3px;
    }
}



/* 1. The Outer Container (sets up the 3D space) */
/* Apply this to your card elements (e.g., a room card in your gallery) */
.flip-card-container {
    background-color: transparent;
    width: 350px;
    height: 450px;
    perspective: 1000px;
    border-radius: 10px;
    margin-top: 50px;
}

.owl-carousel .item {
    display: flex;
    height: 600px;
    justify-content: center; /* Center the card in its slot */
}

.card-footer-actions {
    padding: 15px; /* Add some padding around the button for visual spacing */
    text-align: center; /* THIS IS WHAT CENTERS YOUR INLINE-BLOCK BUTTON */

}



.card-row-container {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap to the next line on smaller screens */
    justify-content: center; /* Center the cards in the container */
    gap: 30px; /* Adds a gap between cards */
    padding: 20px;
}



/* Top Rooms & Suites */

.rooms-section {
    background-color: var(--light-bg); /* Use a light background for the section */
    padding: 80px 0; /* Add padding to the section */
}

.section-header {
    margin-bottom: 50px;
}

.section-title .subtitle {
    font-size: 0.9rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: var(--font-fancy);
    color: var(--heading-color);
    margin-bottom: 0;
}

.room-carousel-new .owl-stage-outer {
    padding-bottom: 20px; /* Give some space for shadow */
}

.room-card-new {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 480px; /* Ensure cards have similar height */
    display: flex;
    flex-direction: column;
}

.room-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.room-img-fixed {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: transform 0.5s ease;
}


.room-card-new:hover .room-image-wrapper img {
    transform: scale(1.05);
}



.room-content-new {
    flex-grow: 1; /* Allows content to take up remaining space */
    display: flex;
    flex-direction: column;
}

.room-title-new {
    font-family: var(--font-fancy);
    font-size: 1.6rem;
    color: var(--heading-color);
    line-height: 1.2;
}

.room-price-new {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-gold);
    white-space: nowrap; /* Prevent price from wrapping */
}

.room-price-new .old-price-new {
    text-decoration: line-through;
    color: var(--text-color-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.room-price-new small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.room-description-new {
    font-size: 0.8rem !important;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: auto; /* Pushes button to bottom */
}

.room-features-new {
    display: flex;
    flex-wrap: wrap; /* Allow features to wrap to next line */
    gap: 10px; /* Space between feature items */
    margin-top: 15px;
    margin-bottom: 25px;
}

.feature-item-new {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-color);
    background-color: var(--light-bg);
    padding: 6px 12px;
    border-radius: 5px;
}

.feature-item-new i {
    color: var(--primary-gold);
    margin-right: 6px;
    font-size: 0.85rem;
}

.book-now-btn-new {
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.book-now-btn-new:hover {
    background-color: var(--dark-gold); /* A slightly darker gold on hover */
    color: var(--white);
    transform: translateY(-2px);
}

.book-now-btn-new .arrow-icon {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.book-now-btn-new:hover .arrow-icon {
    transform: translateX(3px);
}

/* General button style for "Explore All Rooms" */
.btn-outline-dark {
    border-color: var(--border-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}
.btn-outline-dark:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
}

/* Owl Carousel Custom Navigation (Optional, if you want different arrows) */
.room-carousel-new .owl-nav button {
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}
.room-carousel-new .owl-nav button:hover {
    background: var(--primary-gold) !important;
}
.room-carousel-new .owl-nav button.owl-prev {
    left: -20px; /* Adjust as needed */
}
.room-carousel-new .owl-nav button.owl-next {
    right: -20px; /* Adjust as needed */
}
.room-carousel-new .owl-nav button i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    .room-card-new {
        min-height: auto; /* Allow height to adjust */
    }
    .room-price-new {
        font-size: 1.1rem;
    }
    .room-price-new .old-price-new {
        font-size: 0.8rem;
    }
    .room-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    .book-now-btn-new {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .room-content-new {
        padding: 15px;
    }
    .room-title-new {
        font-size: 1.4rem;
    }
    .room-price-new {
        font-size: 1rem;
    }
    .room-features-new {
        flex-direction: column; /* Stack features on very small screens */
    }
}

/* Updated CSS for the button itself */
.see-all-btn {
    background-color: #c4002f;
    color: white;
    padding: 16px 25px;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 0;
    display: inline-block;
}

.see-all-btn:hover {
    background-color: #a60028;
}





/* --- ===========================================
                ==============---====================== ============
                ****** Room Details Page  (from image_d1e53c.png)****
                ====================================================
                ====================================================
                ========================================================*/
.room-details-section {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    /* I've changed 'align-items: space-between' to 'center' to vertically align the text and image sections */
    align-items: center;
    gap: 80px;
}

.details-content {
    flex: 1;
}

.details-content h2 {
    font-size: 60px;
    margin: 0 0 20px;
    color: #333;
}

.details-content p {
    line-height: 1.6;
    color: #666;
    font-size: 22px;
    letter-spacing: 0.5px;
    text-align: justify;
}

.check-times {
    display: flex;
    gap: 40px;
    margin-top:70px;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #c4002f; /* The red color used for highlights */
}

.time-info i {
    font-size: 35px;
}

.time-details {
    display: flex;
    flex-direction: column;
}

.time-info .label {
    font-size: 20px;
    text-transform: uppercase;
    color: #888;
}

.time-info .time {
    font-size: 26px;
    color: #333;
}

/* --- Mini-slider specific styles integrated into the .details-image section --- */
.details-image {
    flex: 1;
    position: relative; /* This is crucial for positioning the navigation arrows and dots */
}

/* This new container will hold the slides and have the box-shadow and border-radius */
.mini-slider-container {
    position: relative; /* Needed for absolute positioning of slides */
    width: 100%;
    height: 350px; /* Set a fixed height for the slider container */
    overflow: hidden; /* Hide slides that are out of view */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mini-slide {
    position: absolute; /* Stack slides on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
    /* Ensure images fill the slide space */
    display: flex; /* Using flex to center image if needed, or simply object-fit */
    justify-content: center;
    align-items: center;
}

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire slide area without distortion */
}

/* Slider navigation buttons (arrows) */
.slider-navigation button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.slider-navigation button:hover {
    opacity: 1;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

/* Slider navigation dots */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
    background-color: #c4002f; /* Your primary highlight color */
}

/* This rule moves slides out of view initially */
.mini-slide:not(.active) {
    transform: translateX(100%);
}

/* --- Responsive adjustments for smaller screens --- */
@media (max-width: 1024px) {
    .details-content h2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .room-details-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .details-image {
        /* Set max-width and margin for centering the image */
        max-width: 80%;
        margin: 0 auto;
    }
    
    .details-content {
        order: 2; /* Puts content below the image on mobile */
    }

    .details-image {
        order: 1; /* Puts image first on mobile */
    }
    
    .check-times {
        justify-content: center;
    }
    
    .time-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .time-info i {
        font-size: 30px;
    }
    
    .time-details {
        text-align: center;
        align-items: center;
    }
}


/* A new breakpoint for smaller mobile phones */
@media (max-width: 480px) {
    .details-content h2 {
        font-size: 40px; /* Smaller heading for smaller screens */
    }
    .details-content p {
        font-size: 18px; /* More readable font size on small phones */
    }
    .check-times {
        /* This stacks the two time-info blocks vertically for very small screens */
        flex-direction: column;
        gap: 20px;
        margin-top: 50px;
    }
    .time-info {
        /* Keep icon and text side-by-side within each time-info block */
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
}


/* =======room-amenities-section================ */


/* --- Animation Styles --- */
/* Initial state: hidden and slightly off-screen to the left */
.js-animate-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* transition-delay will be added by JavaScript for a staggered effect */
}

/* Final state: visible and in place */
.js-animate-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Your existing CSS for the amenity section below */

.room-amenities-section {
    padding: 30px 0;
    text-align: center;
}

.section-title-sub {
    font-size: 28px;
    text-transform: uppercase;
    color: #c4002f; /* Adjust this color to match your brand */
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-weight: normal;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.amenity-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;

}

.amenity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.amenity-card h4 {
    font-family: 'Barlow Condensed'; /* Use the font from your provided HTML head */
    font-size: 35px;
    margin: 0 0 15px;
    font-weight: 500;
}

.amenity-card p {
    font-size: 24px;
    line-height: 1.4;
    color: #555;
    text-align: justify;
    min-height: 120px; /* Ensures consistent height for card paragraphs */
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    color: #555;
    font-weight: bold;
}

.amenity-item i {
    color: #c4002f;
}

.amenity-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-amenity {
    background-color: white;
    color: #c4002f;
    border: 1px solid #c4002f;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-amenity:hover {
    background-color: #c4002f;
    color: white;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .amenity-grid {
        grid-template-columns: 1fr;
    }
    .amenity-card p {
        min-height: auto; /* Allow paragraphs to auto-adjust height on smaller screens */
    }
}



@media (max-width: 768px) {
    .amenity-card img {
        height: 200px; /* Slightly reduce image height on tablets */
    }
}

/* A new breakpoint for smaller mobile phones */
@media (max-width: 480px) {
    .amenity-card h4 {
        font-size: 24px;
    }
    .amenity-card p {
        font-size: 16px; /* A more readable font size for small phones */
    }
    .amenity-item {
        font-size: 18px; /* Adjust size for smaller screens */
    }
    .amenity-card img {
        height: 180px; /* Reduce image height further */
    }
    .amenity-actions {
        gap: 5px; /* Reduce gap between buttons */
    }
    .btn-amenity {
        font-size: 16px; /* Adjust button text size */
        padding: 10px 15px;
    }
}

/* --- Collapsible Amenities Toggle --- */
.amenity-toggle {
    display: block;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #c4002f;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    padding-right: 20px; /* Space for the chevron icon */
    transition: color 0.3s ease;
}

.amenity-toggle:hover {
    color: #a00025; /* Darker red on hover */
}

/* Style and rotate the chevron icon */
.amenity-toggle i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.amenity-toggle.collapsed i {
    transform: translateY(-50%) rotate(0deg);
}

.amenity-toggle:not(.collapsed) i {
    transform: translateY(-50%) rotate(180deg);
}

/* --- Collapsible Amenities List --- */
.collapsible-title {
    font-size: 16px;
    text-transform: uppercase;
    color: #c4002f;
    font-family: 'Barlow Condensed', sans-serif;
    margin-bottom: 15px;
    font-weight: 600;
}

.collapsible-amenity-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for the list */
    gap: 15px 10px;
    text-align: left;
}

.collapsible-amenity-list li {
    font-size: 20px;
    color: #555;
    display: flex;
    align-items: center;
}

.collapsible-amenity-list li i {
    color: #c4002f;
    margin-right: 18px;
    width: 15px; /* Ensures consistent alignment */
    text-align: center;
}

/* Responsive adjustment for a single column on mobile */
@media (max-width: 576px) {
    .collapsible-amenity-list {
        grid-template-columns: 1fr;
    }
}




/* --- Policies Section Styling --- */
.policies-section {
    background-color: #fcfcfc; /* A light, clean background color */
    color: #495057;
}

.policies-accordion {
    max-width: 600px;
    margin: auto;
}

.policies-item {
    padding: 0;
}

.policies-button {
    font-family: 'Gilda Display', serif; /* Or another serif font */
    font-size: 28px;
    color: #333;
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: left;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for the chevron icon */
    font-weight: 400;
}

/* Override Bootstrap's default button styles */
.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #333;
    box-shadow: none;
}

/* Style for the chevron icon */
.accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078"; /* FontAwesome chevron-down icon */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease-in-out;
    background-image: none; /* Remove Bootstrap's default chevron image */
    font-size: 18px;
}



.accordion-button.collapsed::after {
    transform: translateY(-50%) rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Accordion body content */
.policies-body {
    padding: 20px 0 0 0;
}

.policy-list {
    list-style-type: none;
    padding-left: 0;
    line-height: 1.8;
}

.policy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.policy-list li::before {
    content: "\2022"; /* Unicode for a bullet point */
    color: #c4002f; /* Adjust to your brand color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.policy-title {
    font-weight: bold;
}

.sub-policy-list {
    list-style-type: none;
    padding-left: 20px;
    line-height: 1.6;
}

.sub-policy-list li {
    padding-left: 15px;
}

.sub-policy-list li::before {
    content: "\2022";
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policies-button {
        font-size: 24px;
        margin-bottom: 20px;
    }
}




   /* Contact Page  */
/* Styling for the banner section */
.contact-banner {
    position: relative;
    height: 450px; /* Set a fixed height for the container */
    overflow: hidden; /* Ensures the image doesn't overflow */

    /* The key change: Use flexbox to center the content div */
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center;   /* Centers content vertically */
    
    /* Remove padding or left-alignment properties if you had them */
    padding: 0;
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}



/* Add a dark overlay on the background image for better text readability */
.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 2;
}

/* Container for the text content, positioned above the overlay */
.banner-content {
    position: relative;
    z-index: 3; /* Ensures the text is visible on top */
    text-align: left;
}

/* Style for the "GET IN TOUCH" subtitle */
.banner-subtitle {
    font-family: 'Gilda Display', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    color: #f5f5f5;
}

/* Style for the "Contact Us" title */
.banner-title {
    font-family: 'Gilda Display', serif;
    font-size: 60px;
    font-weight: 400;
    margin: 10px 0 0;
    color: #fff; /* Ensure text color is white */
}

/* Main container for the two columns */
.contact-section-container {
    display: flex;
    gap: 80px; /* Space between the two columns */
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    background-color: #fcfcfc;
}

/* Styles for both columns */
.contact-info-column,
.contact-form-column {
    flex: 1; /* Makes both columns take up equal space */
}

/* Styles for headings in both columns */
.contact-info-column h2,
.contact-form-column h2 {
    font-family: 'Gilda Display', serif; /* A classic serif font */
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #333;
}

/* Paragraph style in the info column */
.contact-info-column p {
    font-size: 20px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

/* Styling for a single contact detail item (phone, email, address) */
.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 24px;
    color: #c4002f; /* Icon color from your other CSS */
    margin-right: 20px;
    width: 30px; /* Fixed width for icon alignment */
    text-align: center;
    line-height: 1.2;
}

.contact-detail .label {
    display: block;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: #888;
}

.contact-detail .value {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-top: 5px;
}

/* Styles for form rows and inputs */
.form-row,
.form-row-split {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1; /* Makes form groups take up equal space in the row */
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #c4002f;
}

textarea {
    resize: vertical; /* Allow vertical resizing */
}

/* Submit button style */
button[type="submit"] {
    background-color: #bfa17b; /* A brown/beige color from your image */
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #a38965; /* Darker shade on hover */
}

/* --- Responsive adjustments for smaller screens --- */
@media (max-width: 992px) {
    .contact-section-container {
        flex-direction: column; /* Stack columns on tablets */
        gap: 50px;
        padding: 20px;
    }

    .contact-info-column h2,
    .contact-form-column h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .form-row-split {
        flex-direction: column; /* Stack email/phone inputs on mobile */
        gap: 0;
    }
}



/* ---=============================== New Unique Footer Section =============================================--- 
==============================================================================================================*/

:root {
    --brand-red-neon: #FF3366;
    --footer-bg-neon: #0A0A0A;
    --footer-text-neon: #FFFFFF;
    --footer-title-neon: #FFFFFF;
    --footer-border-neon-subtle: rgba(255, 255, 255, 0.08);
    --neon-glow-shadow: 0 0 10px var(--brand-red-neon), 0 0 20px var(--brand-red-neon);
    --secondary-rustic: #606060;
}

/* --- Main Footer Container --- */


/* --- New Footer Styles --- */
.main-footer-elegant {
    background-color: #616161; /* Ash color */
    color: #fff;
    padding: 70px 0 30px;
}

.footer-logo-elegant {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-description-elegant {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 25px;
}

.footer-heading-elegant {
    font-family: 'Gilda Display', serif;
    font-size: 1.7rem;
    color: #f7a61d;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.3rem;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-contact-details p,
.footer-contact-details a {
    color: #ddd;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-details i {
    color: #f7a61d;
    margin-right: 10px;
}

.footer-contact-details a:hover {
    color: #fff;
}

.more-numbers-section {
    margin-top: 15px;
}

.more-numbers-heading {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
}

.number-label {
    font-weight: bold;
    margin-right: 5px;
    color: #ccc;
}

.contact-main-phone-elegant {
    font-weight: bold;
}

.footer-col-border-right {
    border-right: 1px solid #757575; /* A slightly lighter ash border */
    padding-right: 30px;
}

.footer-social-icons-elegant a {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-social-icons-elegant a:hover {
    color: #f7a61d;
}

.footer-bottom-elegant {
    background-color: #424242; /* A darker ash for the bottom part */
    color: #fff;
    font-size: 0.85rem;
}

.copyright-text,
.developed-by-elegant {
    margin-bottom: 0;
    line-height: 1.5;
}

.smith-it-icon-elegant {
    height: 1em;
    margin-right: 5px;
    vertical-align: middle;
}

.smith-text-elegant {
    color: #fff;
    text-decoration: none;
    font-family: sans-serif;
}

.smith-text-elegant:hover {
    color: #f7a61d;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .footer-col-border-right {
        border-right: none;
        padding-right: 0;
    }
}

/* ---==================================================================
====================Restaurant Page================================
======================================================================== --- */

/* Define CSS Variables for Reusability (Recommended) */
:root {
    --primary-rustic: #6F4E37; /* Darker brown, perhaps for titles */
    --secondary-rustic: #A4775D; /* Lighter brown/gold, for accents/buttons/prices */
    --background-cream: #F8F5F0; /* Creamy background color */
    --text-dark: #333;
    --text-light: #666;
    --accent-red: #E74C3C; /* A consistent red for buttons, if desired */
}

/* Base Styles */

.rustic-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light); /* Using variable for consistency */
}

/* --- Hero Section --- */
.rustic-hero-section {
    position: relative;
    height: 100vh;
    background-image: url('https://images.pexels.com/photos/1579739/pexels-photo-1579739.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    text-align: center; /* Center text within content box */
    overflow: hidden; /* Prevent content overflow */
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    padding: 0 15px; /* Add some padding for small screens */
}

.hero-content {
    max-width: 900px; /* Limit content width */
    margin: 0 auto;
}

.rustic-hero-title {
    font-size: 6rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.1; /* Adjust line height for better appearance */
}

.hero-tagline {
    font-family: 'Gilda Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem; /* More space before button */
}

.btn-rustic { /* General button style */
    background-color: var(--secondary-rustic);
    border: 2px solid var(--secondary-rustic);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none; /* In case it's an <a> tag */
    display: inline-block; /* For padding and margins */
}

.btn-rustic:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

/* --- Menu Section --- */
.rustic-menu-section {
    background-color: var(--background-cream);
    padding: 5rem 0; /* py-5 equivalent */
}

.rustic-section-title {
    font-family: 'Gilda Display', serif;
    font-size: 3rem; /* Larger for section titles */
    font-weight: 700;
    color: var(--primary-rustic);
    text-align: center;
    margin-bottom: 1.5rem;
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Flexible grid */
    gap: 2rem; /* Space between cards */
    padding: 0 15px; /* Horizontal padding for grid */
    max-width: 1200px; /* Limit overall grid width */
    margin: 0 auto; /* Center the grid */
}

/* Card for Menu Categories (e.g., Appetizers, Main Courses) */
.rustic-menu-category-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.75rem; /* rounded-4 equivalent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem; /* p-4 equivalent */
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* shadow-sm equivalent */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: space-between; /* Push button to bottom if content varies */
}

.rustic-menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.rustic-menu-category-title {
    font-family: 'Gilda Display', serif;
    font-size: 1.70rem;
    font-weight: 700;
    color: var(--primary-rustic);
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(111, 78, 55, 0.2); /* Subtle divider */
    padding-bottom: 0.75rem;
}

/* Individual Menu Item Styling within a Category Card */
.rustic-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e0e0e0; /* Dotted line like the example */
}

.rustic-menu-item:last-child {
    border-bottom: none; /* No border for the last item in a category */
    margin-bottom: 0;
    padding-bottom: 0;
}

.rustic-menu-item-content {
    flex-grow: 1;
    padding-right: 1rem; /* Space between text and price */
}

.rustic-menu-item-name {
    font-family: 'Gilda Display', serif;
    font-weight: 600;
    font-size: 1.20rem;
    margin-bottom: 0.25rem;
    color: var(--primary-rustic);
}

.rustic-menu-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem; /* Slightly smaller for description */
    color: var(--text-light);
}

.rustic-menu-price {
    font-family: 'Gilda Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary-rustic);
    flex-shrink: 0; /* Prevent price from shrinking */
}

/* --- Our Story Section --- */
.rustic-story-section {
    background-color: #fff;
    padding: 5rem 15px; /* Consistent padding */
    text-align: center;
}

.text-content-rustic {
    max-width: 800px;
    margin: 0 auto;
}

.rustic-story-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: justify;
    color: var(--text-dark);
}

/* --- View All Functionality CSS (including Scrollbar) --- */

/* Rule to hide items initially that have the 'hidden-menu-item' class */
.hidden-menu-item {
    display: none !important; /* !important ensures this overrides any other display property */
}

/* Style for the "View All" button */
.rustic-view-all-btn {
    background-color: var(--accent-red); /* Using the new accent-red variable */
    color: white;
    border: 1px solid var(--accent-red);
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.99rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    width: 100%; /* Make button full width of the card */
    margin-top: auto; /* Pushes the button to the bottom of the flex container (card) */
    display: none; /* Initially hidden, JavaScript will show if needed */
    cursor: pointer; /* Indicate it's clickable */
}

.rustic-view-all-btn:hover {
    background-color: transparent;
    border-color: var(--accent-red);
    color: var(--accent-red); /* Change text color to accent on hover */
}

/* Container for menu items within the card */
.menu-item-list {
    /* Flex-grow to allow it to take available space before the button */
    flex-grow: 1; 
    margin-bottom: 1.5rem; /* Space between last item and button */
}


/* Scrollable Menu Container */
.menu-item-list.scrollable-menu-container {
    max-height: 400px; /* Default max-height for scrolling */
    overflow-y: auto;  /* Enable vertical scrolling if content exceeds max-height */
    /* Add padding to prevent content from being hidden by the scrollbar */
    padding-right: 15px;
    box-sizing: border-box; /* Include padding in the element's total width and height */
}

/* Custom Scrollbar Styles (Optional - for WebKit browsers like Chrome, Safari) */
.menu-item-list.scrollable-menu-container::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.menu-item-list.scrollable-menu-container::-webkit-scrollbar-track {
    background: var(--background-cream); /* Track color */
    border-radius: 10px;
}

.menu-item-list.scrollable-menu-container::-webkit-scrollbar-thumb {
    background: var(--secondary-rustic); /* Thumb color */
    border-radius: 10px;
}

.menu-item-list.scrollable-menu-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-rustic); /* Thumb color on hover */
}


/* --- Responsive Adjustments --- */

/* For large devices (desktops, laptops) */
@media (min-width: 1200px) {
    .rustic-hero-title {
        font-size: 6rem;
    }
    .rustic-section-title {
        font-size: 3.5rem;
    }
    .hero-tagline {
        font-size: 2rem;
    }
    .menu-item-list.scrollable-menu-container {
        max-height: 450px; /* Slightly taller scroll area on large screens */
    }
}

/* For medium devices (tablets, smaller laptops) */
@media (max-width: 992px) {
    .rustic-hero-title {
        font-size: 4.5rem;
    }
    .hero-tagline {
        font-size: 1.6rem;
    }
    .rustic-section-title {
        font-size: 2.8rem;
    }
    .rustic-menu-category-title {
        font-size: 1.5rem;
    }
    .menu-item-list.scrollable-menu-container {
        max-height: 350px; /* Adjust max-height for tablets */
    }
}

/* For small devices (portrait tablets, large phones) */
@media (max-width: 768px) {
    .rustic-hero-title {
        font-size: 3.5rem;
    }
    .hero-tagline {
        font-size: 1.4rem;
    }
    .rustic-section-title {
        font-size: 2.2rem;
    }
    .rustic-menu-item {
        flex-direction: column; /* Stack name/desc above price on small screens */
        align-items: flex-start;
    }
    .rustic-menu-price {
        margin-top: 0.5rem;
    }
    .menu-item-list.scrollable-menu-container {
        max-height: 300px; /* Adjust max-height for phones/small tablets */
        padding-right: 10px; /* Slightly less padding for smaller screens */
    }
    .menu-category-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        padding: 0 20px; /* More horizontal padding for content on single column */
    }
}

/* For extra small devices (phones) */
@media (max-width: 576px) {
    .rustic-hero-title {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
    .rustic-section-title {
        font-size: 1.8rem;
    }
    .rustic-menu-category-card {
        padding: 1.5rem; /* Less padding on cards */
    }
    .rustic-menu-item-name {
        font-size: 1.1rem;
    }
    .rustic-menu-item-desc {
        font-size: 0.9rem;
    }
    .rustic-menu-price {
        font-size: 1.1rem;
    }
    .menu-item-list.scrollable-menu-container {
        max-height: 250px; /* Further reduce max-height for small phones */
    }
}



   /* ====================================================================================
==============
==================About Page =================
============================ */

.section-heading {
    font-size: 3.5rem;
    color:#333;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-red-neon) 0%, var(--accent-glow) 100%);
    border-radius: 2px;
}

/* --- Hero Section (Same as before, it's effective) --- */
.hero-about {
    position: relative;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    z-index: 1;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.btn-brand-neon {
    background-color:#FF3366;
    color: #FFFFFF;
    border: 2px solid #FF3366;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

.btn-brand-neon:hover {
    background-color: #e62e5c; /* A darker red for hover */
    border-color: #e62e5c;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.6);
}

/* --- Introduction / Story (Refined) --- */
.intro-story {
    padding: 5rem 0;
    background-color: #FFFFFF;
}
.intro-story .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #606060;
}
.intro-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.intro-story-image {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.intro-story-image:hover {
    transform: translateY(-5px);
}

/* --- Pillars of Excellence Section --- */
.pillars-section {
    padding: 5rem 0;
    background-color: #e9ecef; /* Slightly darker background */
    position: relative;
    z-index: 1;
}
.pillar-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push icon/title up, content center */
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 15px rgba(255, 51, 102, 0.2);
}
.pillar-icon {
    font-size: 4rem;
    color: #FF3366;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
    transition: transform 0.3s ease;
}
.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}
.pillar-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}
.pillar-card p {
    font-size: 1rem;
    color: #606060;
    flex-grow: 1; /* Allows text to take available space */
}

/* --- Full Width Image Section (for visual breaks) --- */
.full-width-img-section {
    height: 50vh; /* Adjust height as needed */
    background: url('image_828667.png') no-repeat center center/cover; /* Replaced with uploaded image */
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}
.full-width-img-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Subtle overlay */
    z-index: -1;
}
.full-width-img-section h3 {
    font-size: 3rem;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* --- Testimonials Section (Same as before, it's good) --- */
.testimonials-about {
    padding: 5rem 0;
    background-color: #0A0A0A; /* Dark background like your footer */
    color: #FFFFFF;
    text-align: center;
}

.testimonials-about .section-heading {
    color: #FFFFFF;
    text-shadow: 0 0 5px #FF3366;
}
.testimonials-about .section-heading::after {
    background: linear-gradient(to right, var(--brand-red-neon) 0%, rgba(255, 51, 102, 0.7) 100%);
    box-shadow: 0 0 10px #FF3366;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 15px rgba(255, 51, 102, 0.4);
}

.testimonial-card p.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.testimonial-card .author {
    font-weight: 500;
    color: #FF3366;
    font-size: 1.2rem;
}
.testimonial-card .rating {
    color: gold;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* --- Call to Action Section (Same as before, effective) --- */
.cta-about {
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('image_83d89d.png') no-repeat center center/cover; /* Replaced with uploaded image */
    color: #FFFFFF;
    text-align: center;
}

.cta-about h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5)
}

.cta-about p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.7);
    color: rgba(255,255,255,0.9);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: #FF3366;
    border-color: #FF3366;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.6);
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .section-heading {
        font-size: 2.5rem;
    }
    .intro-story .lead {
        font-size: 1.1rem;
    }
    .pillar-icon {
        font-size: 3rem;
    }
    .pillar-card h3 {
        font-size: 1.6rem;
    }
    .full-width-img-section {
        height: 40vh;
    }
    .full-width-img-section h3 {
        font-size: 2.5rem;
    }
    .cta-about h2 {
        font-size: 2.8rem;
    }
    .cta-about p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-about {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-heading {
        font-size: 2rem;
    }
    .pillar-icon {
        font-size: 2.5rem;
    }
    .pillar-card h3 {
        font-size: 1.4rem;
    }
    .full-width-img-section {
        height: 30vh;
    }
    .full-width-img-section h3 {
        font-size: 2rem;
    }
    .cta-about h2 {
        font-size: 2rem;
    }
    .cta-about p {
        font-size: 1rem;
    }
    .btn-brand-neon, .btn-outline-light {
        font-size: 0.9rem;
        padding: 0.6rem 1.8rem;
    }
}


/*  Review Style Start */

.testimonials-v6 {
    background-color: white; /* Set the entire section background to white */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: black; /* Ensure default text color for the section is black */
}

/* Ensure the heading is black */
.testimonials-v6 .dynamic-section-heading {
    color: black; /* Changed to black */
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    /* Optional: text-shadow for emphasis on light background */
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.1); */
}

.testimonials-v6 .dynamic-section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: black; /* Changed to black for contrast on white background */
    border-radius: 2px;
    /* Optional: shadow for the underline */
    /* box-shadow: 0 0 5px rgba(0,0,0,0.2); */
}

/* Ensure the lead paragraph is black */
.testimonials-v6 .lead {
    color: white; /* Changed to black */
    font-size: 1.50rem;
    line-height: 1.6;
}

.testimonials-v6 .testimonial-card-v6 {
    background-color: white; /* Card background remains white */
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    text-align: left;
    min-height: 280px; /* Ensure consistent height for cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle grey border */
}

/* Quote icon inside the card */
.testimonial-card-v6::before {
    content: "\f10d"; /* Font Awesome quote icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.1); /* Subtle black/grey for the icon */
    opacity: 0.3;
    z-index: 0;
}

.testimonials-v6 .testimonial-card-v6:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12); /* Slightly more prominent shadow on hover */
}

.testimonials-v6 .testimonial-card-v6 .quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black; /* Quote text is black */
    margin-bottom: 25px;
    font-style: italic;
    position: relative; /* Ensure text is above pseudo-element */
    z-index: 1;
}

.testimonials-v6 .testimonial-card-v6 .author {
    font-weight: 600;
    color:red; 
    font-size: 1rem;
}

.testimonials-v6 .testimonial-card-v6 .rating {
    color: var(--warning-color); /* Keeping yellow/orange for stars */
    font-size: 1.1rem;
}

/* Bootstrap Carousel Controls - Styling for visibility on light background */
.testimonials-v6 .carousel-control-prev-icon,
.testimonials-v6 .carousel-control-next-icon {
    background-image: none; /* Remove default Bootstrap icon image */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-gold); /* Gold background for controls */
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

/* Use Font Awesome for chevron icons in controls */
.testimonials-v6 .carousel-control-prev-icon::before,
.testimonials-v6 .carousel-control-next-icon::before {
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is used */
    font-weight: 900; /* For solid icons */
    font-size: 1.2rem; /* Size of the chevron */
    color: white; /* White chevron for contrast against gold background */
}

.testimonials-v6 .carousel-control-prev-icon::before {
    content: "\f053"; /* fa-chevron-circle-left */
}

.testimonials-v6 .carousel-control-next-icon::before {
    content: "\f054"; /* fa-chevron-circle-right */
}

.testimonials-v6 .carousel-control-prev:hover .carousel-control-prev-icon,
.testimonials-v6 .carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
    background-color: var(--dark-gold); /* Darker gold on hover */
}

/* Bootstrap Carousel Indicators - Styling for visibility on light background */
.testimonials-v6 .carousel-indicators [data-bs-target] {
    background-color: black; /* Black for inactive dots */
    opacity: 0.7;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.testimonials-v6 .carousel-indicators .active {
    background-color: var(--primary-gold); /* Gold for active dot */
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-v6 .dynamic-section-heading {
        font-size: 2.2rem;
    }
    .testimonials-v6 .testimonial-card-v6 {
        padding: 30px;
        min-height: auto; /* Allow height to adjust on smaller screens */
    }
    .testimonials-v6 .testimonial-card-v6 .quote {
        font-size: 1rem;
    }
    .testimonials-v6 .carousel-control-prev,
    .testimonials-v6 .carousel-control-next {
        width: 15%; /* Make controls a bit wider to capture touch */
    }
}
/*  Review Style End */




/* New breakpoint for very small mobile devices (e.g., <= 575.98px) */
@media (max-width: 575.98px) {
    .section-heading {
        font-size: 1.8rem;
    }
    .hero-about {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .intro-story .lead {
        font-size: 1rem;
    }
    .intro-content p {
        font-size: 0.9rem;
    }
    .pillar-card {
        padding: 1.5rem;
    }
    .pillar-icon {
        font-size: 2rem;
    }
    .pillar-card h3 {
        font-size: 1.2rem;
    }
    .pillar-card p {
        font-size: 0.9rem;
    }
    .full-width-img-section {
        height: 25vh;
    }
    .full-width-img-section h3 {
        font-size: 1.5rem;
    }
    .testimonials-about .section-heading,
    .testimonials-v6 .dynamic-section-heading {
        font-size: 2rem;
    }
    .testimonial-card,
    .testimonial-card-v6 {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .testimonial-card p.quote,
    .testimonial-card-v6 p.quote {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .testimonial-card .author,
    .testimonial-card-v6 .author {
        font-size: 1rem;
    }
    .cta-about h2 {
        font-size: 1.8rem;
    }
    .cta-about p {
        font-size: 0.9rem;
    }
    .btn-brand-neon,
    .btn-outline-light,
    .btn-dynamic-primary {
        font-size: 0.8rem;
        padding: 0.5rem 1.5rem;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
}/* ====================================================================================
==============
==================About Page =================
============================ */

.section-heading {
    font-size: 3.5rem;
    color:#333;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-red-neon) 0%, var(--accent-glow) 100%);
    border-radius: 2px;
}

/* --- Hero Section (Same as before, it's effective) --- */
.hero-about {
    position: relative;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    z-index: 1;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.btn-brand-neon {
    background-color:#FF3366;
    color: #FFFFFF;
    border: 2px solid #FF3366;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

.btn-brand-neon:hover {
    background-color: #e62e5c; /* A darker red for hover */
    border-color: #e62e5c;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.6);
}

/* --- Introduction / Story (Refined) --- */
.intro-story {
    padding: 5rem 0;
    background-color: #FFFFFF;
}
.intro-story .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #606060;
}
.intro-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.intro-story-image {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.intro-story-image:hover {
    transform: translateY(-5px);
}

/* --- Pillars of Excellence Section --- */
.pillars-section {
    padding: 5rem 0;
    background-color: #e9ecef; /* Slightly darker background */
    position: relative;
    z-index: 1;
}
.pillar-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push icon/title up, content center */
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10), 0 0 15px rgba(255, 51, 102, 0.2);
}
.pillar-icon {
    font-size: 3rem;
    color: #FF3366;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
    transition: transform 0.3s ease;
}
.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}
.pillar-card h3 {
    font-size: 1.8rem;
    font-family: Barlow Condensed;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}
.pillar-card p {
    font-size: 1rem;
    color: #606060;
    flex-grow: 1; /* Allows text to take available space */
}

/* --- Full Width Image Section (for visual breaks) --- */
.full-width-img-section {
    height: 50vh; /* Adjust height as needed */
    background: url('image_828667.png') no-repeat center center/cover; /* Replaced with uploaded image */
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}
.full-width-img-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Subtle overlay */
    z-index: -1;
}
.full-width-img-section h3 {
    font-size: 2rem;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* --- Testimonials Section (Same as before, it's good) --- */
.testimonials-about {
    padding: 5rem 0;
    background-color: #0A0A0A; /* Dark background like your footer */
    color: #FFFFFF;
    text-align: center;
}

.testimonials-about .section-heading {
    color: #FFFFFF;
    text-shadow: 0 0 5px #FF3366;
}
.testimonials-about .section-heading::after {
    background: linear-gradient(to right, var(--brand-red-neon) 0%, rgba(255, 51, 102, 0.7) 100%);
    box-shadow: 0 0 10px #FF3366;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), 0 0 15px rgba(255, 51, 102, 0.4);
}

.testimonial-card p.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.testimonial-card .author {
    font-weight: 500;
    color: #FF3366;
    font-size: 1.2rem;
}
.testimonial-card .rating {
    color: gold;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* --- Call to Action Section (Same as before, effective) --- */
.cta-about {
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('image_83d89d.png') no-repeat center center/cover; /* Replaced with uploaded image */
    color: #FFFFFF;
    text-align: center;
}

.cta-about h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5)
}

.cta-about p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.7);
    color: rgba(255,255,255,0.9);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: #FF3366;
    border-color: #FF3366;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.6);
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .section-heading {
        font-size: 2.5rem;
    }
    .intro-story .lead {
        font-size: 1.1rem;
    }
    .pillar-icon {
        font-size: 3rem;
    }
    .pillar-card h3 {
        font-size: 1.6rem;
    }
    .full-width-img-section {
        height: 40vh;
    }
    .full-width-img-section h3 {
        font-size: 2.5rem;
    }
    .cta-about h2 {
        font-size: 2.8rem;
    }
    .cta-about p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-about {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-heading {
        font-size: 2rem;
    }
    .pillar-icon {
        font-size: 2.5rem;
    }
    .pillar-card h3 {
        font-size: 1.4rem;
    }
    .full-width-img-section {
        height: 30vh;
    }
    .full-width-img-section h3 {
        font-size: 2rem;
    }
    .cta-about h2 {
        font-size: 2rem;
    }
    .cta-about p {
        font-size: 1rem;
    }
    .btn-brand-neon, .btn-outline-light {
        font-size: 0.9rem;
        padding: 0.6rem 1.8rem;
    }
}

/* --- Hero Section with Overlay Video/Image --- */
.hero-about-v6 {
    height: 90vh; /* Taller to be more immersive */
    align-items: center;
    justify-content: center;
    color:#FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden; /* For future parallax effects */
}
/* Simulated Parallax Effect (for more advanced use with JS) */
.hero-about-v6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}
.hero-about-v6 .container {
    position: relative;
    z-index: 2;
}
.hero-about-v6 h1 {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.9);
    line-height: 1.1;
}
.hero-about-v6 p {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    max-width: 900px;
    margin: 0 auto 3rem auto;
}
.btn-dynamic-primary {
    background-color: FF3366;
    color: #FFFFFF;
    border: none;
    padding: 1.2rem 3.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 25px rgba(255, 51, 102, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.btn-dynamic-primary:hover {
    background-color: #e62e5c;
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.7);
}

/* Additional styles for the new testimonial section */
.testimonials-v6 {
    padding: 1rem 0;
    background: #0A0A0A; /* Use dark background */
    color: #FFFFFF;
    text-align: center;
}

.testimonials-v6 .dynamic-section-heading {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    text-shadow: 0 0 5px #FF3366;
}

.testimonials-v6 .dynamic-section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF3366 0%, rgba(255, 51, 102, 0.7) 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px FF3366;
}

.testimonial-card-v6 {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly more opaque for better contrast */
    border-radius: 15px;
    padding: 3rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Stronger shadow */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 51, 102, 0.3); /* Subtle neon border */
}
.testimonial-card-v6::before {
    content: "\f10d"; /* Font Awesome quote icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(255, 51, 102, 0.6); /* Neon quote color */
    opacity: 0.3;
    z-index: 0;
}

.testimonial-card-v6 p.quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative; /* Ensure text is above pseudo-element */
    z-index: 1;
    line-height: 1.8;
}

.testimonial-card-v6 .author {
    font-weight: 600;
    font-size: 1.3rem;
    color: #FF3366;
    text-shadow: 0 0 5px rgba(255, 51, 102, 0.4);
}

.testimonial-card-v6 .rating i {
    color: gold;
    font-size: 1.1rem;
}
.testimonial-card-v6:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6), 0 0 25px rgba(255, 51, 102, 0.8);
}

/* Carousel controls and indicators */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #FF3366;
    border-radius: 50%;
    padding: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    opacity: 1;
    box-shadow: 0 0 15px #FF3366;
}

.carousel-indicators [data-bs-target] {
    background-color: #FF3366;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    opacity: 0.7;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: #FFFFFF;
    border-color: #FF3366;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .testimonials-v6 .dynamic-section-heading {
        font-size: 2.5rem;
    }
    .testimonial-card-v6 p.quote {
        font-size: 1.1rem;
    }
    .testimonial-card-v6 .author {
        font-size: 1rem;
    }
    .testimonial-card-v6 {
        padding: 2rem;
    }
    /* Added for smaller mobile screens */
    .hero-about-v6 h1 {
        font-size: 3rem; /* Adjust for very small screens */
    }
    .hero-about-v6 p {
        font-size: 1.2rem; /* Adjust for very small screens */
    }
    .btn-dynamic-primary {
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
    }
    .full-width-img-section h3 {
        font-size: 1.8rem; /* Further reduce for very small screens */
    }
}

/* New breakpoint for very small mobile devices (e.g., <= 575.98px) */
@media (max-width: 575.98px) {
    .section-heading {
        font-size: 1.8rem;
    }
    .hero-about {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .intro-story .lead {
        font-size: 1rem;
    }
    .intro-content p {
        font-size: 0.9rem;
    }
    .pillar-card {
        padding: 1.5rem;
    }
    .pillar-icon {
        font-size: 2rem;
    }
    .pillar-card h3 {
        font-size: 1.2rem;
    }
    .pillar-card p {
        font-size: 0.9rem;
    }
    .full-width-img-section {
        height: 25vh;
    }
    .full-width-img-section h3 {
        font-size: 1.5rem;
    }
    .testimonials-about .section-heading,
    .testimonials-v6 .dynamic-section-heading {
        font-size: 2rem;
    }
    .testimonial-card,
    .testimonial-card-v6 {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .testimonial-card p.quote,
    .testimonial-card-v6 p.quote {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .testimonial-card .author,
    .testimonial-card-v6 .author {
        font-size: 1rem;
    }
    .cta-about h2 {
        font-size: 1.8rem;
    }
    .cta-about p {
        font-size: 0.9rem;
    }
    .btn-brand-neon,
    .btn-outline-light,
    .btn-dynamic-primary {
        font-size: 0.8rem;
        padding: 0.5rem 1.5rem;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
    }
}




    /* ==========================================
    ==================Hall Room Page=========== */

        .text-neon-red {
            color: var(--brand-red-neon) !important;
        }

        .icon-glow {
            text-shadow: 0 0 8px var(--brand-red-neon);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            display: flex; /* Kept in CSS */
            align-items: center; /* Kept in CSS */
            justify-content: center; /* Kept in CSS */
            text-align: center; /* Kept in CSS */
            overflow: hidden; /* Kept in CSS */
            color: var(--text-light); /* Ensure text is light on dark background */
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for better text contrast */
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
            color: var(--main-bg); /* White text for hero title */
        }

        .hero-subtitle {
            font-size: 1.6rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9); /* Slightly off-white for subtitle */
        }


        /* Section Heading Style (re-used footer heading elegant) */
        .section-heading-elegant {
            font-family: 'Playfair Display', serif;
            /*color: var(--heading-color);*/
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
            text-align: center;
        }

        .section-heading-elegant::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, var(--brand-red-neon) 0%, rgba(255, 51, 102, 0.7) 100%);
            border-radius: 3px;
            box-shadow: var(--neon-glow-shadow);
            transform: translateX(-50%);
        }

        /* Hall Room Cards - New Design */
        .hall-room-card {
            background-color: var(--main-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--subtle-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Ensure cards in a row have equal height */
            display: flex;
            flex-direction: column;
        }

        .hall-room-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--subtle-hover-shadow);
        }

        .hall-card-img {
            height: 250px;
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }

        .hall-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .hall-room-card:hover .hall-card-img img {
            transform: scale(1.05);
        }

        .hall-card-body {
            padding: 2rem;
            flex-grow: 1; /* Allows body to expand */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hall-card-title {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            color: var(--heading-color);
        }

        .hall-card-description {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

    .hall-features-list {
            list-style-type: circle;
            padding: 0;
            margin-bottom: 1.5rem;
            margin-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hall-feature-item {
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 500;
            display: list-item;
}

        /* .hall-feature-item i {
            margin-right: 0.5rem;
            font-size: 1.1rem;
        } */

     .price-display {
            display: flex;
            align-items: baseline;
            margin-bottom: 1.5rem;
            gap: 10px;
            justify-content: center;
        } 
   .hall-capacity{
            margin-left:20px;
}

        .price-label {
            font-size: 1.1rem;
            color: var(--text-color);
            font-weight: 500;
        }

        .price-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--brand-red-neon);
            text-shadow: 0 0 10px rgba(255, 51, 102, 0.7);
            line-height: 1; /* Keep line height tight */
        }

        .price-unit {
            font-size: 1.2rem;
            color: var(--text-color);
            align-self: flex-end;
            margin-bottom: 0.5rem;
        }

        /* Call to Action Section */
        .cta-section {
            background: linear-gradient(135deg, var(--brand-red-neon) 0%, #FF6699 100%);
            color: var(--main-bg);
            padding: 5rem 0;
            text-align: center;
            border-radius: 15px;
            margin-top: 5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-section h2 {
            color: var(--main-bg);
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .cta-btn {
            background-color: var(--main-bg);
            border-color: var(--main-bg);
            color: var(--brand-red-neon);
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            background-color: var(--section-bg-light);
            border-color: var(--section-bg-light);
            color: var(--brand-red-neon);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .site-footer {
            background-color: var(--heading-color); /* Dark footer */
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 0;
            font-size: 0.95rem;
        }

        .site-footer h5 {
            color: var(--main-bg);
            font-family: 'Playfair Display', serif;
            margin-bottom: 1.5rem;
        }

        .site-footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .site-footer a:hover {
            color: var(--brand-red-neon);
        }

        .social-icons a {
            font-size: 1.5rem;
            margin-right: 15px;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--brand-red-neon);
            text-shadow: 0 0 8px var(--brand-red-neon);
        }

        .footer-bottom-bar {
            background-color: #1A1A1A;
            color: rgba(255, 255, 255, 0.6);
            padding: 1rem 0;
            font-size: 0.85rem;
        }


        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero-title { font-size: 2.8rem; }
            .hero-subtitle { font-size: 1.1rem; }
            .section-heading-elegant { font-size: 2.2rem; }
            .hall-room-card { margin-bottom: 2rem; }
            .price-display { justify-content: center; } /* Center price on smaller screens */
            .hall-card-body { padding: 1.5rem; }
            .hall-card-title { font-size: 1.7rem; }
        }

        @media (max-width: 767.98px) {
            .hero-section { height: 60vh; }
            .hero-title { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
            .section-heading-elegant { font-size: 1.8rem; padding-bottom: 0.5rem; }
            .section-heading-elegant::after { width: 60px; height: 3px; }
            .cta-section { padding: 3rem 0; margin-top: 3rem; }
            .cta-section h2 { font-size: 2rem; }
            .cta-section p { font-size: 1rem; margin-bottom: 2rem; }
            .cta-btn { padding: 0.8rem 2rem; font-size: 1rem; }
            .hall-card-img { height: 200px; }
            .price-value { font-size: 2.2rem; }
        }

        @media (max-width: 575.98px) {
            .hero-section { height: 50vh; }
            .hero-title { font-size: 1.8rem; }
            .hero-subtitle { font-size: 0.9rem; }
            .btn-primary-neon, .btn-outline-neon { width: 90%; margin-bottom: 10px; }
            .hall-card-body { padding: 1rem; }
            .hall-card-title { font-size: 1.5rem; }
            .hall-card-description { font-size: 0.9rem; }
            .hall-features-list { justify-content: center; }
            .hall-feature-item { padding: 0.5rem 1rem; font-size: 0.8rem; }
            .price-value { font-size: 1.8rem; }
            .price-label, .price-unit { font-size: 0.9rem; }
        }
  
        



        /*========================================== ========================================
        ==================Gallery Page=======================================================  */


    p {
        color: var(--text-muted-light);
    }

    .text-gold {
        color: var(--accent-gold) !important;
    }

    /* Header */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.2rem 3rem;
        background-color: var(--header-bg-light);
        backdrop-filter: blur(8px);
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: var(--header-shadow-light);
    }

    .site-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-gold);
        text-decoration: none;
    }

    .site-nav .nav-link {
        color: var(--text-muted-light);
        font-weight: 400;
        margin-left: 2rem;
        transition: color 0.3s ease;
    }

    .site-nav .nav-link:hover, .site-nav .nav-link.active {
        color: var(--accent-gold);
        border-bottom: 2px solid var(--accent-gold);
        padding-bottom: 5px;
    }

    /* Hero Section */
    .hero-gallery {
        background-color: var(--secondary-light);
        padding: 5rem 0;
        text-align: center;
        margin-bottom: 4rem;
    }

    .hero-gallery h1 {
        font-size: 3.8rem;
        margin-bottom: 1.5rem;
        color: var(--accent-gold);
    }

    .hero-gallery p {
        font-size: 1.2rem;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Uniform Grid */
    .gallery-grid {
        display: grid;
        /* Creates 3 columns on large screens, adjusting dynamically */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-auto-rows: 250px; /* **Ensures all rows have a consistent height** */
        gap: 20px; /* Gap between grid items */
        padding: 0 15px; /* Padding for container */
    }

    .grid-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image fills the container without distortion */
        display: block;
        border-radius: 10px; /* Match parent border radius */
        transition: transform 0.5s ease;
    }

    .grid-item:hover img {
        transform: scale(1.05);
    }

    /* Hover Overlay */
    .item-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay-dark-light);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--primary-light);
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateY(100%); /* Start from bottom */
        padding: 20px;
        box-sizing: border-box;
    }

    .grid-item:hover .item-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .item-overlay h3 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        color: var(--primary-light);
    }

    .item-overlay p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        color: var(--secondary-light);
        max-height: 80px; /* Limit description height */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Show max 3 lines */
        -webkit-box-orient: vertical;
    }

    .item-overlay .category-tag {
        background-color: var(--accent-gold);
        color: var(--primary-light);
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 10px;
    }

    /* Lightbox (reused from previous designs) */
    .lightbox-modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: var(--overlay-dark-light);
        backdrop-filter: blur(5px);
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .lightbox-content {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
        display: block;
        margin: auto;
        border: 3px solid var(--accent-gold);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
        border-radius: 8px;
    }


    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: var(--primary-light);
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }

    .lightbox-close:hover,
    .lightbox-close:focus {
        color: var(--accent-gold);
        text-decoration: none;
        cursor: pointer;
    }

    /* --- Gallery Filters --- */
.filter-buttons .btn-filter {
    background-color: var(--light-bg); /* Or a neutral color */
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    margin: 5px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-buttons .btn-filter:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.filter-buttons .btn-filter.active {
    background-color: #0000;
    color: var(--white);
    font-size: 1.1rem;
    border-color: var(--primary-gold);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* Hide gallery items for filtering */
.gallery-grid .grid-item.hidden {
    display: none;
    /* Optional: Add a transition for a smoother hide/show effect */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.3s ease;
}

.gallery-grid .grid-item.show {
    display: block; /* Or flex, grid depending on your grid layout */
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive adjustments for filter buttons */
@media (max-width: 576px) {
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .filter-buttons .btn-filter {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin: 3px;
    }
}





    /* Footer (reused) */
    .site-footer {
        background-color: var(--secondary-light);
        color: var(--text-dark);
        padding: 4rem 0 0;
        font-size: 0.9rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 5rem;
    }

    .site-footer h5 {
        font-family: 'Playfair Display', serif;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

    .site-footer a {
        color: var(--text-muted-light);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .site-footer a:hover {
        color: var(--accent-gold);
    }

    .social-icons a {
        font-size: 1.8rem;
        margin-right: 18px;
        color: var(--text-muted-light);
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
        color: var(--accent-gold);
        transform: translateY(-3px);
    }

    .footer-bottom-bar {
        background-color: #E9ECEF;
        color: var(--text-muted-light);
        padding: 1.2rem 0;
        font-size: 0.8rem;
        margin-top: 3rem;
    }

    /* Responsive Adjustments for Grid */
    @media (max-width: 991.98px) {
        .site-header { padding: 1rem 1.5rem; }
        .site-logo { font-size: 1.5rem; }
        .site-nav { display: none; /* Consider hamburger menu */ }
        .hero-gallery { padding: 4rem 0; margin-bottom: 3rem; }
        .hero-gallery h1 { font-size: 2.8rem; }
        .hero-gallery p { font-size: 1rem; }
        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        .item-overlay h3 { font-size: 1.4rem; }
        .item-overlay p { font-size: 0.9rem; }
        .lightbox-info { padding: 10px 15px; font-size: 0.9rem;}
        .lightbox-info h4 { font-size: 1.2rem;}
    }

    @media (max-width: 767.98px) {
        body { padding-top: 70px; }
        .site-header { padding: 0.8rem 1rem; }
        .hero-gallery { padding: 3rem 0; }
        .hero-gallery h1 { font-size: 2.2rem; }
        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            grid-auto-rows: 180px; /* Adjust height for smaller screens if needed */
        }
        .item-overlay h3 { font-size: 1.2rem; }
        .item-overlay p { font-size: 0.85rem; -webkit-line-clamp: 2;}
        .lightbox-close { top: 10px; right: 20px; font-size: 30px; }
        .lightbox-info { width: 90vw; }
    }

     
 