@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Cursive:wght@400..700&display=swap');

:root {
    --primary-color: #F2B950;
    --secondary-color: #010440;
    --ternary-color: #F2E205;
    --second-bg: #f5f6f8;
    --text-color: #2c3e50;
    --font-family: "DM Sans", sans-serif;
    --transition-duration: 0.3s;
}

::-moz-selection {
    /* Code for Firefox */
    color: #000000;
    background: var(--primary-color);
}

::selection {
    color: #000000;
    background: var(--primary-color);
}

.container {
    max-width: 90% !important;
    /* Override default max-width */
    padding-left: 10px !important;
    /* Override default padding */
    padding-right: 10px !important;
    /* Override default padding */
}

* {
    font-family: var(--font-family);
}

img {
    pointer-events: none !important;
    user-select: none;
}

.font-handwriting {
    font-family: 'Edu NSW ACT Cursive', cursive;
}

#bgVideo {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    object-position: center center;
}

.bg-secondary {
    background-color: var(--second-bg) !important;
}

.navbar {
    padding-top: 8px;
    padding-bottom: 8px;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    /* border: 1px solid rgba(0,0,0,0.4); */
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-color);
    margin-right: 30px !important;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 400;
    font-size: 16px;
    margin-inline: 7px;
    color: #ffffff;
    opacity: 0.7;
    transition: color var(--transition-duration) ease;
}

.nav-link:hover {
    opacity: 1;
    color: #ffffff !important;
}

.nav-item.dropdown {
    position: relative;
}

.custom-dropdown {
    position: absolute !important;
    top: 108% !important;
    left: 0;
    margin-top: 10px !important;
    min-width: 220px;
    border: none;
    border-radius: 3px;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.custom-dropdown .dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
    font-size: inherit;
    transition: background 0.3s;
}

.custom-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    padding: 10px;
    font-weight: 400;
    text-align: left !important;
    font-size: 15px;
    transition: background-color var(--transition-duration) ease;
}

.dropdown-item:hover {
    background-color: #1f1f1f;
    color: var(--primary-color);
}

.btn-schedule {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-duration) ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}

.btn-schedule:hover {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}



.btn-light {
    background-color: #b0b0b0;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-duration) ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .offcanvas {
        max-width: 80% !important;
        background-color: #000000;
    }

    .offcanvas .btn-close {
        --bs-btn-close-color: #ffffff !important;
    }

    .offcanvas-header {
        border-bottom: 1px solid #eee;
    }

    .btn-schedule {
        width: 100%;
        margin-top: 15px;
    }
}

/* .hero { */
/* background-image: radial-gradient(circle, #9b9b9b, #727272, #4b4b4b, #282828, #000000); */
/* background: radial-gradient(circle, rgba(0, 0, 0, 0.244),#000000dc), url('../img/hero/hero.jpg');
    background-repeat: no-repeat;

    background-size: cover;
    background-position: top right;
    /* no-repeat top right/cover; 
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
} 
*/


.hero-video {
    pointer-events: none !important;
    user-select: none;
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero .btn-schedule {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-duration) ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .btn-schedule:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    pointer-events: none !important;
    user-select: none;
}

.about-us p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
}

.shine-tag {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(90deg, #f2b950, #f2c53d, #f2b950);
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    right: 15px;
    overflow: hidden;
    text-transform: capitalize;
    font-size: 10px;
    /* box-shadow: 0 0 8px rgba(242, 201, 50, 0.5), 0 0 16px rgba(242, 201, 50, 0.3); */
    animation: pulse-glow 2s infinite ease-in-out;
}

/* Shimmer line */
.shine-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    height: 100%;
    width: 60%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.7) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: shimmer-slide 2s infinite;
}

@keyframes shimmer-slide {
    0% {
        left: -50%;
    }

    100% {
        left: 120%;
    }
}

/* 
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(242, 201, 50, 0.5), 0 0 16px rgba(242, 201, 50, 0.3);
  }
  50% {
    box-shadow: 0 0 12px rgba(242, 201, 50, 0.7), 0 0 24px rgba(242, 201, 50, 0.4);
  }
} */

.property_card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 8px;
    /* margin-bottom: 30px; */
    position: relative;
    transition: all var(--transition-duration) ease;
}

.property_card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.property_card .property_title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

.property_card .area-overview svg {
    margin-right: 3px;
}

.property_card .area-overview span {
    font-size: 13px;
    font-weight: 500;
    color: #858585;

}

.property_card .property_location {
    font-size: 14px;
    font-weight: 500;
    color: #858585;
}

.property_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.property_links .btn-details {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-color);
    font-size: 12px;

}

.property_links a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-color);
    font-size: 12px;
}

.stats_section {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #720000;
    color: #ffffff;
}

.stats_section h2 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
}

