/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.5rem;
}

section {
    padding: 50px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-text,
.about-image {
    flex: 1;
    padding: 10px;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

.siteplan img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.floorplan .card-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.amenities ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.amenities li {
    margin: 10px 20px;
    display: flex;
    align-items: center;
}

.amenities i.icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.gallery .gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea,
.contact button {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
} */






/* General Styles */
body {
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Pre-header */
.pre-header-area-wrapper {
    background-color: #353e2f;
}

.pre-header-item a {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
}

.pre-header-item a:hover {
    color: #ffb405;
}

/* Navbar */
/* Transparent Navbar Styling */
.top-navbar {
    background-color: transparent !important;
    /* Transparent background */
    box-shadow: none;
    /* Remove shadow if present */
    transition: background-color 0.3s ease-in-out;
    /* Smooth transition for scroll effect */
    position: absolute;
    /* Overlay on video */
    width: 100%;
    z-index: 10;
    /* Ensure it stays above the video */
}

/* Navbar Links */
.top-navbar .nav-link {
    color: #fff !important;
    /* White color for links */
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    /* Make text uppercase */
}

/* Navbar Links Hover Effect */
.top-navbar .nav-link:hover {
    color: #ffb405 !important;
    /* Bright yellow on hover */
    transform: translateY(-5px);
    /* Lift the link on hover */
}

/* Navbar Toggler (Hamburger Menu) */
.top-navbar .navbar-toggler {
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    /* Transparent button */
    transition: background-color 0.3s ease;
}

.top-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Hover Effect (on navbar background when hovering) */
/* .top-navbar {
    background-color: rgba(0, 0, 0, 0.6) !important;
} */

/* Navbar Scroll Effect */
.top-navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    /* Darker background on scroll */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    /* Add a shadow for scroll effect */
}

/* Navbar Brand */
.site-logo .navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.site-logo .navbar-brand:hover img {
    transform: scale(1.1);
    /* Slightly enlarge the logo on hover */
}



/* index section */
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    /* Adjust based on the required height */
    overflow: hidden;
}

/* Hero Section Styling */
#background-image {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Image Background */
.split-container {
    display: flex;
    height: 100vh;
    /* Full-screen height */
}

.split {
    flex: 1;
    position: relative;
}

.image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel {
    width: 1500px;
    height: 900px;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    animation: fade 5s infinite;
}

@keyframes fade {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}


/* Content Wrapper Styling */
.content-wrapper {
    text-align: center;
    z-index: 1;
    /* Ensure content appears on top of background */
    color: white;
    padding: 10px;
}

/* Heading and Button Styling */
.display-4 {
    font-size: 3.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    margin-top: 20px;
}

.btn-primary {
    background-color: #2D6DB6;
    border-color: #2D6DB6;
    padding: 10px 20px;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #ffb405;
    border-color: #ffb405;
}


/* about  */
/* About Section Styling */
.about {
    text-align: center;
    padding: 50px 0;
}

.about h3 {
    color: #ffb405;
}

.about-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.about-item {
    flex: 1;
    text-align: center;
    max-width: 300px;
}

.about-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}







