﻿ 
 
 /* Import Google Font - Adjusted for a clean, modern look */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* Global Reset */
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

/* Body Styling */
body {
    background-size: cover;
    background-attachment: fixed;
    color: #0d404a;
    line-height: 1.6;
    font-size: 16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #0d404a;
}

/* H1 - Main Page Headings */
h1 {
    font-size: 40px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    color: #643d8d;
}

/* H2 - Section Titles */
h2 {
    font-size: 32px;
    line-height: 1.4;
    border-bottom: 3px solid #fb9420;
    display: inline-block;
    padding-bottom: 5px;
}

/* H3 - Subheadings */
h3 {
    font-size: 26px;
    font-weight: 500;
    color: #643d8d;
}

/* Paragraph Styling */
p {
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 15px;
}

/* Links */
a {
    color: #feb226;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #fb9420;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #fb9420, #feb226);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #feb226, #fb9420);
    color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Lists */
ul {
    list-style-type: none;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 22px;
    }
    body {
        font-size: 15px;
    }
}

/* Top Bar Styling */
.top-bar {
    background: linear-gradient(rgba(13, 64, 74, 0.9), rgba(100, 61, 141, 0.8)), url('../images/texture.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
    z-index:9999;
}

/* Top Bar Container */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Left, Center, Right Sections */
.top-left, .top-right, .top-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Links & Icons */
.top-left a, .top-right a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    position: relative;
    z-index: 99999;
}

/* Hover Effects */
.top-left a:hover, .top-right a:hover {
    color: #feb226;
}

/* Social Icons */
.top-center {
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

.top-center a {
    font-size: 16px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-center a:hover {
    color: #feb226;
    transform: scale(1.1);
}

/* Separator */
.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile & Tablet Layout */
@media (max-width: 1040px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        padding: 6px;
        gap: 3px;
    }

    .top-left {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        padding: 5px 10px;
    }

    .top-right {
        width: 100%;
        text-align: right;
        justify-content: flex-end;
        padding: 5px 10px;
    }

    .top-center {
        display: flex;
        justify-content: center;
        margin: 5px 0;
    }

    .separator {
        display: none;
    }
}

/* Extra Small Screens */
@media (max-width: 820px) {
    .top-bar {
        padding: 6px 8px;
        font-size: 13px;
    }

    .top-left, .top-right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
    }

    .top-left {
        text-align: left;
    }

    .top-right {
        text-align: right;
    }

    .top-center {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 6px;
    }

    .top-left a, .top-right a {
        font-size: 12px;
        margin-right: 6px;
    }
}

/* General Header Styles */
.site-header {
    background: linear-gradient(rgba(13, 64, 74, 0.9), rgba(100, 61, 141, 0.9)), url('/mnt/data/texture.jpg');
    background-size: cover;
    background-position: center;
    padding: 0px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Header Container */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 0;
    padding-top: 5px;
    position: relative;
    z-index: 100;
    width: 100%;
    top: 0;
    left: 0;
}

/* Logo Container */
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5px 15px;
    border-radius: 12px;
    animation: heartbeat 3s infinite ease-in-out;
    max-width: 300px;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Logo Image */
.logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Active Navigation Link */
.nav-link.active {
    color: #feb226 !important;
    border-bottom: 3px solid #feb226;
    padding-bottom: 3px;
}

/* Dropdown Menu Active */
.dropdown-menu .nav-link.active {
    color: #feb226 !important;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #feb226;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Main Link (Clickable) */
.dropdown-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px;
    transition: color 0.3s ease;
}

.dropdown-link:hover {
    color: #feb226;
}

/* Dropdown Menu (Hidden by Default) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: rgba(13, 64, 74, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Links */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 0.95rem;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background: #feb226;
    color: #0d404a;
}

/* Contact / CTA Button */
.contact-btn {
    background: linear-gradient(135deg, #feb226, #fb9420);
    color: #0d404a;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #fb9420, #feb226);
    color: #0d404a;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #feb226;
    transform: scale(1.1);
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #ffffff;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 64, 74, 0.95);
    backdrop-filter: blur(5px);
    color: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    z-index: 1000;
}

.mobile-nav.active {
    display: flex;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px;
    background: #0d404a;
}

.mobile-header .mobile-close {
    font-size: 1.4rem;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-header .mobile-close:hover {
    color: #feb226;
}

/* Mobile Menu Links */
.mobile-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #feb226;
    background: #0a2e36;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 600px) {
    .contact-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .hamburger-menu {
        font-size: 1.4rem;
    }
}

/* Mobile & Tablet Optimization */
@media (max-width: 1040px) {
    .site-header {
        padding: 10px 15px;
        max-width: 100%;
    }

    .logo {
        padding: 5px 10px;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
        font-size: 1.8rem;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 64, 74, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px;
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
    }

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav a {
        font-size: 1.2rem;
        padding: 10px 0;
    }

    .mobile-header .mobile-close {
        font-size: 1.5rem;
    }

    .contact-btn {
        font-size: 0.9rem;
        padding: 7px 14px;
    }
}

/* Extra Small Screens */
@media (max-width: 600px) {
    .site-header {
        padding: 8px 12px;
    }

    .logo img {
        height: 35px;
    }

    .hamburger-menu {
        font-size: 1.6rem;
    }

    .mobile-nav a {
        font-size: 1rem;
    }

    .contact-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}


/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: url('../images/texture.jpg') no-repeat center center/cover;
    margin-top: -88px;
}

/* Slider Container */
.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.hero-content {
    width: 100%;
    color: #ffffff;
    animation: fadeIn 1s ease-out;
}

/* Hero Titles */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #feb226;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Description */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Call-To-Action Button */
.hero-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    color: White;
    background: #643d8d;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(254, 178, 38, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(254, 178, 38, 0.7);
}

.hero-button:active {
    transform: translateY(1px);
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    border: 1px solid rgba(254, 178, 38, 0.3);
}

.prev:hover, .next:hover {
    background: rgba(254, 178, 38, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 2%;
}

.next {
    right: 2%;
}

/* Navigation Dots */
.nav-dots {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 178, 38, 0.3);
}

.dot.active {
    background: #feb226;
    transform: scale(1.3);
}

.dot:hover {
    background: #fb9420;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        margin-top: 0;
    }
    
    .hero-title {
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .hero-button {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 85vh;
    }
    
    .hero-content-wrapper {
        padding: 0 15px;
    }
    
    .hero-button {
        padding: 0.6rem 1.8rem;
    }
    
    .prev, .next {
        width: 35px;
        height: 35px;
    }
}



/* Accessibility Assistance Section */
.accessibility-assistance p {
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    border-top: 2px solid #feb226;
    position: relative;
    z-index: 2;
}

/* Contact Number Styling */
.accessibility-assistance a {
    color: #feb226;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.accessibility-assistance a:hover {
    color: #fb9420;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accessibility-assistance {
        font-size: 1rem;
        padding: 12px;
    }
}