.stats_section p {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.7;
}

.blog-card {
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding-bottom: 18px;
    overflow: hidden;
}

.blog-content {
    padding: 12px;
}

.blog-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.blog-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.blog-card p {
    font-size: 13px;
    font-weight: 400;
    margin-top: 10px;
    color: #8c8c8c;
}

.blog-card a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #4e4e4e;
    margin-bottom: 15px;
}

.glass-card {
    width: 240px;
    height: 360px;

    position: relative;
    overflow: hidden;
}




#enquireBtn {
    position: fixed;
    bottom: 0px;
    right: 80px;
    background: rgba(204, 163, 0, 0.693);
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
    border-radius: 20px;
    border: 1px solid rgba(154, 154, 154, 0.395);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 52px 26px rgba(255, 255, 255, 2.6);
    color: #000000;
    border: none;
    font-weight: 600;
    padding: 8px 50px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

#enquireBtn ::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 0, 0, 0.8),
            transparent);
}

#enquireBtn ::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.8),
            transparent,
            rgba(0, 0, 0, 0.3));
}

#enquireBtn:hover {
    background: rgba(255, 204, 0, 0.8);
    transition: 0.3s;
}


#enquireForm {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 500px;
    background-color: #fff;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    z-index: 999;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s ease;
}

#enquireForm.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#closeForm {
    width: fit-content !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

#closeForm:hover {
    color: #333;
}

#enquireForm h3 {
    color: #333;
    margin-top: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#enquireForm form {
    display: flex;
    flex-direction: column;
}

#enquireForm input,
#enquireForm textarea,
#enquireForm button {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 0px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
}
#enquireForm label{
    margin-top: 15px;
    font-size: 13px;
}
#enquireForm input[type="checkbox"] {
  accent-color: var(--primary-color) !important; /* Change to your color */
}

#enquireForm input,
#enquireForm textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#enquireForm input:focus,
#enquireForm textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

#enquireForm textarea {
    resize: vertical;
    min-height: 80px;
}

#enquireForm button[type="submit"] {
    background-color: var(--primary-color);
    color: rgb(0, 0, 0);
    font-weight: 600;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

#enquireForm button[type="submit"]:hover {
    background-color: var(--primary-color);
}

#enquireForm button[type="submit"]:active {
    transform: scale(0.98);
}

#enquireForm .form-select{
    margin-bottom: 0 !important;
    padding: 8px;
    margin-top: 5px;
    border-radius: 0px;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    box-shadow: none !important;
}
footer {
    background-color: #10100b;
    color: #ffffff;
    padding: 3rem 0;
    padding-bottom: 70px !important;
}

footer img {
    height: 80px;
    margin-bottom: 20px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #cccccc;
}

footer p {
    font-size: 13px;
    color: #b8b8b8;
}

footer .social_media h5 {
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 10px;
}

footer .social_media a {
    background-color: var(--primary-color);
    color: #000000;
    padding: 5px;
    border-radius: 5px;
}

footer .social_media svg {
    stroke-width: 1.30 !important;
}

footer .listing-title {
    margin-bottom: 15px;
    font-size: 17px;
}

footer ul {
    list-style: none;
    padding-left: 0px;
}

footer ul li {
    margin-bottom: 7px;
}

footer ul li a {
    font-size: 14px;
    color: #8c8c8c;
    margin-bottom: 10px;
}

footer .copyright-area a {
    font-size: 13px;
    color: #858585;
    margin-left: 10px;
    text-decoration: underline;
}




.choosing-us {
    background-color: #fcf9f6;
    padding-bottom: 50px;
    padding-top: 50px;
}

.choosing-card {
    background-color: #fffefb;
    padding: 20px;
    border-radius: 10px;
    padding-top: 70px;
    padding-bottom: 18px;
    height: 100%;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.choosing-card h2 {
    font-size: 46px;
    font-weight: 800;
    color: #ecaf3d;
}

.choosing-card h4 {
    font-size: 20px;
}

.choosing-card p {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.7;
}

@media only screen and (max-width: 600px) {
    footer .copyright-area {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

}


.card-life {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    border-radius: 10px;
    margin-top: 50px;
}

.card-life h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.card-life p {
    font-size: 13px;
    color: #cacaca;
}

.living-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.67) 61%, rgba(0, 0, 0, 1) 100%), url('../img/Modern-Living-Spaces.jpg');
    /* background: url('../img/Modern-Living-Spaces.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.well-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.67) 61%, rgba(0, 0, 0, 1) 100%), url('../img/Community-Wellness.jpg');
    /* background: url('../img/Modern-Living-Spaces.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.connect-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.09) 0%, rgba(0, 0, 0, 0.67) 61%, rgba(0, 0, 0, 1) 100%), url('../img/Seamless-Connectivity.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.stats {
    padding-top: 150px;
    padding-bottom: 150px;
}

.stats img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 10px;
    pointer-events: none !important;
    user-select: none;
}

.stats-cards-group img {
    height: 40px;
    object-fit: contain;
    display: block;
    opacity: 0.8;
    pointer-events: none !important;
    user-select: none;
}

.stats-cards-group .stat-icon {
    width: fit-content;
    padding: 10px;
    background-color: #fff7e7 !important;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ffe5b6;
}

.stats-cards-group h3 {
    font-size: 24px;
    font-weight: 600;
}

.stats-cards-group p {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.7;
}

.testimonial {
    background-color: #DDA300;
}

.bg-testimonial {
    /* background: url('../img/testimonial.png'); */
    background: linear-gradient(90deg, rgba(221, 163, 0, 1) 0%, rgba(221, 163, 0, 0.43) 17%, rgba(221, 163, 0, 0) 28%), url('../img/testimonial.png');
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    height: 590px;
}

