@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap');

body {
    font-family: "Maven Pro", sans-serif;
}

/* HEADER CSS STARTS */
header {
    position: fixed;
    width: 93%;
    left: 50%;
    top: 6px;
    z-index: 99;
    background-color: #fff;
    padding: 5px 0;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translate(-50%);
    border-radius: 10px;
}

.newClass {
    background-color: #fff;
    box-shadow: 0 0 1px #000;
    z-index: 999;
    border-radius: 10px;
}

.inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    max-width: 117px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

p.banner-inner.price-info {
    font-size: 25px;
}

.menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding: 0px 15px;
    text-transform: uppercase;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    letter-spacing: 1px;
}

.project-overview-section .know-more {
    text-align: left;
}

/* HEADER CSS ENDS */
.desktop-banner {
    display: block;
}

.tab-banner {
    display: none;
}

.mobile-banner {
    display: none;
}

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .container-fluid {
    padding: 0;
}

.floor-section {
    font-family: "Maven Pro", sans-serif;
    text-align: center;
}

.floor-img img {
    border-radius: 100%;
    width: 260px;
    height: 260px;
    box-shadow: 0 0 3px #c3c3c3;
}

.floor-img {
    padding: 5px;
}

.floor-info-img {
    background: #0b1130;
    color: #fff;
}

.floor-info-img p {
    padding: 5px 0;
    background: #489959;
}

.banner-location i {
    color: #489959;
    font-size: 24px;
}

.banner-price b {
    color: #489959;
    font-size: 24px;
}

.gallery-section {
    text-align: center;
}

.gallery-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 500;
}

.gallerySwiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
    opacity: 0.5;
    /* transform: scale(0.85); */
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Active Slide Center */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/* Pagination Style */
.swiper-pagination-bullet {
    background: #999;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #8f8a8a;
    width: 25px;
    border-radius: 5px;
}

.bg-color {
    background: #0b112f;
    color: #fff;
}

.padding-space-extra {
    padding: 50px 0;
}

.more-text {
    display: none;
}

.read-more-btn {
    border: none;
    background: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #a66b3a;
}

.bubble-bg {
    position: relative;
}

.bubble-bg::before {
    content: "";
    position: absolute;
    top: 124px;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgb(64 61 61 / 17%);
    border-radius: 50%;
    animation: bubbleAnimation 10s linear infinite;
}

@keyframes bubbleAnimation {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(200px, -200px) scale(2);
        opacity: 0;
    }
}

.overview-info {
    text-align: center;
    background: #0b112f;
    color: #fff;
    border-radius: 10px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.overview-configuration-info p {
    margin-bottom: 0;
}

.overview-img img {
    border-radius: 10px;
}

.price-section {
    text-align: center;
}

.price-section-information table {
    width: 100%;
}

.price-section-information table thead {
    background: #489959;
    text-align: center;
    color: #fff;
}

.price-section-information table thead tr th {
    padding: 10px 0;
}

.price-section-information table tbody {
    text-align: center;
}

.price-section-information table tbody tr td {
    padding: 10px 0;
    border: 1px solid #d3d3d3;
}

.enquire-now {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 25px rgba(206, 206, 206, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.highlight-section-int p {
    background: #0b112f;
    color: #fff;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.highlight-section {
    text-align: center;
}

.location-information-points ul {
    padding-left: 15px;
}

.location-information-points ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #fff;
}

.location-information-innrert {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-img img {
    border-radius: 10px;
}

.amenities-swiper .swiper-slide {
    opacity: 1;
}

.amenities-info p {
    background: #0b112f;
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

.amenities-section {
    text-align: center;
}

.card-header {
    color: #000;
}

.card-header h3 a {
    width: 100%;
}

.card-header h3 {
    font-size: 18px;
}

.card-body {
    color: #000;
}

.faq-section .card-header-title>a:after {
    content: "\f078";
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    right: 10px;
}

.faq-section .card-header-title>a[aria-expanded="true"]:after {
    content: "\f077";
}

.faq-section-form {
    border: 1px dashed #fff;
    padding: 10px;
    border-radius: 5px;
}

.faq-section-form form .btn {
    width: 100%;
}

.footer-section {
    background: #c3c3c3;
}

.footer-group-row p {
    font-size: 20px;
    border-bottom: 1px dashed;
}

.footer-group-row ul {
    padding-left: 10px;
    list-style: none;
}

.footer-group-row ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #000;
}

.footer-group-row ul li i {
    margin-right: 5px;
}

.footer-group-row ul li .btn {
    background: transparent;
    padding: 0;
}

.footer-points p {
    font-size: 20px;
    border-bottom: 1px dashed #000;
}

.footer-points ul {
    padding-left: 12px;
}

.footer-points ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #000;
}

.footer-points ul li a {
    color: #000;
}

.enquire-outer {
    display: none;
}

.banner-section-content {
    position: absolute;
    bottom: 30px;
    left: 5%;
    background: linear-gradient(45deg, black, transparent);
    width: 50%;
    padding: 5px 10px 15px 15px;
    color: #fff;
}

.banner-section-content h1 {
    font-size: 30px;
    margin-bottom: 0;
}

p.banner-location {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #fff;
    width: 35%;
}

.banner-btn .btn {
    background: #489959;
    color: #fff;
    border-radius: 5px;
    animation: pulse 1.5s infinite;
}

section {
    overflow: hidden;
    position: relative;
}
/* floor plan Details */
.floor-section .tabs {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.floor-section .tab-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    background: #afadad;
    cursor: pointer;
    font-size: 17px;
}

.floor-section .tab-btn.active {
    background: #0b112f;
    color: white;
}
.floor-section .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 300px));
    gap: 25px;
    justify-content: center;   /* 👈 ye important hai */
}

