/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #333;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 105px;
}

/* Typography */
.title-script {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 65.657px;
    color: #08472d;
    letter-spacing: 1.97px;
    font-weight: 400;
    line-height: 1.2;
}

.title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 49.243px;
    color: #08472d;
    letter-spacing: 1.48px;
    font-weight: 400;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.nav-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav-logo {
    width: 100px;
}

.nav-logo-right img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav-logo-right {
    width: 95px;
}

.nav-menu a {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: white;
    text-decoration: none;
    letter-spacing: 0.63px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* NAVIGATION */
.main-nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.08); */
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #103525 0%, #0a5637 100%);
}



.nav-menu {
    list-style: none;
    display: flex;
    gap: 50px;
    margin-bottom: 0;
}



.header-bg {
    background: linear-gradient(90deg, #103525 0%, #0a5637 100%);
    /* transition: background 0.5s ease-in-out; smooth fade */
}

.header-bg .nav-container {
    padding: 10px 30px;
}

.fancy-heading.breath_forest_heading span:nth-child(2) {
    margin-right: 70px;

}

.fancy-heading.breath_forest_heading span:nth-child(3) {
    margin-top: -10px;
    margin-right: 55px;
}

.fancy-heading.project_highlights span:nth-child(1) {
    margin-left: 100px;
}

.amenities-heading.fancy-heading span:nth-child(3) {
    margin-top: -10px;
    margin-right: -30px;
}

.plan-heading.fancy-heading span:nth-child(1) {
    margin-left: 35px;
}

.amenities-heading.fancy-heading span:nth-child(1) {
    margin-left: 120px;
}

.township-heading.fancy-heading span:nth-child(1) {
    margin-left: 70px;

}

.township-heading.fancy-heading span:nth-child(2) {
    margin-top: 10px;
}

.statistics-section .highlights-heading.fancy-heading span:nth-child(1) {

    margin-left: 80px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .nav-menu {
        gap: 25px;
    }
}

@media (max-width: 769px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .nav-menu li a {
        font-size: 20px;
    }
}

/* Banner Section */
#banner-section {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-top: 84px;
}

/* Wrapper */
#banner-section .banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Banner Image Box */
/* .banner-image-box {
    height: 500px;
} */

@media (min-width: 769px) {
    /* .banner-image-box {
        height: 100vh;
    } */
}



/* Responsive Picture Image */
/* .banner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* Banner Content Container */
.banner-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    height: 100%;
    width: 90%;
    z-index: 1;

    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Widths on breakpoints */
@media (min-width: 769px) {
    .banner-content {
        width: 99%;
    }
}

@media (min-width: 1024px) {
    .banner-content {
        width: 90%;
    }
}

@media (min-width: 1280px) {
    .banner-content {
        width: 80%;
    }
}

/* Door Image Box */
.banner-door {
    width: 30%;
    margin: auto;
}

#door-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2.5s ease-out;
    /* Just 1 transition */
}

/* Only used if doing FULL expand with CSS class */
.door-expand-full {
    transform: scale(7);
    opacity: 0;
}

.banner-text {
    opacity: 0;
    transition: opacity 1s ease;
    /* fade only */
}

.show-banner-text {
    opacity: 1;
    /* fade in */
}


/* Banner text hidden initially */
.banner-text {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s ease-out;
    width: 40%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}

/* Fade in when visible */
.show-banner-text {
    opacity: 1;
    transform: translateY(0);
}

/* Centering text inside banner section */
.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* ensures perfect vertical center */
    height: 100%;
    text-align: center;
    width: 100%;
}

.backg-image {
    background-image: url("assets/images/pattern-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    width: 100%;
    position: relative;
}

.overview-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.overview-frame {
    text-align: center;
    width: 80%;
    margin: auto;
}

.overview-img {
    max-width: 100%;
    height: auto;
}

.overview-heading {
    color: #0f452e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.overview-heading {
    margin: 0;
    padding: 0;
}

.fancy-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* All lines start at same left point */
    gap: 4px;
    /* Space between lines */
    margin-bottom: 30px;
    padding: 0;
}

/* 1st & 3rd line: Script font */
.fancy-heading span:nth-child(1),
.fancy-heading span:nth-child(3) {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 55px;
    font-weight: 400;
    letter-spacing: 1.6px;
    color: #08472d;
    line-height: 1;
}