/* About Section Styling */
.about-section {
    background: #FFFFFF;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Sketch Illustration */
.about-section::before {
    content: "";
    background: url('../images/sketch.png') no-repeat left bottom / contain;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    filter: grayscale(100%);
    z-index: 0;
}

/* Container */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Left Content */
.about-text {
    flex: 1;
    max-width: 1200px;
}

/* Subtitle */
.about-subtitle {
    font-size: 1.3rem;
    color: #0d404a;
    margin-bottom: 10px;
}

/* Title */
.about-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #0d404a;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Highlighted Text in Title */
.about-title span {
    color: #feb226;
}

/* Description */
.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* Additional Details */
.about-details {
    font-size: 1.1rem;
    color: #0d404a;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Read More Section */
.read-more-content {
    display: none;
    margin-top: 20px;
    padding: 20px 25px;
    border-top: 3px solid #feb226;
    padding-bottom: 30px;
    max-height: none;
    background: #e8f5f5;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(13, 64, 74, 0.15);
}

/* Read More Content Styling */
.read-more-content ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.read-more-content li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 1.8;
}

/* Fix Font Awesome Icons */
.read-more-content li em {
    color: #8ec7bf;
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background: #643d8d;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.read-more-btn em {
    margin-left: 6px;
}

.read-more-btn:hover {
    background: #643d8d;
    color: #FFFFFF;
    transform: scale(1.08);
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .read-more-content {
        padding-bottom: 20px;
    }

    .read-more-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Right Content (Image with Video Play Button) */
.about-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(13, 64, 74, 0.8);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: #feb226;
    color: #0d404a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section::before {
        background-size: 600px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image {
        max-width: 100%;
    }

    .about-section::before {
        background-size: 450px;
        opacity: 0.3;
    }
}

/* Section */
.white-amenities-section {
    background: #ffffff;
    padding: 100px 30px;
    text-align: center;
}

/* Container */
.white-amenities-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Title */
.white-amenities-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #643d8d;
    margin-bottom: 50px;
}

/* Grid */
.white-amenities-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* Amenity Box */
.white-amenity-box {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.white-amenity-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(100, 61, 141, 0.25);
}

/* Icons */
.white-icon {
    font-size: 2.8rem;
    color: #643d8d;
    margin-bottom: 20px;
}

/* Text */
.white-amenity-box p {
    font-size: 1.1rem;
    color: #0d404a;
    font-weight: 500;
}


/* Section */
.white-amenities-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
  padding: 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.white-amenities-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #feb226, #fb9420, #643d8d);
}

/* Container */
.white-amenities-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Title */
.white-amenities-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0d404a;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.white-amenities-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #feb226, #fb9420);
  border-radius: 2px;
}

/* Grid */
.white-amenities-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Amenity Box */
.white-amenity-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  width: 240px;
  box-shadow: 0 12px 30px rgba(13, 64, 74, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(254, 178, 38, 0.2);
  position: relative;
  overflow: hidden;
}

.white-amenity-box:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(13, 64, 74, 0.2);
}

.white-amenity-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #643d8d, #fb9420);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.white-amenity-box:hover::after {
  opacity: 1;
}

/* Animated Icons */
.white-icon {
  font-size: 3.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.white-icon::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(254, 178, 38, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
}

.white-amenity-box:hover .white-icon {
  animation: bounce 0.8s ease;
}

.white-amenity-box:hover .white-icon::before {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-15px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-7px); }
}

/* Color variations for icons */
.white-icon.color-1 { color: #643d8d; }
.white-icon.color-2 { color: #feb226; }
.white-icon.color-3 { color: #fb9420; }
.white-icon.color-4 { color: #0d404a; }

/* Text */
.white-amenity-box p {
  font-size: 1.2rem;
  color: #0d404a;
  font-weight: 600;
  margin-top: 15px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.white-amenity-box:hover p {
  color: #643d8d;
}

/* Responsive Design - Only for mobile/tablet */
@media (max-width: 1024px) {
  .white-amenities-grid {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .white-amenities-section {
    padding: 80px 20px;
  }
  
  .white-amenities-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .white-amenity-box {
    width: calc(50% - 30px);
    max-width: none;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .white-amenity-box {
    width: 100%;
    max-width: 280px;
  }
}


/* Hotel Blue - Luxury Rooms Section */
.hotelblue-rooms-section {
    background: linear-gradient(135deg, #0d404a 0%, #643d8d 100%); /* Deep teal to purple gradient */
    padding: 20px 20px;
    text-align: center;
    position: relative;
    color: #8ec7bf; /* Soft aqua text */
    border-top: 3px solid #feb226; /* Golden yellow top border */
    border-bottom: 3px solid #fb9420; /* Orange bottom border */
    box-shadow: 0 10px 30px rgba(13, 64, 74, 0.5); /* Deep teal shadow */
}

.hotelblue-rooms-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #feb226, #fb9420, #643d8d); /* Colorful top accent */
}

.hotelblue-rooms-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #643d8d, #8ec7bf, #feb226); /* Colorful bottom accent */
}

/* Section Header */
.hotelblue-rooms-header {
    margin-bottom: 40px;
}

.hotelblue-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #feb226; /* Gold */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hotelblue-subtitle {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Rooms Container */
.hotelblue-rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Room Cards */
.hotelblue-room-card {
    position: relative;
    height: 420px;
    background-color: #643d8d; /* Darker Blue */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.4); /* Smooth Shadow */
    opacity: 0; /* Initially Hidden */
    transform: scale(0.9);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Activate Animation When In View */
.hotelblue-room-card.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Overlay Styling */
.hotelblue-room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)); /* Dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hotelblue-room-card:hover .hotelblue-room-overlay {
    opacity: 1;
}

/* Room Text */
.hotelblue-room-overlay h3 {
    font-size: 1.8rem;
    color: #feb226; /* Gold */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hotelblue-room-overlay p {
    font-size: 1rem;
    color: #FAFAFA;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

/* Book Now Button */
.hotelblue-room-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #643d8d; /* Deep Blue */
    color: #FAFAFA;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(22, 62, 89, 0.5);
}

.hotelblue-room-btn:hover {
    background: #FFB700; /* Light Gold */
    transform: translateY(-5px);
    color: #643d8d;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hotelblue-rooms-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hotelblue-rooms-container {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .hotelblue-rooms-container {
        flex-direction: column;
        max-width: 100%;
    }
}

/* Nearby Attractions Section */
.nearby-attractions-section {
    padding: 20px 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 2 1'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%230d404a'/%3E%3Cstop offset='0.5' stop-color='%23feb226'/%3E%3Cstop offset='1' stop-color='%23643d8d'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23643d8d' stop-opacity='0.2'/%3E%3Cstop offset='1' stop-color='%23643d8d' stop-opacity='0.6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='2' y2='2'%3E%3Cstop offset='0' stop-color='%238ec7bf' stop-opacity='0.2'/%3E%3Cstop offset='1' stop-color='%238ec7bf' stop-opacity='0.6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='2' height='1'/%3E%3Cg fill-opacity='1'%3E%3Cpolygon fill='url(%23b)' points='0 1 0 0 2 0'/%3E%3Cpolygon fill='url(%23c)' points='2 1 2 0 0 0'/%3E%3Cpolygon fill='url(%23b)' points='0 0 0 0.3 2 0.3'/%3E%3Cpolygon fill='url(%23c)' points='2 0 2 0.3 0 0.3'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff; /* White Text */
    text-align: center;
}

/* Section Header */
.section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(to right, #feb226, #643d8d, #8ec7bf, #fb9420); /* Gradient Colors */
    -webkit-background-clip: text; /* Clip background to text */
    background-clip: text; /* For Firefox */
    color: transparent; /* Make text color transparent to show gradient */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.section-header p {
    font-size: 1.2rem;
    color: #C0C0C0; /* Soft Silver */
    margin-bottom: 40px;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    perspective: 1500px; /* 3D effect */
}

/* Attraction Card */
.attraction-card {
    position: relative;
    width: 100%;
    height: 320px;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
    cursor: pointer;
    border-radius: 12px;
}

.attraction-card:hover {
    transform: rotateY(180deg); /* Flip effect */
}

/* Card Front & Back */
.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Card Front */
.card-front {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Card Back */
.card-back {
    background: #643d8d;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.card-back h3 {
    font-size: 1.6rem;
    color: #feb226; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.card-back p {
    font-size: 1rem;
    color: #C0C0C0; /* Soft Silver */
    margin-bottom: 15px;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #feb226; /* Rustic Orange */
    color: #FAFAFA;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.learn-more-btn:hover {
    background: #feb226; /* Gold */
    transform: scale(1.1);
    color: #643d8d;
}

/* More Attractions Button */
.more-attractions {
    text-align: center;
    margin-top: 40px;
}

.more-attractions-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #feb226; /* Rustic Orange */
    color: #643d8d;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.more-attractions-btn:hover {
    background-color: #feb226; /* Gold */
    color: #643d8d;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .attractions-grid {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .attractions-grid {
        flex-direction: column;
        max-width: 100%;
    }
}
/* Gallery Section */
.elegant-photo-gallery {
    padding: 60px 5%;
    /* Deep Blue Gradient */
    text-align: center;
}

/* Section Title */
.gallery-title {
    font-size: 3rem;
    color: #feb226; /* Bright Gold */
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Gallery Container */
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Main Image Container */
.gallery-main {
    width: 85%;
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2); /* Subtle Gold Glow */
    background: #001F3F; /* Darker Blue */
	    border: 5px solid #0a2a3a;
}


/* Main Image */
.main-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
}

/* Image Overlay with Caption */
.main-image::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 39, 77, 0.8); /* Transparent Navy */
    color: #feb226; /* Bright Gold */
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hover Effects */
.main-image:hover {
    transform: scale(1.03);
    box-shadow: 0px 20px 40px rgba(255, 215, 0, 0.4); /* Gold Glow */
}

.main-image:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Thumbnail Gallery */
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 85%;
}

/* Thumbnails */
.thumbnail {
    width: 110px;
    height: 110px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2); /* Subtle Gold Shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid #0a2a3a;
	   
}

/* Hover Effect on Thumbnails */
.thumbnail:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4); /* Highlighted Gold */
    border-color: #feb226; /* Gold Border */
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-main {
        width: 100%;
        height: 350px;
    }

    .gallery-thumbnails {
        width: 100%;
        gap: 15px;
    }

    .thumbnail {
        width: 90px;
        height: 90px;
    }
}