/* Floor Plan Section Styling */
.floor-plan {
    background-color: #fff;
    color: #333;
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.floor-plan p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* Floor Plan Item */
.floor-plan-item {
    position: relative;
    overflow: hidden;
}

.floor-plan-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Overlay Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.overlay-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-description {
    font-size: 1.2rem;
}

/* Image Hover Effect */
.floor-plan-item:hover img {
    transform: scale(1.05);
    /* Zoom-in effect on hover */
}

.floor-plan-item:hover .overlay {
    opacity: 1;
    /* Show overlay on hover */
}

/* Media Queries */
@media (max-width: 767px) {
    /* .floor-plan h2 {
        font-size: 1.6rem;
    } */

    .floor-plan p {
        font-size: 1rem;
    }

    .overlay-title {
        font-size: 1.5rem;
    }

    .overlay-description {
        font-size: 1rem;
    }
}

/* property plans */
.property-options-section {
    background-color: #fff;
    /* Light background color */
    padding: 40px 0;
    /* Padding for spacing */
    border-radius: 10px;
    /* Rounded corners */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    /* Soft shadow for depth */
}


.property-options-section p {
    font-size: 18px;
    color: #555;
}

.option-btn {
    background: linear-gradient(90deg, #ffb405, #2D6DB6);
    color: white;
    border: none;
    padding: 5px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.option-btn:hover {
    background: linear-gradient(90deg, #2D6DB6, #0066cc);
    transform: scale(1.05);
    /* Slightly increase button size on hover */
}

.option-btn:active {
    background: linear-gradient(90deg, #004099, #2D6DB6);
    box-shadow: none;
    /* Remove shadow on button click */
}

.option-btn.active {
    background: #2D6DB6;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.option-btn:focus {
    outline: none;
}

.image-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    /* Ensure horizontal layout */
    overflow-x: auto;
    /* Horizontal scrolling if necessary */
    gap: 10px;
    /* Space between images */
    justify-content: center;
    align-items: center;
    /* Align items vertically centered */
}

.property-image {
    width: auto;
    /* Allow natural width of the image */
    max-width: 100%;
    /* Ensure it doesn't exceed container's width */
    height: auto;
    margin-right: 15px;
    /* Space between images */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Shadow for depth */
    object-fit: contain;
    /* Ensures images don't stretch */
    transition: all 0.3s ease;
    /* Smooth transition for resizing */
    max-height: 500px;
    /* Limit height to prevent large images */
}

/* Specific adjustment for penthouse images */
.property-image.penthouse {
    max-width: 40%;
    /* Limit width for penthouse images */
    max-height: 400px;
    /* Limit height for penthouse images */
    object-fit: contain;
    /* Maintain aspect ratio */
}

/* Optional: Add some margin and spacing when images are shown */
.property-image:last-child {
    margin-right: 0;
    /* No margin for the last image */
}


/* amenities */
/* General Section Styling */
.amenities-section {
    /* background-color: #f9f9f9; */
    padding: 50px 0;
}

.amenities-section h2 {
    color: #2D6DB6;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.amenities-section p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Amenities Box Styling */
.single-amenities-box-style2 {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 30px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.single-amenities-box-style2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.single-amenities-box-style2 .icon {
    font-size: 40px;
    color: #FFB405;
    background: #2D6DB6;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    transition: 0.3s;
}

.single-amenities-box-style2:hover .icon {
    background: #FFB405;
    color: #2D6DB6;
}

/* Title Styling */
.single-amenities-box-style2 .title h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 15px;
    color: #2D6DB6;
    text-align: center;
}

.single-amenities-box-style2 .title h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.single-amenities-box-style2 .title h3 a:hover {
    color: #FFB405;
}

/* Ensuring Consistent Card Heights */
@media (min-width: 992px) {
    .single-amenities-box-style2 {
        height: 300px;
    }
}



/* location */
/* Site Plan Section */
.site-plan {
    text-align: center;
    margin: 50px 0;
}

.site-plan img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Floor Plan Section */
.floor-plan {
    text-align: center;
    margin: 50px 0;
}

.floor-plan .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.floor-plan img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.floor-plan img:hover {
    transform: scale(1.05);
}



/* gallery */

.gallery-section {
    background-color: #fff;
    padding: 50px 0;
}



.gallery-section .gallery-image {
    max-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-section .gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-section p {
    font-size: 18px;
    color: #777;
}

.lightbox {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}



/* contact */

.contact-us-section {
    background-color: #fff;
    padding: 50px 0;
}



.contact-us-section .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-us-section .form-control:focus {
    border-color: #2D6DB6;
    box-shadow: 0 0 5px rgba(2, 2, 72, 0.5);
}

.contact-us-section .submit-btn {
    background-color: #2D6DB6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.contact-us-section .submit-btn:hover {
    background-color: #2D6DB6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



/* footer */

.footer-section {
    background-color: #2D6DB6;
    color: white;
    padding: 50px 0;
}

.footer-section .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-section h5 {
    font-size: 18px;
    font-weight: bold;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    color: #ddd;
}

.footer-section .footer-link {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section .footer-link:hover {
    color: #fff;
}

.footer-section .navbar-nav {
    list-style: none;
    padding: 0;
}

.footer-section .navbar-nav li {
    margin-bottom: 5px;
}

.footer-section .fas {
    color: #ffb405;
}

.footer-section hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-section p {
    margin-bottom: 0;
}

/* contact us pop-up */

/* Popup Background */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

/* Popup Content Box */
.popup-content {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: scaleUp 0.3s ease-in-out;
    text-align: center;
}

/* Header */


.event-header h6 {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Form Group */
/* Form Group */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

/* Input Fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 40px;
    /* Added padding to create space for the icon */
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

/* Icon Styling */
.form-group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    /* Adjust the size of the icon */
    color: #888888;
    pointer-events: none;
}

/* Input Focus */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    color: #007bff;
}


/* Submit Button */
.main-btn-rect {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.main-btn-rect:hover {
    background-color: #0056b3;
}

/* Close Button */
.main-btn-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #333333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.main-btn-circle:hover {
    color: #ff0000;
}

/* Animations */
@keyframes fadeIn {
    from {
        background-color: rgba(0, 0, 0, 0);
    }

    to {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



/* overall */
h2 {
    font-size: 3rem;
    color: #2D6DB6;
    /* Vibrant golden color */
    font-family: 'Lora', serif;
    /* Change to the desired font */
    font-weight: 600;
    /* Slightly bold for emphasis */
    text-transform: uppercase;
    /* Adds a professional touch */
    letter-spacing: 2px;
    /* Small spacing for a clean and airy feel */
    margin-bottom: 20px;
    /* Space below the heading */
    position: relative;
    /* For adding cool effects if needed */
    padding: 5px 0;
    /* Small padding for clean alignment */
    text-align: center;
    /* Centering the text */
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
}

p {
    font-size: 1.1rem;
    /* Slightly larger font size */
    color: #333333;
    /* Dark grey color for better readability */
    font-family: 'lora', serif;
    /* Change to the new font */
    line-height: 1.6;
    /* Improve readability with some line spacing */
    letter-spacing: 0.5px;
    /* A slight space between letters for clarity */
    /* text-align: justify; */
    /* Make the text justified */
    margin-bottom: 20px;
    /* Space below each paragraph */
    transition: color 0.3s ease;
    /* Smooth color transition on hover (if you add hover effect) */
}

/* Hover Effect */
h2:hover {
    color: #ffb405;
    /* Change to a cool cyan color on hover */
    text-shadow: 0 4px 6px rgba(0, 188, 212, 0.5);
    /* Adding subtle glow effect */
}


.thankyou-page {
    margin-top: 20px;
}

/* enquire now */
.sticky-banner {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2D6DB6;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 10px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    /* Text flows vertically from top to bottom */
    text-orientation: mixed;
    /* Keeps the text readable in vertical mode */
    text-align: center;
    /* Centers the text vertically */
}

.sticky-banner:hover {
    background-color: #ffb405;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    /* Slight zoom effect on hover */
}