        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Navbar Styles with Animation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .navbar .logo {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .navbar .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .navbar .nav-links li {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .navbar .nav-links li:nth-child(1) {
            animation-delay: 0.1s;
        }

        .navbar .nav-links li:nth-child(2) {
            animation-delay: 0.2s;
        }

        .navbar .nav-links li:nth-child(3) {
            animation-delay: 0.3s;
        }

        .navbar .nav-links li:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #e86a33;
            transition: width 0.3s ease;
        }

        .navbar .nav-links a:hover::after {
            width: 100%;
        }

        .navbar .nav-links a:hover {
            color: #e86a33;
            transform: translateY(-2px);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s;
        }

        /* Main Content */
        .content {
            margin-top: 90px;
        }

        /* Full Width Images Section with Parallax Effect */
        .full-width-images {
            padding: 40px;
        }

        .full-width-images img {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 40px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .navbar .nav-links {
                position: fixed;
                top: 60px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transition: left 0.3s;
                gap: 20px;
            }

            .navbar .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .full-width-images {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .navbar .logo {
                height: 40px;
            }

            .full-width-images img {
                margin-bottom: 20px;
            }
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #e86a33;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }


        /* ===================== SLIDER STYLES (UPDATED WITH BUTTONS BELOW) ===================== */

        /* Main Container: Now stacked vertically */
        .main-slider-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 100%;

            padding: 20px;
            border-radius: 10px;
        }

        /* Slider Div */
        .slider-wrapper {
            flex: 1;
            width: 100%;
            overflow: hidden;
            position: relative;
            display: flex;
            justify-content: center;
            min-height: 600px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            gap: 40px;
            align-items: center;
        }

        .slider-track img {
            height: 600px;
            width: auto;
            display: block;
            border-radius: 4px;
            flex-shrink: 0;
            max-width: 100%;
            object-fit: contain;
        }

        /* Navigation buttons container - now below the slider */
        .nav-controls {
            display: flex;
            gap: 30px;
            align-items: center;
            justify-content: center;
        }

        .nav-btn {
            background-color: transparent;
            color: black;
            border: none;
            padding: 10px;
            font-size: 40px;
            cursor: pointer;
            transition: transform 0.2s ease;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            transform: scale(1.2);
            background-color: transparent;
        }

        .nav-btn:active {
            transform: scale(0.9);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .slider-heading {
                font-size: 1rem;
            }

            .slider-track img {
                height: 500px;
            }

            .slider-wrapper {
                min-height: 500px;
            }
        }

        @media (max-width: 768px) {
            .main-slider-container {

                padding: 10px;
            }

            .slider-wrapper {
                min-height: 250px;
            }

            .slider-track img {
                height: 250px;
                border-radius: 0px;
            }

            .nav-btn {
                font-size: 30px;
                width: 50px;
                height: 50px;
                border-radius: 50%;

            }

            .nav-btn:hover {
                background-color: rgba(255, 255, 255, 1);
            }

            .nav-controls {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .main-slider-container {
                margin: 0px !important;

            }

            .slider-wrapper {
                min-height: 250px;
            }

            .slider-track img {
                height: 250px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 25px;
            }

            .slider-heading {
                font-size: 1rem !important;
                margin: 0px !important;
                margin-top: 25px !important;
            }
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .lightbox-content-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 90%;
            height: 90%;
            overflow: hidden;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.1s ease;
            cursor: grab;
        }

        .lightbox-img:active {
            cursor: grabbing;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 35px;
            color: black;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 2001;
            user-select: none;
        }

        .close-btn:hover,
        .close-btn:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        /* Lightbox Navigation Buttons */
        .lightbox-controls {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 2001;
        }

        .lightbox-nav-btn {
            pointer-events: auto;
            background-color: transparent;
            color: black;
            border: none;
            font-size: 50px;
            padding: 10px;
            cursor: pointer;
            user-select: none;
            transition: transform 0.2s;
        }

        .lightbox-nav-btn:hover {
            color: #555;
            transform: scale(1.1);
        }

        /* Mobile Lightbox Controls */
        @media (max-width: 768px) {
            .lightbox-controls {
                position: static;
                transform: none;
                margin-top: 20px;
                padding: 0;
                justify-content: center;
                gap: 50px;
                pointer-events: auto;
            }

            .lightbox-content-wrapper {
                width: 100%;
                height: 40%;
            }

            .lightbox-nav-btn {
                border-radius: 50%;
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 30px;
            }
        }

        /* Slider Headings */
        .slider-heading {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
            margin-top: 40px;
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .slider-heading::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #e86a33;
            margin: 10px auto 0;
        }

        /* Amenity Card Styling */
        .amenity-card {
            background-color: #1B3556;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            height: 500px;
            width: 350px;
            flex-shrink: 0;
            margin: 0 10px;
        }

        .amenity-card img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            border-radius: 0;
            display: block;
        }

        @media (max-width: 1024px) {
            .amenity-card {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .amenity-card {
                height: 250px;
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .amenity-card {
                height: 250px;
            }
        }

        #views,
        #map,
        #amenities,
        #location {
            scroll-margin-top: 100px;
        }

        /*           AMENITIES slider           */
        .main-container3 {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }

        .slider-container3 {
            width: 90.5%;
            overflow: hidden;
            min-height: 500px;
        }

        .slider3 {
            display: flex;
            align-items: center;
            transition: transform 0.5s ease;
        }

        .card3 {
            width: 350px;
            height: 500px;
            margin: 0 20px;
            flex-shrink: 0;
            overflow: hidden;
            opacity: 0.6;
            background: #1B3556;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .card3 img {
            width: auto;
            height: 60%;
            object-fit: cover;
        }

        /* Arrows for Amenities - now below */
        .arrow-container3 {
            display: flex;
            gap: 30px;
            align-items: center;
            justify-content: center;
        }

        .arrow3 {
            background: transparent;
            color: black;
            border: none;
            font-size: 40px;
            width: 60px;
            height: 60px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .arrow3:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media screen and (max-width: 1200px) {
            .card3 {
                width: 300px;
                height: 450px;
            }
        }

        @media screen and (max-width: 1024px) {
            .slider-container3 {
                min-height: 380px;
            }

            .card3 {
                width: 260px;
                height: 380px;
            }

            .arrow3 {
                width: 50px;
                height: 50px;
                font-size: 30px;
            }
        }

        @media screen and (max-width: 768px) {
            .slider-container3 {
                min-height: 300px;
            }

            .card3 {
                width: 200px;
                height: 300px;
                margin: 0 10px;
            }

            .arrow3 {
                width: 45px;
                height: 45px;
                font-size: 25px;
                background: rgba(255, 255, 255, 0.9);
            }

            .arrow-container3 {
                gap: 20px;
            }
        }

        @media screen and (max-width: 480px) {
            .slider-container3 {
                min-height: 360px;
            }

            .card3 {
                width: 260px;
                height: 360px;
                margin: 0 5px;
            }

            .slider-container3 {
                width: 100%;
            }

            .arrow3 {
                width: 45px;
                height: 45px;
                font-size: 25px;
            }

            .arrow-container3 {
                gap: 15px;
            }
        }

        /* Contact Section with Animation */

        /* ================= CONTACT SECTION ================= */

        .contact-section {
            background-color: #1b3557;
            max-width: 1200px;
            margin: 40px auto;
            color: #ffffff;
            padding: 0px;
            margin-bottom: 100px;
        }

        /* ================= HEADING ================= */

        .contact-section .heading h2 {
            font-size: 46px;
            font-weight: 300;
            letter-spacing: 5px;
            padding: 30px;
        }

        /* ================= MAIN GRID ================= */

        .contact-main {
            display: grid;
            grid-template-columns: 4fr 4fr;
            gap: 100px;
            align-items: flex-end;
            padding: 30px;
        }

        /* ================= LEFT DETAILS ================= */

        .details img {
            width: 180px;
            margin-bottom: 30px;
        }

        .details h3 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .details p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        /* ================= FORM ================= */

        .form {
            width: 100%;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        /* IMPORTANT: override side-by-side */
        .form-row {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 30px;
        }

        /* ================= INPUT STYLE ================= */

        .contact-form input,
        .contact-form textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.6);
            padding: 10px 0;
            font-size: 14px;
            color: #ffffff;
            outline: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }

        .contact-form textarea {
            resize: none;
            height: 42px;
            margin-bottom: 40px;
        }

        /* ================= SUBMIT ================= */

        .contact-form button {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            align-self: flex-start;
            transition: opacity 0.3s ease;
        }

        .contact-form button:hover {
            opacity: 0.8;
        }

        .contact-form button::after {
            content: " →";
            font-size: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            /* Contact Section Responsive */
            .contact-section {
                margin: 20px;
            }

            .contact-section .heading h2 {
                font-size: 32px;
                letter-spacing: 3px;
            }

            .contact-main {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 20px;
            }

            .details img {
                width: 140px;
                margin-bottom: 20px;
            }

            .details h3 {
                font-size: 16px;
            }

            .details p {
                font-size: 13px;
            }

            .form-row {
                gap: 20px;
                margin-bottom: 20px;
            }

            .contact-form input,
            .contact-form textarea {
                font-size: 13px;
            }

            .contact-form textarea {
                margin-bottom: 30px;
            }

            .contact-form button {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {

            /* Contact Section Mobile */
            .contact-section {
                margin: 15px;
            }

            .contact-section .heading h2 {
                font-size: 24px;
                letter-spacing: 2px;
            }

            .contact-main {
                padding: 15px;
                gap: 30px;
            }

            .details img {
                width: 120px;
                margin-bottom: 15px;
            }

            .details h3 {
                font-size: 15px;
            }

            .details p {
                font-size: 12px;
                line-height: 1.5;
            }

            .form-row {
                gap: 15px;
                margin-bottom: 15px;
            }

            .contact-form input,
            .contact-form textarea {
                font-size: 12px;
                padding: 8px 0;
            }

            .contact-form textarea {
                margin-bottom: 20px;
                height: 35px;
            }

            .contact-form button {
                font-size: 15px;
            }

            .contact-form button::after {
                font-size: 18px;
            }
        }



        .brochure-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #1b3557;
    text-align: center;
    color: #fff;
}

.brochure-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.brochure-container p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.brochure-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.brochure-btn i {
    margin-right: 8px;
}

.brochure-btn:hover {
    background: #c5a47e;  /* luxury gold tone */
    color: #fff;
}