.testimonial .testimonial-card .testimonial-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.testimonial .testimonial-card .testimonial-author {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}

.testimonial .swiper-pagination {
    top: 180px !important;
}

.testimonial .swiper-pagination-bullet-active {
    background-color: #ffffff !important;
    border: 1px solid #ffffff !important;
}

.testimonial .testimonial-card {
    background-color: #DDA300;
    padding: 30px;
    position: relative;
}

.testimonial .section-t-head {
    position: absolute;
}

.inner-hero {
    height: 90vh;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.705) 0%, rgba(0, 0, 0, 0.5) 100%), url('../img/hero-head2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #ffffff;

}

.values-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    opacity: 0.8;
    pointer-events: none !important;
    user-select: none;
    background-color: #ffe478;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 20px;
}

.card-misson {
    background-color: rgb(255, 252, 247);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.card-misson .section-title {
    font-weight: 600;
    color: #9b6500;
}

.card-misson p {
    font-size: 16px;
    margin-top: 18px;
    opacity: 0.9;
}

.shine-tag-up {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(90deg, #8e50f2, #6326c4, #5213b8);
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    right: 15px;
    overflow: hidden;
    text-transform: capitalize;
    font-size: 10px;
    /* box-shadow: 0 0 8px rgba(242, 201, 50, 0.5), 0 0 16px rgba(242, 201, 50, 0.3); */

}

.shine-tag-on {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(90deg, #f966e1, #f335d3, #bd12a1);
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    right: 15px;
    overflow: hidden;
    text-transform: capitalize;
    font-size: 10px;
    /* box-shadow: 0 0 8px rgba(242, 201, 50, 0.5), 0 0 16px rgba(242, 201, 50, 0.3); */

}

.hero-contact-section {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.377) 0%, rgba(0, 0, 0, 0.67) 61%, rgba(0, 0, 0, 1) 100%), url('../img/contact-us-head.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    color: #ffffff;
}
.hero-contact-section h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-contact-section p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}
.alert{
    position: absolute !important;
    z-index: 2222;
    top: 30px;
    right: 10px;
    width: fit-content;
    border-radius: 3px !important;
    font-weight: 500;
}


.filter-btn{
    background-color: #ececec;
    color: #000;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    margin-inline : 5px;
    outline: none;
    border: none;
    border-radius: 10px;
}
 .filter-btn.active {
        background-color: var(--primary-color);
        color: #000000;
    }
    .btn-sh-mb{
        display: none;
    }

    @media only screen and (max-width: 600px) {
 .navbar-brand img {
    height: 38px;
}
.navbar .btn-schedule{
    width: fit-content;
    font-size: 10px;
}

.btn-sh-mb{
    
    background-color: var(--primary-color);
    padding: 5px 13px;
    text-decoration: none;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 50px;
}
#bgVideo{
    height: 80vh;
}
.offcanvas .btn-close{
    filter: invert(1);
}
}
.amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.amenity-pill {
    display: flex;
    width: fit-content;
    background-color: #f0f0f0;
    color: #777777;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    margin: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.amenity-pill:hover {
    background-color: var(--primary-color);
    color: #000000;
    border-color: var(--primary-color);
}

.property_location{
    --line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp);
    -webkit-box-orient: vertical;
}

@media only screen and (max-width: 600px) {
  #enquireForm {
    width: 100%;
    right: 0;
  }
  .bg-testimonial{
      background: linear-gradient(180deg, rgba(221, 163, 0, 1) 0%, rgba(221, 163, 0, 0.43) 17%, rgba(221, 163, 0, 0) 28%), url('../img/testimonial.png');
      background-position: top center;
        
        display: none;
  }
  .testimonial .testimonial-card .testimonial-text{
      font-size: 15px;
  }
  .testimonial .testimonial-card .testimonial-author{
      font-size: 12px;
  }
}