@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'NyghtSerif-Regular';
    src: url('../font/NyghtSerif-Regular.ttf') format('truetype');
}

body {
    font-family: "Poppins", sans-serif;
}

/*=========================
        TOP HEADER
=========================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header-top {
    background: linear-gradient(90deg, #03030300, #ffffffdb, #3a398800);
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-left {
    max-width: 130px;
    margin: 0 auto;
}

/*=========================
        NAVBAR
=========================*/

.header-nav {
    background: linear-gradient(90deg, var(--primary), var(--foreground), var(--beige));
    box-shadow: 0 0 3px #fff;
}

.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* space-between hata do */
    gap: 35px;
    /* Menu items ke beech ka gap */
    padding-left: 20px;
    /* Left se 20px space */
    list-style: none;
    margin-bottom: 0;
}

.header-nav ul li {
    flex: 0 0 auto;
    text-align: center;
}

.header-nav ul li a {

    display: block;
    padding: 18px 0;

    color: #fff;
    text-decoration: none;

    text-transform: uppercase;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .5px;

    transition: .3s;

}

.header-nav ul li a:hover {

    background: #111;
    color: #d6b15a;

}

/* Active Menu */

.header-nav ul li a.active {

    color: #d6b15a;

}

/*=========================
      STICKY HEADER
=========================*/

.main-header.sticky {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9999;

    animation: header .4s ease;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);

}

@keyframes header {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


/* HEADER CSS ENDS */
.banner-section {
    position: relative;
    overflow: hidden;
    margin-top: 53px;
}

.banner-section::before {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, black, transparent, transparent);
    width: 100%;
    height: 100%;
    content: "";
}

.banner-section .container-fluid {
    padding: 0;
}

.banner-section-information {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0 20px;
    background: linear-gradient(0deg, black, transparent);
}

.desktop-banner {
    display: block;
}

.tab-banner {
    display: none;
}

.mobile-banner {
    display: none;
}

.banner-section-information h1 {
    font-family: 'NyghtSerif-Regular';
    color: #ffffff;
    font-size: 55px;
    margin-bottom: 0;
}

p.banner-location {
    color: aliceblue;
    font-family: 'NyghtSerif-Regular';
    text-transform: capitalize;
    font-size: 22px;
    letter-spacing: 1px;
}

.padding-space-extra {
    padding: 90px 0;
}

.overview-section-infromation {
    width: 85%;
    margin: 0 auto;
}

.section-title h2 {
    font-family: 'NyghtSerif-Regular';
    font-size: 40px;
}

.overview-info p {
    font-size: 15px;
    color: #b2b2b2;
    letter-spacing: 1px;
}

.btn {
    width: auto;
    margin-right: 20px;
    background: linear-gradient(90deg, #e6a17a9e 0%, #dd9f7c 20%, #d79874 40%, #ddd9d7 50%, #d5a58b 60%, #d38d65 80%, #de8f62 100%) 0 0 / 300%;
    background-size: 300% 100%;
    animation: gradientMove 5s linear infinite;
    color: #000000;
}

.banner-btn .contact-sales-manager {
    background: #ffffff;
    color: #000;
}

.banner-btn .contact-sales-manager a {
    color: #000;
    text-decoration: none;
}

.banner-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-text::-webkit-scrollbar {
    width: 6px;
}

.more-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.more-text::-webkit-scrollbar-thumb {
    background: #01152d;
    border-radius: 10px;
}

.more-text::-webkit-scrollbar-thumb:hover {
    background: #01152d;
}

.read-more-btn {
    border: none;
    background: 0 0;
    color: #9a8557;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    transition: color 0.3s;
}

.more-text {
    display: none;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.walkthrought-view {
    width: 60%;
    margin: 0 auto;
    margin-top: 30px;
}

:root {
    --background: #454492;
    --foreground: #1b1a43;
    --primary: #030303;
    --beige: #3a3988;
    --secondary: #f37a21;
}

.section-title h2 {
    font-size: 35px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary), var(--beige), var(--foreground), var(--beige), var(--primary));
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
    font-family: 'NyghtSerif-Regular';
}