.floor-section .card {
    display: none;
    /* hide by default */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.floor-section .card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: blur(4px);
}

.floor-section .card h3 {
    padding: 12px;
    font-size: 19px;
    background: #0b112f;
    color: #fff;
}
.project-btn .btn {
    background: #489959;
    color:#fff;
    animation: pulse 1.5s infinite;
}
.extra-brochure{
    background: #489959;
    color:#fff;
}
p.banner-info-configuration {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed;
    width:50%;
}
@media only screen and (max-width: 991px) {
    .button_container {
        position: absolute;
        top: 50%;
        right: 0;
        height: 29px;
        width: 35px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        transform: translateY(-50%);
    }

    .button_container span {
        background: #071c35;
        border: none;
        height: 3px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.35s ease;
        cursor: pointer;
        border-radius: 31px;
    }

    .overlay {
        position: fixed;
        background: #fff;
        top: 62px;
        left: 0;
        width: 100%;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        max-height: 0;
        -webkit-transition: max-height .3s, -webkit-transform .3s;
        transition: max-height .3s, -webkit-transform .3s;
        -o-transition: max-height .3s, transform .3s;
        transition: max-height .3s, transform .3s;
        transition: max-height .3s, transform .3s, -webkit-transform .3s;
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        overflow: auto;
    }

    .overlay.open {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        max-height: 100vh;
    }

    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        width: 100%;
    }

    .overlay nav {
        text-align: center;
    }

    .overlay.open li {
        opacity: 1;
        border-bottom: 1px solid gray;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .button_container.active .bottom {
        transform: translateY(-11px) translateX(0) rotate(-45deg);
        background: #071c35;
    }

    .button_container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
        background: #071c35;
    }

    .button_container.active .middle {
        opacity: 0;
        background: #fff;
    }

    .button_container span:nth-of-type(2) {
        top: 11px;
        width: 61%;
        height: 3px;
        right: 0;
        left: auto;
    }

    .button_container span:nth-of-type(3) {
        top: 22px;
    }

    .container {
        max-width: 1000px;
    }

    .overview-img {
        display: none;
    }

    .swiper-slide img {
        height: 360px;
    }

    .section-title h2 {
        font-size: 26px;
        text-align: center;
    }

    .faq-section-form {
        margin-top: 30px;
    }

    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }

    .banner-section-content {
        width: 70%;
    }

}

@media only screen and (max-width: 767px) {
    .overview-configuration-info h3 {
        font-size: 23px;
    }

    .banner-section-content {
        width: 80%;
    }

    p.banner-location {
        width: 55%;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .overview-section {
        padding: 30px 0 0 0;
    }
    p.banner-info-configuration {
    width:60%;
}
}

@media only screen and (max-width: 565px) {
    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .enquire-outer {
        position: fixed;
        z-index: 99;
        bottom: 0;
        display: block;
        width: 100%;
        background: #10203e;
        box-shadow: 0 0 2px #8f8f8f;
    }

    .enquire-outer .btn {
        animation: none;
    }

    .enquire-outer ul {
        display: flex;
        align-items: center;
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
    }

    .enquire-outer ul li {
        width: 50%;
        background: #fefefe;
        padding: 5px 0;
        color: #000000;
        border-bottom: 1px solid #b4afaf;
        text-align: center;
    }

    .enquire-outer ul .call-now {
        background: #000;
        color: #fff;
    }

    .enquire-outer ul .call-now a {
        color: #fff;
        text-decoration: none;
    }

    .enquire-outer ul .call-now img {
        max-width: 28px;
    }

    .enquire-outer ul li img {
        max-width: 28px;
    }

    .enquire-outer ul li p {
        margin-bottom: 0;
        font-size: 14px;
    }
    
}

@media only screen and (max-width: 510px) {
    .banner-section-content {
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .line-border-bottom {
        border-bottom: 1px dashed #fff;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 430px) {
    .banner-section-content {
        width: 100%;
        left: 0;
        bottom: 0;
        position: relative;
        background: #0b1130;
        text-align: center;
    }

    p.banner-location {
        width: 55%;
        margin: 0 auto;
    }

        .banner-section {
        margin-top: -70px;
    }

    .amenities-swiper .swiper-slide img {
        height: 210px;
    }

    .section-title h2 {
        font-size: 21px;
    }

    .section-title p {
        font-size: 14px;
        text-align: center;
    }
    p.banner-info-configuration {
    width:80%;
    margin:0 auto;
}
}
@media only screen and (max-width: 400px) {
    .banner-btn .download-brochure{
        display:none;
    }
}