/* Map & Booking Section */
.map-booking-modern {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    padding: 80px 5%;
    background: linear-gradient(145deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.map-booking-modern::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #feb226, #fb9420, #643d8d);
}

/* Map Section */
.map-wrapper-modern {
    flex: 1;
    background: linear-gradient(135deg, #0d404a 0%, #643d8d 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(13, 64, 74, 0.3);
    border: 2px solid rgba(254, 178, 38, 0.3);
}

.map-wrapper-modern::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(254, 178, 38, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.map-heading-modern {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.map-heading-modern h2 {
    font-size: 2.2rem;
    margin: 0;
    color: #feb226;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.map-heading-modern h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fb9420;
    border-radius: 3px;
}

.map-heading-modern p {
    font-size: 1.1rem;
    margin-top: 15px;
    color: #ffffff;
    opacity: 0.9;
}

.map-frame-modern {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 2px solid rgba(254, 178, 38, 0.2);
}

.map-frame-modern:hover {
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.map-frame-modern iframe {
    width: 100%;
    height: 450px;
    border: none;
    transition: transform 0.5s ease;
}

.map-frame-modern:hover iframe {
    transform: scale(1.03);
}

.explore-map-modern {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #feb226 0%, #fb9420 100%);
    color: #0d404a;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(254, 178, 38, 0.5);
    z-index: 2;
    letter-spacing: 1px;
    border: none;
    overflow: hidden;
}

.explore-map-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.explore-map-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(254, 178, 38, 0.7);
}

.explore-map-modern:hover::before {
    left: 100%;
}

/* Booking Section */
.booking-wrapper-modern {
    flex: 1;
    background: linear-gradient(135deg, #643d8d 0%, #0d404a 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    animation: slideInFromRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(100, 61, 141, 0.3);
    border: 2px solid rgba(254, 178, 38, 0.3);
    overflow: hidden;
}

.booking-wrapper-modern::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 178, 38, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.booking-wrapper-modern h3 {
    font-size: 2.2rem;
    color: #feb226;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.booking-wrapper-modern h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fb9420;
    border-radius: 3px;
}

.booking-wrapper-modern p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Booking Button */
.booking-btn-modern {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    color: #0d404a;
    background: linear-gradient(135deg, #feb226 0%, #fb9420 100%);
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(254, 178, 38, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    z-index: 1;
}

.booking-btn-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fb9420 0%, #feb226 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.booking-btn-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(254, 178, 38, 0.7);
    color: #0d404a;
}

.booking-btn-modern:hover::before {
    opacity: 1;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 2px solid rgba(254, 178, 38, 0.3);
}

.video-container:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    transition: transform 0.5s ease;
}

.video-container:hover iframe {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 992px) {
    .map-booking-modern {
        flex-direction: column;
        gap: 50px;
        padding: 60px 5%;
    }
    
    .map-frame-modern iframe,
    .video-container iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-heading-modern h2,
    .booking-wrapper-modern h3 {
        font-size: 1.8rem;
    }
    
    .map-frame-modern iframe,
    .video-container iframe {
        height: 300px;
    }
    
    .booking-btn-modern {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) rotateY(20deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(80px) rotateY(-20deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}


/* Footer Section */
.aligned-footer {
    background: linear-gradient(145deg, #0d404a 0%, #643d8d 100%); /* Teal to Purple Gradient */
    color: #FFFFFF; /* White text */
    padding: 15px 5%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(13, 64, 74, 0.6);
    border-top: 3px solid #feb226; /* Golden top border */
}

/* Decorative elements */
.aligned-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #feb226, #fb9420, #643d8d);
}

/* Top Row: Logo and Social Media */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo-wrapper {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    filter: drop-shadow(0px 0px 15px rgba(254, 178, 38, 0.5)); /* Gold Glow */
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #feb226, #fb9420); /* Gold-Orange Gradient */
    border-radius: 50%;
    font-size: 1.4rem;
    color: #0d404a; /* Dark teal */
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.footer-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(254, 178, 38, 0.6);
    background: linear-gradient(135deg, #fb9420, #feb226);
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

/* Section Headers */
.footer-contact h4,
.footer-links h4,
.footer-policies h4 {
    font-size: 1.4rem;
    color: #feb226; /* Gold */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after,
.footer-links h4::after,
.footer-policies h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #feb226, #fb9420);
}

/* Contact Section */
.footer-contact p,
.footer-policies ul li {
    margin: 8px 0;
    color: #FFFFFF; /* White */
    line-height: 1.6;
}

.contact-phone {
    color: #fb9420; /* Orange */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #feb226; /* Gold */
    text-shadow: 0 0 8px rgba(254, 178, 38, 0.3);
}

/* Quick Links */
.footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    gap: 2px;
}

.footer-links ul li {
    margin-bottom: 0px;
    position: relative;
    padding-left: 25px;
    transition: transform 0.3s ease;
}

.footer-links ul li:hover {
    transform: translateX(5px);
}

.footer-links ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #fb9420; /* Orange arrow */
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-links ul li:hover::before {
    transform: translateX(3px);
    color: #feb226;
}

.footer-links ul a {
    color: #FFFFFF; /* White */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul a:hover {
    color: #feb226; /* Gold */
    text-shadow: 0 0 5px rgba(254, 178, 38, 0.3);
}

/* Footer Policies */
.footer-policies ul {
    list-style: none;
    padding: 0;
}

.footer-policies ul li {
    position: relative;
    padding-left: 20px;
}

.footer-policies ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fb9420;
    font-size: 1.5rem;
    line-height: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    color: #FFFFFF; /* White */
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(254, 178, 38, 0.3);
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #feb226, transparent);
}

.footer-bottom a {
    color: #feb226; /* Gold */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #fb9420; /* Orange */
    text-shadow: 0 0 5px rgba(254, 178, 38, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links ul {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-social-icons {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-logo-wrapper {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-contact,
    .footer-links,
    .footer-policies {
        text-align: center;
    }
    
    .footer-contact h4::after,
    .footer-links h4::after,
    .footer-policies h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-links ul li::before {
        display: none;
    }
}


/* 📍 Inner Page Hero Section */
.inner-hero {
    position: relative;
    height: 300px; /* Adjusted height for better visibility */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* 🖼 Background Image */
.inner-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* 🔳 Dark Overlay */
.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay for better contrast */
    z-index: 1;
}

/* ✨ Content */
.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 10px 20px;
}

/* 🏷 Title */
.inner-hero-title {
    font-size: 2.5rem; /* Adjusted size */
    font-weight: 700;
    color: #feb226; /* Gold */
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* 📌 Subtitle */
.inner-hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.95;
}

/* 📱 Responsive Design */
@media (max-width: 820px) {
    .inner-hero {
        height: 250px;
    }
    .inner-hero-title {
        font-size: 2rem; /* Reduce for small screens */
    }
    .inner-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 538px) {
    .inner-hero {
        height: 220px;
    }
    .inner-hero-title {
        font-size: 1.8rem;
    }
    .inner-hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 430px) {
    .inner-hero {
        height: 200px;
    }
    .inner-hero-title {
        font-size: 1.6rem;
    }
    .inner-hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 393px) {
    .inner-hero {
        height: 180px;
    }
    .inner-hero-title {
        font-size: 1.5rem;
    }
    .inner-hero-subtitle {
        font-size: 0.85rem;
    }
}





/* Amenities Section */
.hotel-amenities {
    padding: 80px 5%;
    background: linear-gradient(135deg, #643d8d, #feb226); /* Dark Blue Gradient */
    text-align: center;
    color: #FFFFFF;
}

/* Section Header */
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #feb226; /* Gold */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.2rem;
    color: #F2F2F2;
    margin-bottom: 40px;
}

/* Amenities Grid */
.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Amenity Box */
.amenity-box {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4); /* Gold Glow */
}

.amenity-box em {
    font-size: 3rem;
    color: #feb226; /* Gold */
    margin-bottom: 10px;
}

.amenity-box h3 {
    font-size: 1.3rem;
    color: #643d8d;
    font-weight: bold;
}

.amenity-box p {
    font-size: 1rem;
    color: #4a4a4a;
}

/* Accessible Amenities Section */
.accessible-amenities {
    margin-top: 50px;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Title Styling */
.accessible-amenities h3 {
    font-size: 2rem;
    color: #643d8d; /* Dark Blue */
    margin-bottom: 20px;
    text-align: center;
}

/* Grid Layout */
.accessible-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

/* Two Columns */
.accessible-grid ul {
    list-style: none;
    padding: 0;
    flex: 1;
}

/* Individual List Item */
.accessible-grid li {
    font-size: 1.1rem;
    padding: 12px;
    color: #643d8d;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

/* Icon Styling */
.accessible-grid li em {
    color: #feb226; /* Gold */
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .amenities-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
	.accessible-grid {
        flex-direction: column;
    }
}



/* Things to Do Section */
.things-to-do {
    background: linear-gradient(to right, #feb226, #643d8d); /* Deep Blue Gradient */
    padding: 100px 5%;
    color: #fff;
    text-align: center;
    position: relative;
}

/* Section Heading */
.section-header h2 {
    font-size: 3rem;
    color: #feb226;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #ddd;
}

/* Grid Layout */
.things-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Item */
.things-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    position: relative;
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.things-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

/* Icon Styling */
.things-icon {
    font-size: 2.5rem;
    color: #feb226;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Text Styling */
.things-item h3 {
    font-size: 1.8rem;
    color: #feb226;
    margin-bottom: 10px;
}

.things-item p {
    font-size: 1.1rem;
    color: #E0E0E0;
}

/* Hover Effect on Icon */
.things-item:hover .things-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .things-grid {
        grid-template-columns: 1fr;
    }
    
    .things-item {
        text-align: center;
    }
    
    .things-icon {
        margin-bottom: 10px;
    }
}



/* Modern Location Section */
.modern-location-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: #001A33; /* Dark Blue for background */
    color: #FFFFFF; /* White text for contrast */
}

.modern-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    background-color: #003366; /* Deep Blue for container */
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); /* Enhance depth */
}

/* Left Side: Text */
.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-title {
    font-size: 2.8rem;
    color: #feb226; /* Gold for Title */
    margin-bottom: 20px;
    text-transform: uppercase;
	
}

.location-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #FFFFFF; /* White for readability */
}

/* Coordinates Box */
.coordinates-box {
    background-color: #004E89; /* Darker Blue for contrast */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2); /* Gold glow effect */
}

.coordinates-title {
    font-size: 1.8rem;
    color: #feb226; /* Gold */
    margin-bottom: 15px;
}

.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.coordinate em {
    font-size: 24px;
    margin-right: 10px;
    color: #feb226; /* Gold icons */
}

/* Directions Form */
.directions-form {
    margin-top: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid #feb226; /* Gold border */
    background-color: #643d8d; /* Dark Navy for field */
    color: #FFFFFF;
    font-size: 1rem;
}

.directions-btn {
    width: 100%;
    padding: 15px;
    background-color: #feb226; /* Gold button */
    border: none;
    color: #643d8d; /* Dark text */
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.directions-btn:hover {
    background-color: #FFB700; /* Lighter Gold hover effect */
    color: #643d8d;
}

/* Right Side: Image */
.location-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-image .image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3); /* Gold glow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image .image:hover {
    transform: scale(1.1); /* Smooth hover effect */
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4); /* Enhanced gold shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-container {
        flex-direction: column;
        padding: 30px;
    }

    .location-image {
        margin-top: 30px;
    }
}





/* Futuristic Contact Section */
.futuristic-contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: #001A33; /* Dark Blue Background */
    color: #FFFFFF; /* White Text */
}

/* Container */
.futuristic-contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    background-color: #003366; /* Deep Blue Container */
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Title */
.futuristic-contact-title {
    font-size: 2.8rem;
    color: #feb226; /* Gold Title */
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

/* Description */
.new-facility-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
}

/* Contact Info */
.futuristic-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.futuristic-info-block {
    background: #004E89; /* Dark Blue Box */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.futuristic-info-block h2 {
    font-size: 1.8rem;
    color: #feb226; /* Gold */
    margin-bottom: 10px;
}

.futuristic-info-block p {
    font-size: 1.2rem;
    color: #FFFFFF;
}

.futuristic-info-block a {
    color: #feb226;
    text-decoration: none;
    font-weight: bold;
}

.futuristic-info-block a:hover {
    color: #FFB700;
}

/* Image Block */
.futuristic-image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .futuristic-contact-container {
        flex-direction: column;
        padding: 30px;
    }

    .futuristic-image-block {
        margin-top: 30px;
    }
}




/* Sitemap Section */
.sitemap-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #f4f4f9, #eae7ee);
    color: #0d3d67;
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #0d3d67; /* Bright text for contrast */
    margin-bottom: 20px;
    font-weight: 700;
   
}

.sitemap-subtitle {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 50px;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent dark background */
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #83SFC0; /* Lighter blue */
    margin-bottom: 15px;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
	  gap: 4px;
}

.sitemap-block ul li a em {
    margin-right: 10px;
    font-size: 1rem;
    color: #83SFC0; /* Blue chevron icon */
}

.sitemap-block ul li a:hover {
    color: #83SFC0; /* Lighter blue hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}




/* Coming Soon Section */
.coming-soon-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #643d8d, #feb226); /* Dark Blue Gradient */
    color: #feb226; /* Gold Text */
    text-align: center;
}

.coming-soon-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent White */
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); /* Gold Shadow */
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #FAFAFA; /* Soft White */
}

.coming-soon-text a {
    color: #feb226;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.coming-soon-text a:hover {
    color: #FFB700; /* Lighter Gold */
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 30px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.3rem;
    }
}



/* Reservation Alert Section */
.reservation-alert {
    background: linear-gradient(135deg, #feb226, #FFA500); /* Gold to Orange */
    color: #643d8d; /* Dark Blue Text */
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Call Icon */
.call-icon {
    font-size: 2.5rem;
    color: #643d8d; /* Dark Blue */
}

/* Text Container */
.reservation-text {
    text-align: center;
}

.reservation-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.reservation-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Call Button */
.reservation-call-btn {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFFFFF;
    background: #643d8d; /* Dark Blue */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.reservation-call-btn:hover {
    background: #004080; /* Lighter Blue */
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reservation-alert {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .call-icon {
        font-size: 2rem;
    }

    .reservation-title {
        font-size: 1.8rem;
    }

    .reservation-subtitle {
        font-size: 1rem;
    }

    .reservation-call-btn {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}





/* Historical Attraction Section */
.historical-attraction {
    padding: 60px 20px;
    background: url('assets/images/texture.jpg') no-repeat center center / cover;
    color: #ffffff;
    text-align: center;
}

.attraction-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(2, 26, 51, 0.85); /* Semi-transparent Dark Blue */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.attraction-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.attraction-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Highlights Section */
.attraction-highlights {
    padding: 60px 20px;
    background: #004D73; /* Deep Blue */
}

.highlights-container {
    max-width: 1100px;
    margin: 0 auto;
}

.highlights-container h3 {
	text-align:center;
	color: #FFC72C; 
    font-size: 2rem;
    margin-bottom: 30px;
}

.highlight-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight {
    background: #643d8d;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.highlight em {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: #FFC72C; /* Gold Icons */
}

.highlight h4 {
	color: #FFC72C; 
    font-size: 1.4rem;
    margin-bottom: 10px;
	text-align:center;
}

/* Stay Nearby Section */
.stay-nearby {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #004D73, #002B4C); /* Deep Blue Gradient */
    color: #ffffff;
}

.stay-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stay-container h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.stay-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stay-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #FFC72C; /* Gold */
    color: #001F36; /* Dark Blue */
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.stay-btn:hover {
    background: #E6B800; /* Darker Gold */
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .highlight-boxes {
        flex-direction: column;
        align-items: center;
    }

    .highlight {
        width: 90%;
    }

    .attraction-container,
    .stay-container {
        width: 100%;
        padding: 20px;
    }
}


.faq-section {
    padding: 50px 20px;
    background: radial-gradient(circle at center, #000000, #007fffab); /* Dark Blue gradient background */
    color: #ffffff; /* White text for readability */
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    color: #feb226; /* Gold for the title */
}

.faq-list {
    text-align: left;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Soft white border */
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white for background */
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #feb226; /* Gold for questions */
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #E0F7F7; /* Light Blue for answers */
}

.faq-answer a {
    color: #fff; /* Greenish Blue for links */
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: none;
    color: #feb226; /* Lighter Greenish Blue for hover */
}





/* 📖 About & Experience Section */
.railroad-about, .railroad-experience {
    padding: 60px 20px;
    background: #021B40; /* Deep Navy Blue */
    text-align: center;
    color: white;
}

.railroad-title, .railroad-experience-title {
    font-size: 2rem;
    color: #feb226; /* Gold Accent */
    margin-bottom: 15px;
}

.railroad-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 10px auto;
    color: #d9e1ea; /* Light Text for readability */
    line-height: 1.6;
}

/* 🚂 Highlights Section */
.railroad-highlights {
    padding: 60px 20px;
    background: #FFFFFF;
    text-align: center;
}

.railroad-highlight-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #002F5D; /* Dark Blue */
    font-weight: bold;
}

.railroad-highlight-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.railroad-highlight {
    background: #002F5D; /* Dark Blue */
    color: white;
    padding: 25px;
    width: 320px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.railroad-highlight em {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #feb226; /* Gold Accent */
}

.railroad-highlight h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.railroad-highlight p {
    font-size: 1rem;
    color: #E0E8F0; /* Soft Blue-Grey */
}

.railroad-highlight:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* 🏨 Stay Nearby Section */
.railroad-stay-nearby {
    padding: 50px 20px;
    background: linear-gradient(to right, #021B40, #003E7C); /* Dark Blue Gradient */
    text-align: center;
    color: white;
}

.railroad-stay-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #feb226; /* Gold Accent */
}

.railroad-stay-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.railroad-stay-btn {
    background: #feb226; /* Gold */
    color: #002F5D; /* Dark Blue */
    padding: 14px 22px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.railroad-stay-btn:hover {
    background: #FFC72C; /* Brighter Gold */
    transform: scale(1.1);
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .railroad-hero-title {
        font-size: 2.3rem;
    }

    .railroad-hero-subtitle {
        font-size: 1.1rem;
    }

    .railroad-highlight-boxes {
        flex-direction: column;
        align-items: center;
    }

    .railroad-highlight {
        width: 90%;
    }

    .railroad-stay-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
}





/* 🍔 Sonic Drive-In Section */
.sonic-intro {
    padding: 60px 20px;
    background: #021B40; /* Deep Navy Blue */
    text-align: center;
    color: white;
}

.sonic-title {
    font-size: 2.2rem;
    color: #feb226; /* Gold */
    margin-bottom: 20px;
}

.sonic-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #d9e1ea; /* Light Text */
}

.sonic-address {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 15px;
    color: #feb226; /* Gold Accent */
}

/* 🍟 Sonic Menu Highlights */
.sonic-menu {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.menu-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #002F5D; /* Dark Blue */
    font-weight: bold;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.menu-item {
    background: #002F5D; /* Dark Blue */
    color: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item em {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #feb226; /* Gold */
}

.menu-item h4 {
    font-size: 1.3rem;
    font-weight: bold;
}

.menu-item:hover {
    transform: scale(1.05);
}

/* 🏨 Stay Near Sonic Section */
.sonic-stay {
    padding: 50px 20px;
    background: linear-gradient(to right, #021B40, #003E7C);
    text-align: center;
    color: white;
}

.stay-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #feb226; /* Gold */
}

.stay-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.stay-btn {
    background: #feb226; /* Gold */
    color: #002F5D; /* Dark Blue */
    padding: 14px 22px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.stay-btn:hover {
    background: #FFC72C;
    transform: scale(1.1);
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .menu-items {
        flex-direction: column;
        align-items: center;
    }

    .menu-item {
        width: 90%;
    }

    .stay-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }
}




/* 🌲 Park Overview */
.park-overview {
    padding: 60px 20px;
    background: #f4f4f4;
    text-align: center;
}

.park-title {
    font-size: 2.2rem;
    color: #003C5D;
    margin-bottom: 15px;
}

.park-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: #333;
}

/* 🏕 Activities Section */
.park-activities {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.activities-title {
    font-size: 2rem;
    color: #003C5D;
    margin-bottom: 30px;
}

.activity-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.activity {
    background: #003C5D;
    color: white;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.activity em {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #feb226;
}

.activity h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.activity p {
    font-size: 1rem;
}

.activity:hover {
    transform: scale(1.05);
}

/* 🏕 Facilities Section */
.park-facilities {
    padding: 60px 20px;
    background: #f4f4f4;
    text-align: center;
}

.facilities-title {
    font-size: 2rem;
    color: #003C5D;
    margin-bottom: 20px;
}

.facilities-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #333;
}

.facilities-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.facilities-list li {
    font-size: 1.1rem;
    color: #003C5D;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.facilities-list em {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #feb226;
}

/* 🏨 Stay Nearby */
.park-stay-nearby {
    padding: 50px 20px;
    background: linear-gradient(to right, #003C5D, #0052A5);
    text-align: center;
    color: white;
}

.stay-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stay-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.stay-btn {
    background: #feb226;
    color: #003C5D;
    padding: 12px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.stay-btn:hover {
    background: #FFC72C;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .park-title {
        font-size: 2rem;
    }

    .activities-title,
    .facilities-title,
    .stay-title {
        font-size: 1.8rem;
    }

    .activity-boxes {
        flex-direction: column;
        align-items: center;
    }

    .activity {
        width: 90%;
    }
}

.yellow-link {
    color: #feb226;
    text-decoration: none; /* Optional: Removes underline */
}

.yellow-link:hover {
    color: orange; /* Change this to any color you prefer on hover */
}
.blue-link {
    color: #643d8d;
    text-decoration: none; /* Optional: Removes underline */
}

.blue-link:hover {
    color: #feb226; /* Change this to any color you prefer on hover */
}


/* 🌟 Booking Form Styling in Welcome Section */
.welcome-booking-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background-color: #643d8d; /* Deep navy blue to match the section background */
    padding: 30px 20px;
    border-top: 2px solid #feb226;
	border-bottom: 2px solid #feb226;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
    width: 100%;
}

/* 📌 Input & Select Fields */
.welcome-form-group {
    display: flex;
    flex-direction: column;
    background-color: #ffffff; /* White fields for contrast */
    border-radius: 8px;
    padding: 14px;
    flex: 1;
    min-width: 180px;
    transition: all 0.3s ease-in-out;
}

.welcome-form-group label {
    font-size: 16px;
    color: #022851;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
}

.welcome-form-group em {
    color: #f9c74f; /* Yellow icon accent */
}

.welcome-form-group input,
.welcome-form-group select {
    background: transparent;
    border: none;
    color: #022851;
    font-size: 15px;
    outline: none;
    margin-top: -23px;
    font-weight: 500;
    text-align: right;
}

/* 📌 Button - Yellow CTA */
.welcome-booking-btn {
    background: #643d8d;
    color: #f9c74f;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(249, 199, 79, 0.4);
}

.welcome-booking-btn:hover {
    background: #f9844a;
    color: white;
    box-shadow: 0px 6px 15px rgba(249, 132, 74, 0.6);
}

/* 🎯 Responsive Design */
@media (max-width: 820px) {
    .welcome-booking-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .welcome-form-group {
        width: 100%;
        min-width: unset;
    }

    .welcome-booking-btn {
        width: 100%;
    }
}

@media (max-width: 538px) {
    .welcome-booking-form {
        padding: 20px 15px;
    }

    .welcome-form-group label {
        font-size: 14px;
    }

    .welcome-booking-btn {
        padding: 12px;
        font-size: 14px;
    }
}




#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #f9c74f; /* Yellow button */
    color: #022851; /* Navy icon */
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    display: none; /* hidden by default */
    transition: all 0.3s ease-in-out;
}

#backToTop:hover {
    background-color: #f9844a;
    color: white;
}


.readtitle {
	font-size: 26px;
    font-weight: 500;
    color: #614f8a;
}
.readtitle1 {
	color: #feb226;
	font-size: 1.8rem;
    font-weight: 500;
}.readtitle2 {
	color: #fff;
	font-size: 1.8rem;
    font-weight: 500;
}

.sitemap-subtitle1 {
    font-size: 18px;
    font-weight: 400;
    color: #555; /* or use a custom color like #2c3e50 for better contrast */
    
   
    
}
.faq-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
   
}

.video-placeholder {
    background-color: #f5f5f5;
    border: 2px dashed #ccc;
    padding: 40px;
    text-align: center;
    height: 315px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder h4 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: #666;
    margin-bottom: 10px;
}






.location-container {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  background: white;
}

.location-title {
  text-align: center;
  color: #643d8d;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #014886;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.coordinates-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #643d8d;
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: #feb226;
  font-size: 1.2rem;
}

.directions-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: #643d8d;
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: #014886;
  box-shadow: 0 0 0 3px rgba(1, 72, 134, 0.2);
}

.directions-form button {
  background: #643d8d;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: #feb226;
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }
  
  .location-info, .location-map {
    width: 100%;
  }
}





.content-wrapper {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }


.contact-card {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out 0.4s forwards;
            opacity: 0;
            transform: translateY(20px);
            height: 450px;
        }
        
        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card h2 {
            color: #643d8d;
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
        }
        
        .contact-card h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .info-item i {
            color: #feb226;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--hampton-blue);
        }
        
        .info-text p, .info-text a {
            font-size: 1.1rem;
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-text a:hover {
            color: var(--hampton-blue);
        }
        
        .map-container {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: slideUp 0.8s ease-out 0.6s forwards;
            opacity: 0;
            transform: translateY(20px);
            height: 450px;
        }
        
        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }
        
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }
            
            .content-wrapper {
                flex-direction: column;
            }
            
            .contact-card, .map-container {
                width: 100%;
                height: auto;
            }
            
            .map-container {
                height: 350px;
            }
        }

         /* Scoped styles using section ID */
        #hotel-navigation-section .attractive-nav-container {
            padding: 20px 0;
            margin: 0 auto;
            max-width: 1200px;
        }
        
        #hotel-navigation-section .nav-column {
            padding: 0 10px;
            margin-bottom: 15px;
        }
        
        #hotel-navigation-section .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            height: 100%;
        }
        
        #hotel-navigation-section .nav-item {
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: #2c3e50;
            text-decoration: none;
            background: white;
            border-radius: 8px;
            padding: 20px 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e0e0e0;
        }
        
        #hotel-navigation-section .nav-link:hover {
            background: #0047b5;
            color: white;
            box-shadow: 0 5px 15px rgba(0,71,181,0.2);
            transform: translateY(-3px);
        }
        
        #hotel-navigation-section .nav-icon {
            font-size: 24px;
            margin-bottom: 10px;
            color: #e30404;
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link:hover .nav-icon {
            color: white;
            transform: scale(1.1);
        }
        
        #hotel-navigation-section .nav-text {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        #hotel-navigation-section .nav-desc {
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        /* Responsive styles scoped to this section */
        @media (min-width: 768px) {
            #hotel-navigation-section .nav-link {
                padding: 25px 15px;
            }
            #hotel-navigation-section .nav-text {
                font-size: 17px;
            }
            #hotel-navigation-section .nav-desc {
                font-size: 14px;
            }
        }
        
        @media (max-width: 767px) {
            #hotel-navigation-section .nav-column {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        
        @media (max-width: 575px) {
            #hotel-navigation-section .nav-column {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

















        /* Scoped styles for premium amenities */
    .amenities-section-mod {
        --primary-color: #2c3e50;
        --secondary-color: #feb226;
        --accent-color: #643d8d;
        --text-color: #333;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
        
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .amenities-section-mod * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .amenities-section-mod .section-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    .amenities-section-mod .section-title {
        text-align: center;
        margin-bottom: 70px;
        font-size: 3rem;
        color: #643d8d;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }

    .amenities-section-mod .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        border-radius: 2px;
    }

    .amenities-section-mod .amenity-container {
        display: flex;
        align-items: stretch;
        margin-bottom: 80px;
        gap: 40px;
        position: relative;
        min-height: 500px;
    }

    .amenities-section-mod .text-container {
        flex: 1;
        padding: 50px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 2;
        flex-direction: column;
        justify-content: center;
    }

    .amenities-section-mod .text-container:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .amenities-section-mod .image-container {
        flex: 1;
        min-height: 500px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
    }

    .amenities-section-mod .image-scroller {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .amenities-section-mod .amenity-title {
        font-size: 2rem;
        margin-bottom: 25px;
        color: #643d8d;
        position: relative;
        padding-bottom: 15px;
    }

    .amenities-section-mod .amenity-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
    }

    .amenities-section-mod .amenity-list {
        list-style-type: none;
    }

    .amenities-section-mod .amenity-list li {
        padding: 12px 0;
        font-size: 1.2rem;
        color: var(--text-color);
        position: relative;
        padding-left: 40px;
        transition: var(--transition);
    }

    .amenities-section-mod .amenity-list li::before {
        content: "•";
        position: absolute;
        left: 15px;
        color: var(--secondary-color);
        font-size: 1.5rem;
    }

    @media (max-width: 1200px) {
        .amenities-section-mod .amenity-container {
            gap: 30px;
            min-height: 450px;
        }
    }

    @media (max-width: 768px) {
        .amenities-section-mod .amenity-container {
            flex-direction: column;
            min-height: 800px;
        }
        
        .amenities-section-mod .image-container,
        .amenities-section-mod .text-container {
            width: 100%;
            min-height: 400px;
        }
    }






    /* Scoped styles for amenities slider */
        .amenities-slider-section {
            --primary-color: #2c3e50;
            --accent-color: #feb226;
            --text-color: #333333;
            --box-shadow: rgba(0, 0, 0, 0.1);
            --overlay-dark: rgba(0, 0, 0, 0.7);
            --hover-color: #feb226;
            
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 40px 0;
        }

        .amenities-slider-section .amenities-slider-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #643d8d;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .amenities-slider-section .amenities-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .amenities-slider-section .amenities-slider {
            display: flex;
            gap: 30px;
            width: max-content;
            animation: scrollMarquee 30s linear infinite;
            padding: 20px 0;
        }

        .amenities-slider-section .amenities-slide {
            flex: 0 0 250px;
            background: white;
            border: 1px solid var(--box-shadow);
            border-radius: 10px;
            box-shadow: 0 4px 10px var(--box-shadow);
            text-align: center;
            padding: 25px 20px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            cursor: pointer;
        }

        .amenities-slider-section .amenities-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .amenities-slider-section .icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--accent-color);
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            border: 2px solid white;
        }

        .amenities-slider-section .icon-wrapper i {
            font-size: 2rem;
            color: white;
        }

        .amenities-slider-section .amenities-slide p {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--text-color);
            margin: 10px 0 0;
        }

        .amenities-slider-section .amenities-info-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay-dark);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .amenities-slider-section .amenities-info-overlay.active {
            display: flex;
        }

        .amenities-slider-section .info-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            width: 90%;
            max-width: 500px;
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .amenities-slider-section .close-btn {
            background: var(--primary-color);
            border: none;
            color: #fff;
            font-size: 1.5rem;
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 8px;
            border-radius: 50%;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amenities-slider-section .close-btn:hover {
            background: var(--hover-color);
        }

        .amenities-slider-section .info-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .amenities-slider-section .info-details {
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.6;
        }

        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @media (max-width: 1200px) {
            .amenities-slider-section .amenities-slide {
                flex: 0 0 220px;
            }
        }

        @media (max-width: 768px) {
            .amenities-slider-section {
                padding: 40px 0;
            }

            .amenities-slider-section .amenities-slider-title {
                font-size: 2rem;
                padding: 0 20px;
            }

            .amenities-slider-section .amenities-slide {
                flex: 0 0 200px;
                padding: 20px 15px;
            }

            .amenities-slider-section .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .amenities-slider-section .icon-wrapper i {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .amenities-slider-section .amenities-slider-title {
                font-size: 1.8rem;
            }
            
            .amenities-slider-section .amenities-slide {
                flex: 0 0 180px;
                padding: 15px 10px;
            }
            
            .amenities-slider-section .amenities-slide p {
                font-size: 1rem;
            }
        }








         /* Scoped styles with tem- prefix (Towson East Motel) */
        .things-to-do-section {
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .things-to-do-section .tem-background-animation-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            display: flex;
        }
        
        .things-to-do-section .tem-background-animation {
            width: 100%;
            height: 100%;
            background-image: url('https://framerusercontent.com/images/P66abSdxnNHmE5ZZYISnac9svI.svg');
            background-size: cover;
            background-position: center;
            background-repeat: repeat-x;
            animation: temBackgroundAnimation 4s linear infinite;
            flex-shrink: 0;
        }
        
        @keyframes temBackgroundAnimation {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        .things-to-do-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .things-to-do-section .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .things-to-do-section .title-color {
            color: #333;
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .things-to-do-section .tem-attractions-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .things-to-do-section .tem-category {
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .things-to-do-section .tem-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .things-to-do-section .tem-category-image {
            height: 200px;
            width: 100%;
            background-size: cover;
            background-position: center;
            border-bottom: 4px solid #feb226;
        }
        
        .things-to-do-section .transport-image {
    background-image: 
                    url('../images/Transport.jpg');
        }

       .things-to-do-section .airport-image {
    background-image:  
                    url('../images/airport.jpg');
}

      .things-to-do-section .restaurant-image {
    background-image: 
                    url('../images/dining.jpg');
}
        
        .things-to-do-section .tem-category-header {
            padding: 20px;
            background-color: #643d8d;
            color: white;
        }
        
        .things-to-do-section .tem-category-header h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            color: white;
        }
        
        .things-to-do-section .tem-attraction-list {
            padding: 20px;
        }
        
        .things-to-do-section .tem-attraction {
            padding: 15px 0;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .things-to-do-section .tem-attraction:last-child {
            border-bottom: none;
        }
        
        .things-to-do-section .tem-attraction-info {
            flex: 1;
        }
        
        .things-to-do-section .tem-attraction-name {
            font-weight: 500;
            margin-bottom: 4px;
            color: #333;
        }
        
        .things-to-do-section .tem-attraction-type {
            font-size: 0.85rem;
            color: #6c757d;
        }
        
        .things-to-do-section .tem-attraction-distance {
            background-color: #feb226;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            min-width: 70px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .things-to-do-section .tem-attraction:hover .tem-attraction-distance {
            background-color: #643d8d;
            transform: scale(1.05);
        }
        
        @media (max-width: 900px) {
            .things-to-do-section .tem-attractions-container {
                grid-template-columns: 1fr;
            }
            
            .things-to-do-section .tem-category {
                max-width: 500px;
                margin: 0 auto;
            }
        }




        /* Scoped styles with tem- prefix */
    .nola-attractions-section {
        padding: 60px 0;
        background-color: #fff;
        position: relative;
    }
    
    .nola-attractions-section .tem-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .nola-attractions-section .tem-nola-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .nola-attractions-section .tem-nola-title {
        font-size: 2.5rem;
        color: #643d8d;
        margin-bottom: 10px;
    }
    
    .nola-attractions-section .tem-nola-subtitle {
        color: #6c757d;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .nola-attractions-section .tem-nola-category-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .nola-attractions-section .tem-nola-tab {
        padding: 12px 24px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        color: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        background: #643d8d;
    }
    
    .nola-attractions-section .tem-nola-tab.active {
        background: #feb226;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    
    .nola-attractions-section .tem-nola-category-content {
        display: none;
        animation: temFadeIn 0.5s ease forwards;
    }
    
    @keyframes temFadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nola-attractions-section .tem-nola-category-content.active {
        display: block;
    }
    
    .nola-attractions-section .tem-nola-hero-image {
        width: 100%;
        height: 350px;
        border-radius: 12px;
        margin-bottom: 30px;
        background-size: cover;
        background-position: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    
    .nola-attractions-section .park-image {
    background-image: 
                    url('../images/Park.jpg');
}

.nola-attractions-section .historic-image {
    background-image:  
                    url('../images/river.jpg');
}

.nola-attractions-section .museum-image {
    background-image: 
                    url('../images/Museum.jpg');
}
    
    .nola-attractions-section .tem-nola-attraction-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .nola-attractions-section .tem-nola-attraction-card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid #643d8d;
    }
    
    .nola-attractions-section .tem-nola-attraction-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-left-color: #feb226;
    }
    
    .nola-attractions-section .tem-nola-attraction-name {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }
    
    .nola-attractions-section .tem-nola-attraction-description {
        color: #5a5a72;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        .nola-attractions-section .tem-nola-category-tabs {
            gap: 10px;
        }
        
        .nola-attractions-section .tem-nola-tab {
            padding: 10px 18px;
            font-size: 0.9rem;
        }
        
        .nola-attractions-section .tem-nola-hero-image {
            height: 250px;
        }
        
        .nola-attractions-section .tem-nola-attraction-grid {
            grid-template-columns: 1fr;
        }
    }





     /* Scoped styles using section ID */
        
        #hotel-navigation-section .container {
            margin: 0 auto;
            padding: 0 20px;
        }
        
        #hotel-navigation-section .navigation-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        #hotel-navigation-section .nav-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        #hotel-navigation-section .nav-item {
            display: flex;
            height: 100%;
        }
        
        #hotel-navigation-section .nav-link {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333;
            text-decoration: none;
            background: white;
            border-radius: 8px;
            padding: 25px 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            height: 120px; /* Fixed height for rectangular format */
        }
        
        #hotel-navigation-section .nav-link:hover {
            background: #643d8d;
            color: white;
            box-shadow: 0 8px 16px rgba(0, 98, 204, 0.2);
            transform: translateY(-3px);
        }
        
        #hotel-navigation-section .nav-icon {
            font-size: 24px;
            margin-bottom: 12px;
            color: #feb226;
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link:hover .nav-icon {
            color: white;
            transform: scale(1.1);
        }
        
        #hotel-navigation-section .nav-text {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        #hotel-navigation-section .nav-desc {
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            #hotel-navigation-section .nav-link {
                height: 110px;
                padding: 20px 10px;
            }
        }
        
        @media (max-width: 576px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: 1fr;
            }
            
            #hotel-navigation-section .nav-link {
                height: 100px;
                padding: 15px 10px;
            }
            
            #hotel-navigation-section {
                padding: 30px 0;
            }
        }









 /*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us {
  max-width: 1400px;
  margin: 0 auto;
}

.about-us .content {
  padding: 30px 0;
}

.about-us .content h3 {
  font-weight: 700;
  font-size: 34px;
}

.about-us .content p {
  margin-bottom: 0;
  margin-top: 20px;
}

.about-us .content .icon-box {
  margin-top: 25px;
}

.about-us .content .icon-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about-us .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #f03c02;
}

.about-us .content .icon-box p {
  font-size: 20px;
  color: #90847f;
  margin-left: 60px;
}

.about-us .image {
  background: url("../img/exteriror2.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about-us .image {
    text-align: center;
  }
  .about-us .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about-us .image img {
    max-width: 100%;
  }
}




/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 220px; /* Increased width for better readability */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    line-height: 1.3;
    font-size: 0.9em;
    white-space: normal; /* Allows text to wrap */
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown icon styling */
.dropdown-icon {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Rotate icon when dropdown is hovered */
.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Ensure line breaks work in dropdown items */
.dropdown-content br {
    display: block;
    content: "";
    margin-top: 3px;
}






































section {
            padding: 0px 0;
            overflow: hidden;
        }

        .about-us .content {
            padding: 0px 0;
        }

        .highlighted-attraction-section {
            color: black;
            text-align: center;
        }

        .highlighted-container {
            max-width: 1200px;
            margin: 40px auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
        }

        .highlighted-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
        }

        .highlighted-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .highlighted-subtitle {
            font-size: 1.3rem;
        }

        .highlighted-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            padding: 30px;
        }

        .highlighted-description {
            flex: 1;
            text-align: left;
        }

        .highlighted-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .highlighted-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .highlighted-features li strong {
            color: #643d8d;
        }

        .highlighted-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .highlighted-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #643d8d;
            color: #fff !important;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .highlighted-reservation-btn:hover {
            background: #f1a74b;
            transform: translateY(-3px);
        }

        .highlighted-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }

        .highlighted-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .highlighted-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .highlighted-content {
                flex-direction: column;
            }

            .highlighted-title {
                font-size: 2rem;
            }

            .highlighted-subtitle {
                font-size: 1.1rem;
            }
        }

        .highlighted-hospital-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #643d8d;
            text-align: center;
        }

        .highlighted-hospital-container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            background: #ffffff;
            padding: 40px;
        }

        .hospital-header {
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
            border-radius: 15px;
        }

        .hospital-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
            color: #0d3d67;
        }

        .hospital-subtitle {
            font-size: 1.3rem;
            color: #2B81A2;
        }

        .hospital-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .hospital-description {
            flex: 1;
            text-align: left;
        }

        .hospital-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .hospital-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .hospital-features li strong {
            color: #643d8d;
        }

        .hospital-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .hospital-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #643d8d;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .hospital-reservation-btn:hover {
            background: #f1a74b;
            transform: translateY(-3px);
        }

        .hospital-image {
            flex: 1;
            max-height: 300px;
            overflow: hidden;
        }

        .hospital-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hospital-img:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .hospital-content {
                flex-direction: column;
            }

            .hospital-title {
                font-size: 2rem;
            }

            .hospital-subtitle {
                font-size: 1.1rem;
            }
        }

        .attraction-details-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #643d8d;
            text-align: center;
        }

        .attraction-details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .details-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: bold;
            color: #0d3d67;
        }

        .details-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: #2B81A2;
        }

        .details-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .details-image {
            flex: 1;
        }

        .details-image .image {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .details-image .image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .details-description {
            flex: 1;
            text-align: left;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .features-list li {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #444;
        }

        .features-list li strong {
            color: #643d8d;
        }

        .details-reservation-btn {
            display: inline-block;
            padding: 15px 30px;
            background: #643d8d;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-top:10px;
        }

        .details-reservation-btn:hover {
            background: #2B81A2;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .details-content {
                flex-direction: column;
            }

            .details-title {
                font-size: 2.5rem;
            }

            .details-subtitle {
                font-size: 1.3rem;
            }
        }

        .dining-details-section {
            padding: 80px 20px;
            background: #fdfcfb;
            color: #643d8d;
            text-align: center;
        }

        .dining-details-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .dining-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #0d3d67;
        }

        .dining-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #2B81A2;
        }

        .dining-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .dining-image {
            flex: 1;
        }

        .dining-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .dining-img:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .dining-description {
            flex: 1;
            text-align: left;
        }

        .dining-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .dining-features li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .dining-features li strong {
            color: #643d8d;
        }

        .dining-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 15px;
        }

        .dining-reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #643d8d;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .dining-reservation-btn:hover {
            background: #feb226;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .dining-content {
                flex-direction: column;
            }

            .dining-title {
                font-size: 2rem;
            }

            .dining-subtitle {
                font-size: 1.1rem;
            }
        }

        .navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color:#e26811;
}
        .about-us .content p {
            margin-bottom: 0;
            margin-top: 0px;
        }