/* Middle line: Serif font */
.fancy-heading span:nth-child(2) {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1.3px;
    color: #08472d;
    line-height: 1.1;
}

/* 1st & 3rd line: Script font */
.fancy-heading span:nth-child(2) {
    margin-left: auto;
    width: 80%;
}

.fancy-heading span:nth-child(3) {
    margin-left: auto;
    width: 50%;
}

.amenities-heading.fancy-heading span:nth-child(3) {
    margin-left: auto;
    width: 40%;
}

.overview-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #0f452e;
    width: 90%;
}

.leaf-pattern-right {
    width: 40%;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 2;
}

.leaf-pattern-left {
    width: 50%;
    margin-left: auto;
    position: absolute;
    left: 0;
    top: 0;
}

.forest-pattern {
    width: 100%;
    margin-left: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    z-index: 10;
}

.hero-frame {
    width: 100%;
    height: 100%;
}

.hero-frame-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Intro Section */
.intro-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.intro-leaves-decoration {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0.9;
}

.intro-content {
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.intro-image {
    width: 400px;
    height: 610px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    position: absolute;
    width: 177.69%;
    height: 177.09%;
    left: -39.87%;
    top: -21.88%;
    max-width: none;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    max-width: 750px;
    color: #08472d;
}

.intro-heading {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 170px;
    flex-shrink: 0;
    line-height: 1.467;
}

.intro-title-script {
    font-family: 'Monsieur La Doulaise', cursive;
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.65px;
    color: #08472d;
    position: absolute;
}

.intro-title-1 {
    left: 0;
    top: 0;
}

.intro-title-2 {
    left: 350px;
    top: 85px;
}

.intro-title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 1.26px;
    color: #08472d;
    position: absolute;
    left: 90px;
    top: 55px;
}

.intro-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #08472d;
    width: 100%;
    flex-shrink: 0;
}

.intro-paragraph-1 {
    margin-bottom: 0;
}

.intro-paragraph-2 {
    margin-top: 0;
    margin-bottom: 0;
}

/* Project Highlights Section */
.highlights-section {
    position: relative;
    padding: 30px 0;
}

.highlights-heading {
    width: 40%;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    line-height: 1.3;
}

.highlights-diagram {
    position: relative;
    width: 100%;
    max-width: 1443px;
    height: 850px;
    margin: 0 auto;
}

.highlights-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 823px;
    height: 823px;
}

.tree-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-point {
    position: absolute;
    text-align: center;
}

.highlight-point h3 {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    color: #08472d;
    letter-spacing: 1.38px;
    margin-bottom: 5px;
    font-weight: 400;
}

.highlight-point p {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #08472d;
}

.highlight-top-left {
    top: 56px;
    left: calc(50% - 500px);
    text-align: end;
}

.highlight-top-right {
    top: 56px;
    right: calc(50% - 600px);
    text-align: left;

}

.highlight-middle-left {
    top: 276px;
    left: calc(50% - 550px);
    text-align: end;
}

.highlight-middle-right {
    top: 276px;
    right: calc(50% - 550px);
    text-align: left;

}

.highlight-bottom-left {
    bottom: 147px;
    left: calc(50% - 450px);
    text-align: end;

}

.highlight-bottom-right {
    bottom: 147px;
    right: calc(50% - 450px);
    text-align: left;

}

/* Amenities Section */
.amenities-section {
    position: relative;
    padding: 120px 0 370px 0;
    overflow: hidden;
}

.amenities-heading {
    width: 50%;
    margin: auto;
}

.amenities-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 765px;
    overflow: hidden;
    opacity: 0.4;
    z-index: 0;
}

.amenities-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-description {
    font-size: 21px;
    color: #08472d;
    max-width: 90%;
    margin: 30px auto 0;
    line-height: 1.6;
}

.amenities-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    margin-top: 50px;
}

.amenity-card {
    width: 15%;
    text-align: center;
    cursor: pointer;
    transition: transform 0.6s ease;
}

.amenity-image {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.amenity-image:hover {
    transform: translateY(-12px);
    /* Smooth slide up */
}

.amenity-image {
    width: 100%;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-out;
}

.amenity-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #000;
    letter-spacing: 1.12px;
    font-weight: 400;
    margin-top: 30px;

}

