@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Poppins:wght@300;400&display=swap');

@font-face {
    font-family: 'Nexa Light';
    src: url('./Fonts/Nexa-ExtraLight.ttf') format('woff2'),
        url('./Fonts/Nexa-ExtraLight.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Nexa Light', Arial, sans-serif;

    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
}



/* Brand section layout */
.brand-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0;
    margin-bottom: 50px;
    gap: 40px; /* Adds consistent spacing between columns */
}

/* Left column styles */
.brand-section .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%; /* Maintains proper column width */
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.brand-section .col-md-5 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Right column styles */
.brand-section .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
    padding-left: 20px;
}

.about-cnt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-tagline {
    font-family: 'Nexa Light', Arial, sans-serif;
    font-size: 1.1rem;
    color: #121212;
    font-weight: 600;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .brand-section {
        padding: 40px 0;
        gap: 30px;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .brand-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    .brand-section .col-md-5,
    .brand-section .col-md-6 {
        width: 100%;
        padding: 0 15px;
    }

    .brand-section .col-md-5 {
        justify-content: center;
    }

    .about-cnt {
        justify-content: center;
    }

    .brand-tagline {
        text-align: center;
        margin: 20px auto 0;
    }
}

/* a life section */

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 1;
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.fade-in.animate {
    animation: fadeSlideUp 0.8s ease forwards;
}
.a-life-bkg {
    background-image: url('./images/Asset\ 4@4x\ 1.png');
    background-position: right -20px center;
    background-repeat: no-repeat;
    background-size: 250px auto;
    background-blend-mode: overlay;
    position: relative;
    min-height: 600px;
}

.hero-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    padding-right: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.content-container {
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.content-box {
    padding: 30px 0;
    padding-left: 37px;
    max-width: 480px;
}

.heading {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Nexa Bold', Arial, sans-serif;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Nexa Light', Arial, sans-serif;
    color: #444;
    margin-bottom: 35px;
}

.btn-enquire {
    display: inline-block;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-enquire:hover {
    background-color: #dc3545;
    color: white;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .content-container {
        padding-left: 30px;
    }

    .content-box {
        max-width: 450px;
    }

    .heading {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {
    .a-life-bkg {
        background-position: right -50px center;
        background-size: 200px auto;
    }

    .hero-section {
        padding: 40px 0;
    }

    .content-container {
        padding: 30px 15px;
    }

    .content-box {
        max-width: 100%;
    }

    .heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .a-life-bkg {
        background-image: none;
    }

    .hero-section {
        padding: 30px 0;
    }

    .hero-image-container {
        margin-bottom: 30px;
    }

    .content-container {
        padding: 20px 15px;
    }

    .heading {
        font-size: 32px;
    }
}

.background-shape {
    position: absolute;
    /* top: 0; */
    bottom: 78px;
    left: 0;
    width: 100%;
    /* Full width of the section */
    height: 100%;
    /* Full height of the section */
    background-image: url('./images/alifebkg.png');
    background-repeat: no-repeat;
    background-position: center;
    /* Centers the background image */
    background-size: cover;
    /* Ensures the background image covers the container */
    z-index: -1;
    /* Sends the background behind other elements */
}
/* a life */
:root {
    --primary-color: #9b4c4c;
    --text-color: #ffffff;
}


.config-card {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    position: absolute;
    top: 43px;
    right: 50px;
    width: 74px;
    height: 84px;
    z-index: 2;
}

.configuration-title {
    font-family: 'Nexa Light', Arial, sans-serif;
    font-size: 2rem;
    color: white;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.config-table {
    width: 100%;
    border-spacing: 0 0.1rem;
    border-collapse: separate;
}

.config-table th {
    font-weight: 600;
    font-family: 'Nexa Bold', Arial, sans-serif;
    font-size: 1.3rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.config-table td {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-family: 'Nexa Light', Arial, sans-serif;

}

.unlock-btn {
    background-color: transparent;
    border: 1px solid #F18E33;
    color: var(--text-color);
    border-radius: 10px;
    padding: 5px 20px;
    transition: all 0.3s;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.unlock-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.unlock-btn i {
    font-size: 0.8rem;
    columns: white;
}


.hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    width: 100%;
}

.hero-text h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: white;
    font-family: 'Nexa Light', Arial, sans-serif;

    margin: 0;
    line-height: 1.4;
}

.hero-text h2 {
    font-size: 2.9rem;
    font-weight: 600;
    color: white;
    margin: 0.5rem 0 0 0;
}

.image-container {
    height: 100%;
    min-height: 500px;
    position: relative;
}

.config-content {
    padding: 2.5rem;
}

.unit-cell {
    font-weight: 500;
}

.sba-cell {
    color: rgba(255, 255, 255, 0.9);
}

/* gallery section */

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
    margin-bottom: 3.5rem;
}

.gallery-title {
    color: #8B1E29;
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0;
}

.view-all {
    color: #8B1E29;
    text-decoration: none;
    border: 1px solid #8B1E29;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    background-color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.view-all:hover {
    background-color: #8B1E29;
    color: white;
    transition: all 0.3s ease;
}

.gallery-container {
    padding: 0 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
    height: 600px;
}

.main-image {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-images {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1rem;
}

.side-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.side-image-full {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    position: relative;
}

.side-image-half {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    position: relative;
}

.gallery-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

/* Gallery Details Page Styles */
.gallery-details {
    padding: 2rem 0;
    display: none;
}

.details-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.image-viewer {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
    margin-bottom: 2rem;
}

.image-viewer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.nav-arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.image-info {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thumbnail-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumbnail.active {
    opacity: 1;
    border: 2px solid #8B1E29;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.back-to-gallery {
    color: #8B1E29; /* Rich red color */
    text-decoration: none; /* Remove underline */
    background-color: #ffffff; /* Light background for the button */
    display: inline-flex;
    align-items: center;
    padding: 10px 20px; /* Add padding for better spacing */
    margin-bottom: 1rem;
    border-radius: 25px; /* Rounded corners */
    font-weight: 500; /* Slightly bold text */
    transition: all 0.3s ease; /* Smooth transition */
 
}

.back-to-gallery:hover {
    background-color: #8B1E29; /* Change background color on hover */
    color: white; /* Change text color to white */
    transform: translateY(-2px); /* Slight lift effect */
   
}

.back-to-gallery svg {
    margin-right: 8px; /* Space between text and icon */
    transition: all 0.3s ease;
}

.back-to-gallery:hover svg {
    transform: translateX(4px); /* Slight move of the icon on hover */
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }

    .main-image {
        height: 400px;
    }

    .side-images {
        grid-template-rows: auto;
        gap: 1rem;
    }

    .side-image-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .side-image-full,
    .side-image-half {
        height: 280px;
        width: 100%;
    }

    .side-image-half img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .image-viewer {
        height: 400px;
    }
}

/* gallery section */



/* video section */
.walkthrough-section {
    padding: 80px 0;
    background-color: #fff;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #983831;
    margin-left: 5px;
}

.content-right {
    padding-left: 50px;
}

.content-right-h1 {
    color: #983831;

 
    text-align: left;
  
    font-size: 3.5rem;
    font-weight: 500;
    font-family: 'Nexa Bold', Arial, sans-serif;
  
    margin-bottom: 30px;
    line-height: 1.2;
}

.subtitle {
    color: #4A5568;
    font-size: 20px;
    text-align: right;

    margin-bottom: 30px;
}

.enquire-btn {
    display: inline-block;
    font-family: 'Nexa Light', Arial, sans-serif;
    font-weight: 500;
    color: #983831;
    border: 1px solid #983831;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.enquire-btn:hover {
    background-color: #983831;
    color: white;
}

/* video section */

/* projects section */

.properties-section {
    padding: 70px 0;
    position: relative;

}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    color: #983831;
    font-size: 32px;
    font-weight: 500;
}

.toggle-view-btn {
    color: #983831;
    text-decoration: none;
    border: 1px solid #983831;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-view-btn:hover {
    background-color: #983831;
    color: white;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.property-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    /* Added fixed height */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-info {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}
.property-info1 {
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    padding: 20px;
    background: var(--primary-color);
    color: white;
}
.property-info1 .property-name{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    font-family: 'Nexa Light', Arial, sans-serif;
    text-align: center; 
}
.property-info p{
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    font-family: 'Nexa Light', Arial, sans-serif;
    text-align: center; 
    margin-bottom: 0;
}
.property-info1 p{
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    font-family: 'Nexa Light', Arial, sans-serif;
    text-align: center; 
    margin-bottom: 0;
}
.property-name {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    font-family: 'Nexa Light', Arial, sans-serif;
}

.hidden-property {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hidden-property.show {
    display: block;
   
    opacity: 1;
}
.image-container-gallery {
    position: relative;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
}
.image-container-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
}
.custom-image-wrapper {
    width: 100%;
    height: 400px; /* Set a fixed height for image containers */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    border-bottom: 1px solid #ddd; /* Optional border for visual separation */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

.custom-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}


/* projects section */


/*navbar */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 30px;
    transition: all 0.3s ease;
    background: transparent;
}

/* Scrolled state styles */
.navbar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 8px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-custom {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 1));
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
    border: 1px solid rgb(236, 236, 236);
    border-radius: 12px;
    padding: 15px 25px;
    transition: all 0.3s ease;
}


/* Remove border and shadow when scrolled */
.scrolled .navbar-custom {
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.navbar-brand img {
    width: 110px;
    height: 55px;
    object-fit: contain;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    color: #121315;
    font-weight: 800;
    font-family: 'Nexa Light', Arial, sans-serif;

    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #b34732;
    background-color: rgba(179, 71, 50, 0.08);
}


.enquire-now-btn {

    color: rgb(24, 24, 24);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.enquire-now-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;

}

.enquire-now-btn:hover {
    background-color: #ff1c20;
    color: white;
    transform: translateY(-2px);
}

/* Content spacing for sticky header */
.content-wrapper {
    padding-top: 100px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        margin: 20px 0;
        text-align: center;
    }

    .enquire-now-btn {
        margin: 10px auto;
        justify-content: center;
        width: fit-content;
    }

    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .navbar-collapse {
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        background: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-wrapper {
        padding: 0px 0px;
    }

    .navbar-wrapper.scrolled {
        padding: 5px 15px;
    }
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*navbar */
/*header section*/

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translate(-30px, -50%);
    }

    100% {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to elements */
.hero-content {
    animation: fadeSlideIn 1s ease-out forwards;
}

.headermain {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-top: 40px;
    padding: 20px;
}

.promo-container {
    width: 100%;
    max-width: 1300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;

}

.carousel-item {
    height: 75vh; /* Changed to viewport height for better responsiveness */
    min-height: 600px; /* Minimum height to maintain aspect */
    max-height: 800px;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.carousel-item::before {
    content: ""; /* Create an empty overlay element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); /* Left side black shade, right side transparent */
    border-radius: 15px;
    pointer-events: none; /* Ensure overlay doesn't interfere with interactions */
}
.carousel-item img {
    z-index: 0; 
   
}
.gallery-image{
    z-index: 0;
    position: absolute; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    border-radius: 15px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 45%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: 'Nexa Light', Arial, sans-serif;
    opacity: 0;
    animation: scaleIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
   
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 10px;
    opacity: 0;
    animation: scaleIn 0.8s ease-out forwards;
    animation-delay: 0.6s;
   
}

.contact-btn {
    background-color: #8E382B;
    color: white;
    font-family: 'Nexa Light', Arial, sans-serif;
    padding: 8px 25px;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    margin-top: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #a01830;
    transform: translateY(-2px);
}

.reserved-badge {
    position: absolute;
    right: 5%;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 1.2s;
    bottom: 0%;
    background: #E5EDB5;
    padding: 25px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 180px;
    z-index: 3;
}

.reserved-badge img {
width: 130px;
}

/* .badge-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    background: #c41e3a;
    border-radius: 50%;
} */

.badge-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-left: 0;
    margin-right: 0;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: 2px solid transparent !important;
    margin: 0 !important;
    opacity: 1 !important;
    position: relative;
    flex: 0 0 auto !important;
}

.carousel-indicators button::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white !important;
    transform: scale(1.1);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Indicator animation */
@keyframes indicatorPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.carousel-indicators button.active {
    animation: indicatorPulse 2s infinite;
}

/* Overlay fade animation */
@keyframes overlayFade {
    0% {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    }

    100% {
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    }
}

.overlay {
    animation: overlayFade 1s ease-out forwards;
}

/* Add smooth transitions for hover states */
.contact-btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.carousel-indicators button.active::after {
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
}
@media (max-width: 1366px) {
    .headermain {
        padding: 40px 20px;
    }
    
    .carousel-item {
        height: 70vh;
    }
    
    .promo-container {
        margin: 30px auto;
    }
}

@media (max-width: 991px) {
    .main-section {
        padding-top: 70px;
    }

    .headermain {
        padding: 30px 15px;
        min-height: auto;
    }

    .promo-container {
        margin: 20px auto;
    }

    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content {
        max-width: 80%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .headermain {
        padding: 20px 10px;
        margin-top: 58px;
    }

    .carousel-item {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 2.4rem;
    }

    .promo-container {
        margin: 15px auto;
    }
}

@media (max-width: 576px) {
    .headermain {
        padding: 15px 10px;
        margin-top: 74px;
    }

    .carousel-item {
        height: 47vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .promo-container {
        margin: 10px auto;
    }
}

/* Height-based media queries for better vertical spacing */
@media (max-height: 800px) {
    .carousel-item {
        height: 63vh;
    }
}

@media (max-height: 600px) {
    .carousel-item {
        height: 75vh;
    }
    
    .headermain {
        padding: 30px 10px;
    }
}

/* Maintain existing styles */
.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 45%;
}


/*header section*/


/* temperature */

.temperature-bkg {
    background-image: url('./images/tempereturebkgnew.png'); /* Ensure the path is correct */
    background-position: 0px center; /* Align background with a 10px margin from the left */
    background-repeat: no-repeat;
    background-size: contain; /* Scale the image proportionally */
    background-blend-mode: overlay; 
    display: flex; /* Ensures child elements are properly aligned */
    align-items: center; /* Center-aligns the content vertically */
    justify-content: center; /* Center-aligns the content horizontally */
}

.promo-section {
    width: 100%;

    box-sizing: border-box;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-card {
    background-color: rgba(234, 241, 196, 0.7);
    /* Added slight transparency */
    border-radius: 28px;
    overflow: hidden;
    display: flex;

    height: 400px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: adds depth */
}

.left-content {
    width: 60%;
    padding: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-content {
    width: 40%;
    position: relative;
    background-color: #e6e6e6;
    height: 100%;
}

.top-text {
    font-family: 'Nexa Light', Arial, sans-serif;
    font-weight: 900;
    color: #963a2f;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.main-heading {
    font-family: 'Nexa Bold', Arial, sans-serif;
    font-weight: 500;
    color: #963a2f;
    font-size: 52px;
    line-height: 1.2;
    margin: 0;
}

.pool-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reserved-logo {
    position: absolute;
    top: 40px;
    right: 45px;
    width: 70px;
    height: 77px;
    z-index: 2;
}

/* Large screens (above 1300px) */
@media (min-width: 1301px) {
    .promo-card {
        margin: 0 auto;
    }
}

/* Tablets and smaller desktops */
@media (max-width: 991px) {
    .promo-section {
        padding: 20px;
    }

    .promo-card {
        flex-direction: column;
        height: auto;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .right-content {
        height: 200px;
    }

    .left-content {
        padding: 25px;
    }

    .main-heading {
        font-size: 28px;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .promo-section {
        padding: 15px;
    }

    .main-heading {
        font-size: 24px;
    }

    .top-text {
        font-size: 14px;
    }

    .left-content {
        padding: 20px;
    }

    .right-content {
        height: 150px;
    }

    .reserved-logo {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
}

/* temperature */

/* faq */
.faq-container {
    border-radius: 8px;
    padding: 20px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Nexa Bold', Arial, sans-serif;
    color: #8B4513;
}

.faq-item {
    border: 1px solid #E5E5E5;
    padding: 15px 10px;
    cursor: pointer;

}

.faq-item.active {
    background-color: #EEF4D0;
    position: relative;
}

/* Add red line to the left when active */
.faq-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    height: 60px;
    background-color: #8E382B;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Nexa Bold', Arial, sans-serif;
}

.icon-circle {
    width: 14px;
    height: 14px;
    padding: 20px;
    border: 1px solid rgb(193, 193, 193);
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-circle i {
    font-size: 10px;
    color: #000000;
    transition: color 0.3s ease;
}

.faq-item.active .icon-circle {
    transform: rotate(90deg); /* Rotates the icon */
    background-color: #8E382B; /* Red background on active state */
color: white;
}

.faq-item.active .icon-circle i {
    color: #ffffff;
}



.faq-answer {
    padding: 20px;
    margin-top: 15px;
    border-radius: 4px;
    display: none;
}

.faq-answer p {
    font-family: 'Nexa Light', Arial, sans-serif;
    margin-bottom: 0;
}
/* faq */

/* Location */
:root {
    --primary-red: #9E2A2B;
    --text-gray: #666666;
    --border-light: #E5E5E5;
}


.location-bkg {
    background-image: url('./images/tempereturebkgnew.png'); /* Ensure the path is correct */
    background-position: 0px center; /* Align background with a 10px margin from the left */
    background-repeat: no-repeat;
    background-size: contain; /* Scale the image proportionally */
    background-blend-mode: overlay; 
    display: flex; /* Ensures child elements are properly aligned */
    align-items: center; /* Center-aligns the content vertically */
    justify-content: center; /* Center-aligns the content horizontally */
}

.main-title {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: bolder;
    font-family: 'Nexa Light', Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-family: 'Nexa Light', Arial, sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
}

.time-section {
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.time-header {
    padding: 1rem 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Fix for the before element */
.time-header.active {
    position: relative;
}

.time-header.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-red);
}

.time-header h3 {
    color: var(--text-gray);
    font-family: 'Nexa Light', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0;
    transition: color 0.3s ease;
}

.time-header.active h3 {
    color: var(--primary-red);
}

.time-content {
    padding: 1rem 1.5rem;
    background: #FAFAFA;
    display: none;
}

.time-content.show {
    display: block;
}

.time-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.time-content li {
    width: 50%;
    font-family: 'Nexa Light', Arial, sans-serif;
    padding: 0.25rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.map-section {
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    margin-top: 28px;
}

.location-map {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.arrow-icon {
    width: 20px;
    margin-top: 15px;
    height: 20px;
    position: relative;
}

.arrow-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.collapsed .arrow-icon::before {
    transform: rotate(-135deg);
}
/* Location */
/* keyhighlights */
:root {
    --primary-color: #983831;
    --bg-color: #E5EDB5;
    --text-color: #2D3748;
    --transition-speed: 0.3s;
}

.highlights-section {
    background-color: var(--bg-color);
    background-image: url('./images/Layer\ 2.png');
    background-position: 200px center; /* Align background with a 10px margin from the left */
    background-repeat: no-repeat;
    background-size: contain; /* Scale the image proportionally */
    background-blend-mode: overlay; 
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto; /* Center the section horizontally */
    border-radius: 1.5rem;
    position: relative;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    /* color: var(--primary-color);
    font-size: 2rem;
    font-weight: bolder;
    font-family: 'Nexa Light', Arial, sans-serif;
    margin: 0; */
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Nexa Bold', Arial, sans-serif;
    color: var(--primary-color);
  
   
}

.enquire-btn {
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 1.25rem;
    font-family: 'Nexa Light', Arial, sans-serif;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.enquire-btn:hover,
.enquire-btn:focus {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem;
    max-width: 1140px;
    margin: 0 auto;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.highlight-content {
    flex: 1;
}

.highlight-text {

    font-size: 1rem;
    font-family: 'Nexa Light', Arial, sans-serif;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

/* Improved responsive design */
@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .highlights-section {
        padding: 3rem 1.5rem;
        margin: 30px 15px;
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .highlight-item {
        text-align: left;
    }

    .icon-wrapper {
        width: 2.5rem;
        height: 2.5rem;
    }
}
/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .enquire-btn {
        transition: none;
    }
}

/* keyhighlights */

/* contact section */
.main-section {
    background-image: url('./images/mainbackgroudnd.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 5px; /* Added to prevent content overlap with fixed navbar */
  
    position: relative;
}

.footer-section {
        background-image: url('./images/Asset\ 4@4x\ 4.png'); /* Ensure the path is correct */
        background-position: 0px center; /* Align background with a 10px margin from the left */
        background-repeat: no-repeat;
        background-size: contain; /* Scale the image proportionally */
        background-blend-mode: overlay; 
        display: flex; /* Ensures child elements are properly aligned */
        align-items: center; /* Center-aligns the content vertically */
        justify-content: center; /* Center-aligns the content horizontally */

    
 
}


.luxury-form {
    position: relative;
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;

}
.form-text-h1 {
    color: #8B0000;

    margin-bottom: 3rem;
    position: relative;
    z-index: 2;

    font-size: 3.5rem;
    font-weight: 500;
    font-family: 'Nexa Bold', Arial, sans-serif;
  
    line-height: 1.2;
}

.form-text {
    color: #161616!important;
    font-family: 'Nexa Light', Arial, sans-serif!important;
    font-size: 1.1rem!important;
    margin-bottom: 2rem!important;
    position: relative!important;
    z-index: 2!important;
}

.form-control {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    padding: 0.5rem 0 !important;
    margin-bottom: 1.5rem !important;
}

.form-control:focus {
    box-shadow: none !important;
    border-color: #8B0000 !important;
}

.btn-enquire {
    background-color: transparent !important;
    color: #8B0000 !important;
    border: 1px solid #8B0000 !important;
    border-radius: 25px !important;
    padding: 0.5rem 2rem !important;
    transition: all 0.3s ease !important;
}

.btn-enquire:hover {
    background-color: #8B0000 !important;
    color: white !important;
}

.footer-divider {
    width: 100% !important;
    height: 1px !important;
    background-color: #ddd !important;
    margin: 3rem 0 1rem 0 !important;
}

.footer {
    text-align: center !important;
    color: #666 !important;
    font-size: 0.8rem !important;
    padding-top: 1rem !important;
}
.highlights-section{
    margin-top: 50px;
}
.margin-top-3rem{
    margin-top: 3rem;
}
.margin-top-50{
    margin-top: 50px;
}
.margin-bottom-50{
    margin-bottom: 50px;
}
.padding-t-b-3rem{
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.modal-content {
    background-color: #e5edb5;
    border-radius: 15px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #983831;
    padding: 12px;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #983831;
    box-shadow: 0 0 0 0.2rem rgba(152, 56, 49, 0.25);
}

.submit-btn {
    background-color: #983831;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 500;
    width: 100%;
}

.submit-btn:hover {
    background-color: #7a2e28;
}
.properties-section {
    display: block; 
    visibility: visible;
    opacity: 1;
}
.gallery-container {
    
    margin: auto;
}

.tabs {
    display: flex
    ;
        /* justify-content: space-around; */
        margin-bottom: 20px;
        gap: 20px;
        text-align: center;
        margin: 20px auto 50px;
        justify-content: center;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: none;
    outline: none;
}

.tab-button:hover {
    background-color: #ddd;
}
.tab-button.active {
    background-color: var(--primary-red);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
#galleryMain img{
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.hidden-highlights {
    display: none;
}

.view-more-Highlights{
    /* border: 1px solid #000 !important; */
    background: none !important;
    color: #000 !important;
    display: flex !important
;
    justify-content: center !important;
    text-align: center !important;
    margin: 36px auto 0 !important;
    border: none;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
.Amenities-cta{
    margin:20px auto 0;
    text-align: center;
    display: flex
;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: 160px;
}
.view-more-btn{
    
    border: 1px solid #000 !important;
    background: none !important;
    color: #000 !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    margin: auto !important;
    align-items: center  !important;
    gap: 10px;
}
/* Ensure the hero section takes the full height of the viewport */
.hero-section {
 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; 
}
.hero-section1 {
   
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; 
}
.hero-section1{
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* Container for the amenities */
.amenities-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Individual amenity item */
.amenities-section .col-2 {
    margin-bottom: 20px; /* Space between rows */
}

.amenities-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; /* Space between image and text */
}

.amenities-section p {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-family: 'Nexa Light', Arial, sans-serif;
}
.amineties p{
    
        font-family: 'Nexa Light', Arial, sans-serif;
        font-size: 16px;
        color: #000;
    
}

/* Content container */
.text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.content-box {
    max-width: 400px;
    margin: 0 auto;
}

.content-box .heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000; /* Example heading color */
}

.content-box .description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555; /* Example description color */
}

.content-box .btn-enquire {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Example button color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.content-box .btn-enquire:hover {
    background-color: #0056b3; /* Example button hover color */
}
.left-section{
    margin-top: 20px;
}



/* Media queries for responsiveness */
@media (max-width: 992px) {
    .amenities-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .text-section {
        text-align: center;
    }

    .content-box {
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .curved-line {
        width: 100% !important;
        height: 50% !important;
        left: -20% !important;
        opacity: 0.3 !important;
    }
    .pt-0-mobile{
        padding-top: 0 !important;
    }
    .highlights-section{
        margin-top: 0px;
    }
    .mt-0-mobile{
        margin-top: 0 !important;
    }
    .pb-0-mobile{
        padding-bottom: 0 !important;
    }
    .margin-bottom-0{
        margin-bottom: 0px;
    }
    .properties-section {
        padding: 0px 0;
        position: relative;
    }
    .walkthrough-section {
        padding: 30px 0;
        background-color: #fff;
    }
    .luxury-form {
        position: relative;
        padding: 20px 2rem;
        max-width: 1300px;
        margin: 0 auto;
        overflow: hidden;
    }
    .content-box {
        padding: 10px 0  !important;
        padding-left: 37px !important;
        max-width: 480px !important;
    }
    .promo-section {
        width: 100%;
        box-sizing: border-box;
        margin-top: 10px;
        display: flex
    ;
        align-items: center;
        justify-content: center;
    }
    .navbar-custom{
        border: none;
    }
    .tab-button {
        padding: 6px 12px;
        cursor: pointer;
        background-color: #f1f1f1;
        border: none;
        outline: none;
    }
    .tabs {
        display: flex
    ;
        /* justify-content: space-around; */
        margin-bottom: 20px;
        gap: 20px;
        text-align: center;
        margin: 20px auto 20px;
        justify-content: center;
    }
    .property-info p{
        font-size: 14px;
        font-weight: 500;
        margin-top: 2px;
        font-family: 'Nexa Light', Arial, sans-serif;
        text-align: center; 
        margin-bottom: 0;
    }
    .background-shape {
        position: absolute;
        /* top: 0; */
        bottom: 0px !important;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(./images/alifebkg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
    }
    .gallery-heading{
        padding: 10px 0 !important;
        padding-left: 37px !important;
        max-width: 480px !important;
    }
    
}

.amineties img{
    width: 80px;
}
.hidden-lg{
    display: none;
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
  }
  @media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
  }
  @media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    .hidden-xs{
        display: none !important;
    }
  }

/* contact section */
:root {
    --d: 2500ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: rgba(228, 129, 45, 1);
    --c2: rgba(228, 129, 45, 0.1);
    --theme-color1: #ee763c;
  }
  
  @property --angle {
    syntax: '<angle>';
    initial-value: 90deg;
    inherits: true;
  }
  
  @property --gradX {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: true;
  }
  
  @property --gradY {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: true;
  }
  
  
  
  
  .btn-book {
    color: #141512;
    font-size: 16px;
    /* margin: max(1rem, 3vw); */
    margin: 0 0px 0 20px;
    margin: 13px 20px 0 0;
    border: 0.19rem solid;
    padding: 10px 10px;
    border-image: conic-gradient(from var(--angle), var(--c2), #750102 0.15turn, rgb(151 198 62 / 0%) 0.35turn, rgb(151 198 62 / 11%) 0.15turn) 10;
    /* border-image: conic-gradient(from var(--angle), var(--c2), rgba(228, 129, 45, 1) 0.15turn, rgba(228, 129, 45, 0.1) 0.35turn, rgb(67 71 72 / 10%) 0.15turn) 10; */
    /* border-image: conic-gradient(from var(--angle), var(--c2), rgb(20 20 18 / 70%) 0.15turn, rgb(22 22 20 / 99%) 0.35turn, rgb(67 71 72 / 10%) 0.15turn) 10; */
    animation: borderRotate var(--d) linear infinite forwards;
    cursor: pointer;
    text-decoration: none;
  }
  
  .btn-book:hover {
    color: #000;
    background: #fff;
  }
  .btn-book-desk {
    border: 0.19rem solid;
  
   
    padding: 10px 10px !important;
    text-align: center;
    display: inline-block;
    margin: 14px 26px 14px 6px;
    color: #000 !important;
  
    border-image: conic-gradient(from var(--angle), var(--c2), #750102 0.15turn, rgb(151 198 62 / 0%) 0.35turn, rgb(151 198 62 / 11%) 0.15turn) 10;
    /* border-image: conic-gradient(from var(--angle), var(--c2), rgba(228, 129, 45, 1) 0.15turn, rgba(228, 129, 45, 0.1) 0.35turn, rgb(67 71 72 / 10%) 0.15turn) 10; */
    /* border-image: conic-gradient(from var(--angle), var(--c2), rgb(20 20 18 / 70%) 0.15turn, rgb(22 22 20 / 99%) 0.35turn, rgb(67 71 72 / 10%) 0.15turn) 10; */
    animation: borderRotate var(--d) linear infinite forwards;
    cursor: pointer;
  
  
  }
  
  .btn-book-desk:hover {
    color: #fff !important;
    background: #210 !important;
  }
  @media (max-height: 800px) {
    .carousel-height {
        height: 30% !important;
    }
}
@media (max-width: 576px) {
    .carousel-height {
        height: 30%;
        min-height: 300px;
    }
}
  
  @keyframes borderRotate {
      100% {
          --angle: 420deg;
      }
  }

  .owl-nav {
    text-align: center;
    margin-top: 10px;
}

.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-nav button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.down_enquiry {
    background: black;
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 10000; /* Match the z-index in your HTML */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.down_enquiry.visible {
    display: block;
    opacity: 1;
}
.down_enquiry ul {
    display: flex
    ;
        justify-content: center;
        margin-bottom: 0px;
        gap: 40px;
        padding-left: 0;
            
}
.down_enquiry ul li{
   
        display: inline-block;
        padding: 14px 5px;
        width: calc(100% / 4 - 5px) !important;
        /* width: calc(100% / 3 - 5px); */
        position: relative;
        text-align: center;
    
}

.down_enquiry ul li span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 0px;
}
.down_enquiry ul li a svg path {
    fill: white;
    stroke: white;
}
.cta-container {
    display: flex;
    justify-content: center; /* Horizontally centers the button */
    align-items: center;    /* Vertically centers the button */
    height: 100%;           /* Optional: Adjust height as needed */
}