.root-info h2 {
    background: linear-gradient(90deg, #e6a17a9e 0%, #dd9f7c 20%, #d79874 40%, #ddd9d7 50%, #d5a58b 60%, #d38d65 80%, #de8f62 100%) 0 0 / 300%;
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
    font-family: 'NyghtSerif-Regular';
}

.root-info h1 {
    background: linear-gradient(90deg, #b97b58 0%, #dd9f7c 20%, #d79874 40%, #ddd9d7 50%, #d5a58b 60%, #b97b58 80%, #b97b58 100%) 0 0 / 300%;
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
    font-family: 'NyghtSerif-Regular';
}

.root-info p {
    color: #b2b2b2;
}

.inform-banner p {
    color: #fff;
}

.confi-info {
    background: #d2bc88;
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
    font-family: 'NyghtSerif-Regular';
    font-size: 23px !important;
    margin-bottom: 5px !important;
}

.configuration-info {
    border-left: 1px solid #d2bc88;
    padding-left: 10px;
    margin-bottom: 33px;
}

.confi-info-in {
    font-size: 13px !important;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.highlight-section-infromation {
    width: 90%;
    margin: 0 auto;
}

.highlight-img img {
    border-radius: 20px;
}

.highlight-info ul li {
    margin-bottom: 10px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-size: 15px;
}

.about-developer-infor p {
    color: #404040;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-title p {
    font-size: 14px;
    letter-spacing: 1px;
}

.walkthrough-img {
    height: 60vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 3px #000;
    border-radius: 10px;
}

.walkthrough-img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 9;
    background: linear-gradient(0deg, #00000085, #0000007d, #000000b5);
    pointer-events: none;
}

section {
    position: relative;
    overflow: hidden;
}

.project-secondary-info {
    max-width: 254px;
    position: absolute;
    top: 9px;
}

.walkthrough-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    animation: zoomInOut 8s ease-in-out infinite;
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

.walkthrough-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    content: "";
    z-index: 9;
    color: #fff;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 35px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.bg-color {
    background: linear-gradient(90deg, var(--primary), var(--foreground), var(--beige));
}

.bg-color-in {
    background: #f4ebe4;
}

.price-section-information {
    width: 85%;
    margin: 0 auto;
}

.price-section-information .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.price-information {
    background: linear-gradient(90deg, var(--primary), var(--foreground), var(--beige));
    text-align: center;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 0 3px #d5d5d5;
    color: #fff;
}

.project-type {
    font-family: 'Poppins';
    text-transform: uppercase;
    font-size: 27px;
    margin-bottom: 20px;
    padding-bottom: 0px;
    border-bottom: 1px solid #8c8c8c;
}

.project-type p {
    margin-bottom: 0;
    font-family: 'NyghtSerif-Regular';
}

.project-size,
.project-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #8c8c8c;
}

.project-size p,
.project-price p {
    margin-bottom: 0;
}

.gallery-section-information .section-title {
    margin-bottom: 30px;
    text-align: Center;
}

.gallery-img {
    height: 75vh;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 3px #000;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 3px #000;
}

.gallerySwiper {
    position: relative;
    padding-bottom: 70px;
}

/* Navigation Wrapper */
.gallery-navigation {
    position: absolute;
    bottom: 0;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
}

/* Navigation Buttons */
.gallery-navigation .swiper-button-prev,
.gallery-navigation .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    margin: 0;
    background: #1b1a43;
    color: #fff;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.gallery-navigation .swiper-button-prev:hover,
.gallery-navigation .swiper-button-next:hover {
    background: #000;
    color: #fff;
}

.gallery-navigation .swiper-button-prev::after,
.gallery-navigation .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.floor-plan-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.floor-tabs {
    display: flex;
    gap: 15px;
    width: 50%;
    margin: 0 auto;
    border-bottom: 1px solid #dbc794;
    justify-content: space-between;
    align-items: center;
}

.floor-tab {
    padding: 12px 35px;
    background: #f3f3f3;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.floor-tab:hover {
    background: #dbc794;
    color: #000;
    text-decoration: none;
}

.floor-tab:not(.collapsed),
.floor-tab.active {
    background: #dbc794;
    color: #000;
}

.collapse img {
    width: 100%;
    border-radius: 10px;
}

.floor-plan-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.floor-plan-img {
    max-width: 620px;
    border-radius: 20px;
}

.floor-plan-img img {
    border-radius: 20px;
    margin-bottom: 20px;
}

.floor-plan-in {
    width: 100%;
    text-align: center;
}

.floor-plan-in h3 {
    font-family: 'Poppins';
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floor-plan-in p {
    letter-spacing: 1px;
}

.floor-plan-information-section {
    position: relative;
    overflow: hidden;
}

.floor-plan-in .btn {
    width: auto;
    background: #000;
    color: #fff;
}

.highlight-info-in {
    padding: 25px 10px;
    text-align: Center;
    box-shadow: 0 0 3px #a09999;
    margin: 5px;
    color: #000000;
}

.highlight-info-in p {
    font-family: 'Poppins';
    margin-bottom: 0;
    margin-top: 20px;
}

.highlight-info-in .btn {
    background: transparent;
    color: #fff;
    border-top: 1px solid #8f8f8f;
    width: 66%;
    border-bottom: 1px solid #8f8f8f;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-info-in .btn:hover {
    background: #000;
    color: #fff;
}

.highlight-swiper {
    position: relative;
    padding-bottom: 70px;
}

.highlight-section-infromation .section-title {
    text-align: Center;
    margin-bottom: 30px;
}

.about-developer-information {
    width: 85%;
    margin: 0 auto;
}

.about-developer-in {
    text-align: Center;
}

.about-developer-in img {
    max-width: 315px;
    border-radius: 10px;
}

.location-section-infroamtion .section-title {
    text-align: center;
    margin-bottom: 30px;
}

/* faq-section start */
.faq-section-information {
    border: none;
    border-radius: 4px;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

p.policy-point {
    margin-bottom: 0;
}

.card {
    border: none;
    border-radius: 0;
    width: 100%;
    background: transparent;
    color: #9f9f9f;
}

.card:last-child {
    border-bottom: none;
}

.card-header {
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    border-bottom: 1px solid #4b4b4b;
}

.card-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    word-wrap: break-word;
    /* Prevent long text overflow */
}

.faq-section-information .btn-link {
    text-decoration: none;
    color: #cbcbcb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    white-space: normal;
    text-align: left;
    font-size: 17px;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
    color: #fff;
}

.icon {
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    transition: transform 0.3s;
    flex-shrink: 0;
    /* Keep icon from squeezing text */
}

.icon.plus::before {
    content: "+";
}

.icon.minus::before {
    content: "–";
}

/* faq end */
.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
    color: #fff;
}

.faq-title {
    text-align: center;
    font-family: 'Poppins';
}

.faq-title h2 {
    font-size: 40px;
    color: #000;
    font-weight: 200;
}

.location-information-section {
    margin-top: 20px;
}

.location-inform {
    padding: 20px 20px 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 3px #fff;
}

.location-inform ul {
    padding-left: 0px;
    list-style: none;
}

.inform-location {
    font-size: 25px;
    margin-bottom: 15px;
}

.location-inform ul li {
    margin-bottom: 10px;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.location-inn b {
    font-weight: 300;
    font-size: 13px;
}

.location-inn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-inn p {
    margin-bottom: 0;
    font-size: 14px;
}

.faq-section-information .section-title {
    text-align: center;
}

.location-section-infroamtion {
    width: 90%;
    margin: 0 auto;
}

.inform-location i {
    margin-right: 10px;
}

.location-inform .card {
    margin-bottom: 20px;
}

.location-img {
    box-shadow: 0 0 3px #867e7e;
    border-radius: 10px;
}

.location-img img {
    border-radius: 10px;
}

.amnenities-section-infromation .section-title {
    text-align: center;
}

.amenities-information {
    margin-top: 30px;
}

.amenities-img img {
    border-radius: 20px;
    margin-bottom: 10px;
}

.amenities-info p {
    font-size: 16px;
    letter-spacing: 1px;
    text-align: Center;
}

.footer-section-points {
    width: 90%;
    margin: 0 auto;
}

.footer-inner h3 {
    font-family: 'NyghtSerif-Regular';
    text-align: Center;
}

.footer-group-row p,
.footer-points p {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #000;
    font-size: 20px;
}

.footer-group-row ul {
    padding-left: 10px;
    list-style: none;
}

.footer-group-row ul li,
.footer-points ul li {
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.footer-points ul li a {
    color: #000;
}

.side-enquire-now {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 99;
    writing-mode: vertical-rl;
}

.side-enquire-now .btn {
    padding: 20px 5px;
    border-radius: 18px;
    background: linear-gradient(90deg, var(--primary), var(--foreground), var(--beige));
    color: #d2bc88;
    font-size: 16px;
    margin-right: 0;
    border: 1px solid #d2bc88;
}

.enquire-outer {
    display: none;
}

.faq-div .card {
    margin-bottom: 10px;
}

.pulse {
    animation: pulseGlow 1.5s infinite;
}

.shake {
    animation: shakeeGlow 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px #dbdbdb);
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px #dbdbdb);
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px #dbdbdb);
    }
}

@keyframes shakeeGlow {
    0% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 0px #dbdbdb);
    }

    25% {
        transform: rotate(10deg);
        filter: drop-shadow(0 0 4px #dbdbdb);
    }

    50% {
        transform: rotate(-10deg);
        filter: drop-shadow(0 0 8px #dbdbdb);
    }

    75% {
        transform: rotate(10deg);
        filter: drop-shadow(0 0 4px #dbdbdb);
    }

    100% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 0px #dbdbdb);
    }
}

.auto-popup-right h3 {
    font-size: 24px;
}

.side-enquire-inn {
    position: fixed;
    bottom: 15px;
    left: 10px;
    width: 90px;
    height: 90px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px #000;
    border-radius: 100%;
    padding: 10px;
    z-index: 99;
}

.footer-privacy {
    text-align: center;
}

.cta-section-1 {
    background: url(../images/oryza/site-lap.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    background-attachment: fixed;
    margin-bottom: 0;
    overflow: hidden;
    height: 100vh;
}

.cta-section-1::before {
    position: absolute;
    content: "";
    z-index: 9;
    background: #00000038;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.itawacta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    content: "";
    width: 100%;
    text-align: center;
}

.itawacta p {
    font-family: 'NyghtSerif-Regular';
    font-size: 43px;
    margin: 0 auto;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.walkthrough-video {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.walkthrough-video i {
    font-size: 30px;
}

.location-img {
    position: relative;
    overflow: hidden;
    height: 75vh;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1400px) {
    .side-enquire-inn {
        width: 70px;
        height: 70px;
    }
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
    .header-top {

        padding: 12px 0;

    }

    .header-nav {

        overflow-x: auto;

    }

    .header-nav ul {

        width: 800px;

    }

    .header-nav ul li a {

        font-size: 13px;

        padding: 15px 0;

    }

    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }

    .banner-section {
        margin-top: 46px;
    }

    .price-information {
        margin-bottom: 20px;
    }

    .itawacta p {
        width: 50%;
    }

    .about-developer-in img {
        max-width: 100%;
        border-radius: 10px;
    }

    .faq-section-information {
        width: 100%;
    }

    .cta-section-1 {
        height: 80vh;
    }

    .highlight-info ul {
        padding-left: 0px;
    }

    .floor-tabs {
        width: 75%;
    }

    .overview-section-infromation {
        width: 90%;
    }

    .confi-info {
        font-size: 19px !important;
    }

    .banner-section-information h1 {
        font-size: 45px;
    }

    .inform-banner p {
        color: #fff;
        font-size: 19px;
    }

    .overview-info p {
        font-size: 13px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .gallery-img {
        height: 60vh;
    }

    .highlight-img {
        margin-top: 20px;
    }

    .itawacta p {
        font-size: 33px;
    }

    .walkthrough-video {
        width: 76px;
        height: 76px;
    }

    .walkthrough-video i {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-section-information {
        bottom: 20px;
        display: block;
    }

    .padding-space-extra {
        padding: 55px 0;
    }

    .price-section-information {
        width: 93%;
    }

    .overview-img {
        max-width: 400px;
        margin: 0 auto;
    }

    .floor-plan-img {
        max-width: 435px;
    }

    .about-developer-in img {
        max-width: 370px !important;
    }

    .location-img {
        position: relative;
        overflow: hidden;
        height: 50vh;
    }

    .footer-inner h3 {
        font-size: 25px;
    }

    .logo-left {
        max-width: 96px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 575px) {
    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .banner-section {
        margin-top: 0px;
    }

    .project-secondary-info {
        max-width: 163px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .floor-tab {
        padding: 9px 23px;
        font-size: 13px;
    }

    .itawacta p {
        width: 80%;
    }

    .about-developer-information {
        width: 95%;
    }

    .btn {
        margin-right: 9px;
        font-size: 14px;
    }

    .banner-section-information h1 {
        font-size: 39px;
    }

    .side-enquire-now .btn {
        border-radius: 18px;
        color: #d2bc88;
        font-size: 14px;
    }

    .overview-info p {
        font-size: 12px;
    }

    .highlight-info ul li {
        font-size: 13px;
    }

    .about-developer-in img {
        max-width: 100% !important;
    }

    .inform-location {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .location-inn p {
        margin-bottom: 0;
        font-size: 12px;
    }

    .location-inform ul li {
        margin-bottom: 5px;
        letter-spacing: 1px;
        padding-bottom: 5px;
    }

    .section-title p {
        font-size: 12px;
    }

    .amenities-info p {
        font-size: 12px;
    }

    .faq-section-information .btn-link {
        font-size: 14px;
    }

    .card-body {
        font-size: 13px;
    }
        .footer-inner h3 {
        font-size: 20px;
    }
    .footer-group-row p, .footer-points p {
    font-size: 16px;
}
.footer-group-row ul li, .footer-points ul li {
    font-size: 13px;
}
p.footer-disclaimer {
    font-size: 13px;
}
p.market-privacy {
    font-size: 13px;
}
.enquire-outer {
        display: block;
    }

    .enquire-outer ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9;
    }

    .enquire-outer ul li {
        width: 100%;
        padding: 10px;
        text-align: center;
        background: #1d3d70 !important;
    }

    .enquire-outer ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
    }

    .enquire-outer ul .whatsapp-now {
        background: #32b24f !important;
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .btn {
        font-size: 12px;
    }

    .banner-section {
        margin-top: 49px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .floor-tabs {
        width: 96%;
    }

    .itawacta p {
        width: 90%;
        font-size: 26px;
    }

    .cta-section-1 {
        height: 65vh;
    }

    .about-developer-infor p {
        font-size: 13px;
    }

    .location-img {
        height: 100%;
    }
}