/* Connectivity Section */
.connectivity-section {
    padding: 100px 0;
    position: relative;
}

.connectivity-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1620px;
    margin: 64px auto 0;
}

.connectivity-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
}

.connectivity-btn {
    background: linear-gradient(90deg, #103525 0%, #0a5637 100%);
    border: 1px solid #e2c06a;
    border-radius: 70px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s ease;
}


.connectivity-btn:hover {
    transform: translateY(-3px);
}

.connectivity-icon {
    width: 40px;
    height: 40px;
}

.connectivity-btn span {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: white;
    letter-spacing: 0.84px;
    text-align: left;
    flex: 1;
}

/* Unit Plans Section */
.unit-plans-section {
    padding: 30px 0;
}

.plan-heading {
    width: 20%;
    margin: auto;
}

.plans-slider {
    position: relative;
    margin-top: 60px;
}

.plans-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    justify-content: space-between;
    /* prev left, next right */
    margin-top: 0;
    padding: 0 20px;
    /* space from slider edges */
}

.plans-slider .owl-prev {
    position: absolute;
    left: -100px;
}

.plans-slider .owl-next {
    position: absolute;
    right: -100px;
}

.plans-slider .owl-prev img,
.plans-slider .owl-next img {

    width: 70px;
    height: 70px;
}

.plans-slider-wrapper {
    max-width: 85%;
    margin: 0 auto;
}

.slider-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.slider-btn:hover {
    transform: scale(1.1);
}

.plans-container {
    display: flex;
    gap: 30px;
    max-width: 1450px;
    justify-content: center;
}

.plan-card {
    background: transparent;
    min-width: 710px;
    transition: all 0.5s ease;
}

.plan-card:not(.active) {
    display: none;
}

.plan-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #08472d;
    letter-spacing: 0.72px;
    margin-bottom: 10px;
    text-align: center;
}

.plan-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.plan-image img {
    width: 100%;
    height: auto;
}

/* Township Section */
.township-section {
    padding: 120px 0;
}

.township-heading.fancy-heading span:nth-child(3) {
    width: 30%;
}

.township-desc {
    color: white;
    font-size: 1.2rem;
    /* relative unit for scalability */
    line-height: 1.6;
    width: 80%;
    margin: auto;
    padding: 0 40px 40px 40px;
}

.township-frame {
    width: 90%;
    margin-right: auto;
}

.township-box img {

    width: 70px;
    height: auto;
    display: block;
    margin: auto;
}

.township-box {
    background-image: url("assets/images/bg-box.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 20px;
    /* inner spacing */
    width: 100%;
    position: relative;
    min-height: 400px;
}

.township-aerial-img {
    width: 100%;
    height: auto;
}

.township-text-box {
    background: linear-gradient(135deg, #08472d 0%, #0a5637 100%);
    border-radius: 20px;
    padding: 60px;
    color: white;
}

.township-text-box h2 {
    margin-bottom: 30px;
}

.township-text-box .title-script,
.township-text-box .title-serif {
    color: white;
}

.township-text-box p {
    font-size: 13px;
    line-height: 1.6;
    color: white;
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 80px 0;
}

.statistics-wrapper {
    margin-top: 150px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stats-grid-secondary {
    margin-top: 0;
}

.stat-item {
    text-align: left;
    min-width: 10%;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    color: #08472d;
    letter-spacing: 1.4863px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;

}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #08472d;
    line-height: 1.6;
    text-align: left;
}

.stat-label-small {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #08472d;
    margin-bottom: 0;
}

.stats-image {}

.stats-image img {
    width: 100%;
}

/* Footer Section */
.footer-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url("assets/images/footer-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    text-align: center;
    color: white;
    margin: auto;
    padding: 0;
    top: 100px;
}

.footer-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

.footer-copyright a {
    color: white;
    text-decoration: underline;
}

.footer-copyright a:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.connectivity-section .highlights-heading.fancy-heading span:nth-child(1) {
    margin-left: 90px;
}

.mobile_view {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .highlights-center {
        width: 650px;
        height: 650px;
    }

    .highlights-diagram {
        height: 700px;
    }

    .highlight-top-left,
    .highlight-top-right {
        top: 80px;
    }

    .highlight-middle-left,
    .highlight-middle-right {
        top: 260px;
    }
}

@media (max-width: 1440px) {
    .fancy-heading.project_highlights span:nth-child(1) {
        margin-left: 50px;
    }

    .amenities-heading.fancy-heading span:nth-child(1) {
        margin-left: 65px;
    }

    .amenities-heading.fancy-heading span:nth-child(3) {
        margin-right: -50px;
    }

    .connectivity-section .highlights-heading.fancy-heading span:nth-child(1) {
        margin-left: 35px;
    }

    .plan-heading.fancy-heading span:nth-child(1) {
        margin-left: 10px;
    }

    .township-heading.fancy-heading span:nth-child(1) {
        margin-left: 45px;
    }

    .statistics-section .highlights-heading.fancy-heading span:nth-child(1) {
        margin-left: 45px;
    }
}

@media (max-width: 1366px) {
    .container {
        padding: 0 60px;
    }

    .leaf-pattern-left {
        width: 30%;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-menu {
        gap: 40px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .hero-content {
        width: 750px;
        height: 750px;
    }

    .title-script {
        font-size: 55px;
    }

    .title-serif {
        font-size: 42px;
    }


    .highlights-diagram {
        height: 600px;
    }

    .highlight-point h3 {
        font-size: 36px;
    }

    .highlight-point p {
        font-size: 26px;
    }

    .header-bg .nav-container {
        padding: 15px 30px;
    }

    .highlight-bottom-left {
        bottom: 60px;
    }

    .highlight-bottom-right {
        bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    /* #banner-section {
        margin-top: 97px;
    } */
    #banner-section {
        padding-top: 90px;
    }


    .plans-slider .owl-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: static;
        margin-top: 50px;
    }

    .township-frame {
        width: 100%;
        margin: auto;
    }

    .plans-slider .owl-next,
    .plans-slider .owl-prev {
        position: static;

    }

    .township-heading.fancy-heading span:nth-child(2) {
        margin-left: auto;
        width: 90%;
    }

    .statistics-wrapper {
        margin-top: 10px;
    }

    .statistics-section h2.highlights-heading.fancy-heading {
        margin-top: 30px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
        display: block;
        transition: 0.3s ease;
    }

    /* Hide logos or adjust as needed */
    .nav-logo-right {
        display: none;
    }

    /* HIDE MENU INITIALLY */
    .nav-menu {
        position: fixed;
        top: 135px;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.4s ease;
        z-index: 999;
        background: linear-gradient(90deg, #103525 0%, #0a5637 100%);
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px;
        padding: 0;
        padding-top: 30px;

    }

    /* SHOW MENU WHEN ACTIVE */
    .nav-menu.active {
        right: 0;
    }

    .nav-container {
        flex-direction: row;
        gap: 20px;
    }

    .hero-section {
        height: 700px;
    }

    .hero-content {
        width: 550px;
        height: 550px;
    }

    .nav-container {
        gap: 20px;
    }



    .nav-menu a {
        font-size: 25px;
    }

    .intro-content,
    .township-content {
        flex-direction: column;
        gap: 50px;
    }

    .intro-image {
        width: 100%;
        height: auto;
        aspect-ratio: 495 / 756;
    }

    .intro-image img {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        object-fit: cover;
    }

    .intro-text {
        width: 100%;
    }

    .intro-heading {
        width: 100%;
        height: auto;
        position: relative;
    }

    .intro-title-script {
        font-size: 45px;
    }

    .intro-title-serif {
        font-size: 35px;
    }

    .intro-title-1 {
        position: relative;
        display: block;
        left: 0 !important;
        top: 0 !important;
    }

    .intro-title-2 {
        position: relative;
        display: block;
        left: 0 !important;
        top: 0 !important;
    }

    .intro-title-serif {
        position: relative;
        display: block;
        left: 0 !important;
        top: 0 !important;
    }

    .intro-description {
        font-size: 18px;
    }

    .title-script {
        font-size: 45px;
    }

    .title-serif {
        font-size: 35px;
    }

    .highlights-diagram {
        height: 700px;
    }

    .highlight-top-left {
        top: 56px;
        left: calc(50% - 400px);
        text-align: end;
    }

    .highlight-top-right {
        top: 56px;
        right: calc(50% - 400px);
        text-align: left;

    }

    .highlight-middle-left {
        top: 276px;
        left: calc(50% - 450px);
        text-align: end;
    }

    .highlight-middle-right {
        top: 276px;
        right: calc(50% - 450px);
        text-align: left;

    }

    .highlight-bottom-left {
        bottom: 147px;
        left: calc(50% - 350px);
        text-align: end;

    }

    .highlight-bottom-right {
        bottom: 147px;
        right: calc(50% - 350px);
        text-align: left;

    }

    .amenities-heading {
        width: 60%;
    }

    .township-desc {
        font-size: 16px;
        width: 100%;
    }

    .statistics-section .highlights-heading {
        width: 50%;
    }

    .stat-item {
        text-align: left;
        min-width: 30%;
    }

    .footer-section {
        height: auto;
        min-height: 500px;
        padding: 0;
    }

    .footer-content {
        position: absolute;
        max-width: 100%;
        bottom: 0;

    }

    .highlight-point h3 {
        font-size: 25px;
    }

    .highlight-point p {
        font-size: 15px;
    }

    .connectivity-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .township-text-box p {
        font-size: 22px;
    }

    .plan-card {
        min-width: auto;
        max-width: 600px;
    }

    .fancy-heading.project_highlights span:nth-child(1) {
        margin-left: 10px;
    }

    .connectivity-section .highlights-heading.fancy-heading span:nth-child(1) {
        margin-left: -20px;
    }

    .plan-heading.fancy-heading span:nth-child(1) {
        margin-left: -20px;
    }

    .township-heading.fancy-heading span:nth-child(1) {
        margin-left: -40px;
    }

    .amenities-heading.fancy-heading span:nth-child(1) {
        margin-left: 25px;
    }

    .desktop_view {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .mobile_view {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .footer-content {
        position: absolute;
        max-width: 100%;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .header-bg .nav-container {
        padding: 15px 30px;
    }

    .hamburger {
        margin-left: 15px;
    }

    .nav-logo {
        width: 110px;
    }

    .nav-logo-right {
        width: 110px;
    }

}

@media (max-width: 992px) {


    /* .banner-image-box {
        height: 80vh;
    } */

    .banner-text {
        width: 80%;
    }

    .banner-door {
        width: 50%;
    }

    .highlights-diagram {
        height: 700px;
    }

    .highlight-top-left {
        top: 56px;
        left: calc(50% - 300px);
        text-align: end;
    }

    .highlight-top-right {
        top: 56px;
        right: calc(50% - 300px);
        text-align: left;

    }

    .highlight-middle-left {
        top: 276px;
        left: calc(50% - 350px);
        text-align: end;
    }

    .highlight-middle-right {
        top: 276px;
        right: calc(50% - 350px);
        text-align: left;

    }

    .highlight-bottom-left {
        bottom: 147px;
        left: calc(50% - 250px);
        text-align: end;

    }

    .highlight-bottom-right {
        bottom: 147px;
        right: calc(50% - 250px);
        text-align: left;

    }

    .highlights-center {
        width: 500px;
        height: 500px;
    }

    .overview-desc {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .amenities-heading {
        width: 70%;
    }

    h2.overview-heading.fancy-heading {
        width: 100%;
        margin: auto;
    }

    .amenity-card {
        width: 25%;
    }

    .highlights-heading {
        width: 70%;
    }

    .plan-heading {
        width: 30%;
    }

    .township-desc {
        width: 80%;
    }

    .statistics-section .highlights-heading {
        width: 60%;
    }

    .header-bg .nav-container {
        padding: 18px 30px;
    }
}

@media (max-width: 769px) {

    .fancy-heading span:nth-child(1),
    .fancy-heading span:nth-child(3) {
        font-size: 40px;
    }

    .fancy-heading span:nth-child(2) {
        font-size: 22px;
    }

    .fancy-heading span:nth-child(2) {
        margin-left: auto;
        width: 80%;
    }

    .fancy-heading span:nth-child(3) {
        margin-left: auto;
        width: 30%;
    }

    .township-desc {
        font-size: 14px;
        width: 90%;
        padding: 10px;
        text-align: center;
    }

    .township-box {
        background-image: url(assets/images/bg-box-mobile.png);
        background-size: contain;
        background-position: center;
        min-height: 430px;
    }

    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .highlights-heading {
        width: 90%;
    }

    .amenities-heading {
        width: 100%;
        margin: auto;
    }

    .amenities-heading.fancy-heading span:nth-child(3) {
        margin-left: auto;
        width: 50%;
    }

    .amenity-card {
        width: 43%;
    }

    .leaf-pattern-right {
        width: 80%;
        top: -40px;
    }

    .leaf-pattern-left {
        width: 50%;
    }

    .connectivity-grid {
        margin-top: 20px;
    }

    .section-description {
        max-width: 100%;
    }

    .container {
        padding: 0 20px;
    }

    .hero-section {
        height: 600px;
    }

    .hero-content {
        width: 450px;
        height: 450px;
    }



    .title-script {
        font-size: 36px;
    }

    .title-serif {
        font-size: 28px;
    }

    .intro-title-script {
        font-size: 36px !important;
    }

    .intro-title-serif {
        font-size: 28px !important;
    }

    .intro-description {
        font-size: 16px;
    }

    .section-description {
        font-size: 18px;
    }

    .amenities-grid {
        align-items: center;
        gap: 20px;
    }

    .amenity-title {
        font-size: 14px;
    }

    .amenities-section {
        padding: 120px 0 100px 0;
    }

    .connectivity-btn span {
        font-size: 15px;
    }

    .connectivity-section {
        padding: 70px 0;
    }

    .plan-heading {
        width: 50%;
    }

    .plans-slider-wrapper {
        max-width: 100%;
    }

    .plans-slider .owl-prev img,
    .plans-slider .owl-next img {
        width: 50px;
        height: 50px;
    }


    .highlights-diagram {
        height: auto;
    }

    .highlights-center {
        width: 100%;
        height: 100%;
    }

    .highlights-center {
        position: static;
        transform: none;
    }

    .highlight-point {
        position: static !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        margin-bottom: 0;
        width: 100%;
        text-align: left;
    }

    .township-text-box {
        padding: 30px;
    }

    .township-text-box p {
        font-size: 18px;
    }

    .plan-card {
        min-width: auto;
    }

    .plan-image {
        padding: 20px;
    }


    .stats-grid {
        justify-content: center;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
        text-align: center;
    }


    .footer-text,
    .footer-copyright {
        font-size: 12px;
        padding: 0 15px;
    }

    .amenities-heading.fancy-heading span:nth-child(3) {
        margin-top: 0px;
        margin-right: -15px;
    }

    .connectivity-section .leaf-pattern-right {
        width: 65%;
        top: -40px;
    }

    .connectivity-section .highlights-heading.fancy-heading span:nth-child(1) {
        margin-left: 0px;
    }

    .plan-heading.fancy-heading span:nth-child(1) {
        margin-left: 0;
    }

    .township-heading.fancy-heading span:nth-child(2) {
        margin-left: 30px;
        width: 95%;
    }

    .township-heading.fancy-heading span:nth-child(1) {
        margin-left: 0;
    }

    .statistics-section .highlights-heading.fancy-heading span:nth-child(1) {
        margin-left: 0;
    }

    .statistics-section .highlights-heading {
        width: 85%;
    }

    .fancy-heading.breath_forest_heading span:nth-child(2) {
        margin-right: 0;
    }

    .mobile_project_highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 25px 50px;
        justify-content: space-evenly;
        text-align: center;
        margin-top: 25px;
    }

    .highlight-point {
        width: 41%;
        text-align: center;
        display: block;
    }

    .stat-label {
        text-align: center;
    }

    .stat-item {
        text-align: center;
        width: 44%;
    }

    .township-frame {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .footer-section {
        background-image: url("assets/images/green-field-with-young-tree-forest 1.webp");
        min-height: 570px;

    }

    .nav-menu {
        top: 90px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 350px;
        height: 350px;
    }

    .title-script {
        font-size: 28px;
    }

    .title-serif {
        font-size: 22px;
    }

    .intro-title-script {
        font-size: 28px !important;
    }

    .intro-title-serif {
        font-size: 22px !important;
    }

    .intro-description {
        font-size: 14px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}