@font-face {
    font-family: head;
    src: url(/assets/fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf);
}


@font-face {
    font-family: para;
    src: url(/assets/fonts/Urbanist/Urbanist-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    scrollbar-width: none;

}

body {
    overflow-x: hidden;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* background-color: rgb(240, 240, 240); */
}

header.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    position: relative;
    /* width: 100%; */
    z-index: 1000;
    /* Increased to ensure it stays on top */
    height: 100px;
    font-family: para;
}

.nav-logo {
    width: 15%;
    position: relative;
}

.nav-logo img {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    z-index: 1002;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 5px;
    border-radius: 10px;
    position: fixed;
    background-color: #333;
    right: 100px;
    top: 2.5%;
    z-index: 101;
}

.nav-links li {
    position: relative;
}

/* Updated selector to include the span trigger */
.nav-links li a,
.dropdown-trigger {
    padding: 10px 20px;
    text-decoration: none;
    font-family: para;
    font-size: 18px;
    color: #ffffff;
    transition: all 0.4s ease;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    display: block;
    cursor: pointer;
    /* Makes it feel like a link */
}

.nav-links li a:hover,
.dropdown-trigger:hover {
    background-color: #fff;
    color: #000;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    width: max-content;
    min-width: 150px;
    list-style: none;
    border-radius: 10px;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
}

/* Hover logic for Desktop */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu li a {
    font-size: 16px;
    text-align: center;
    /* width: 100%; */
    background: transparent;
    color: #ffffff;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    header.main-header {
        padding: 10px 10px;
        height: 70px;
    }

    .nav-logo {
        width: 150px;
    }

    .menu-toggle {
        display: block;
        background-color: #333;
        padding: 10px;
        border-radius: 10px;
        font-size: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #222;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        border-radius: 0;
        padding: 0px;
        right: -110%;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 10px 0;
        width: 80%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li a {
        font-size: 30px;
    }

    /* Mobile Dropdown adjustment */
    .dropdown-menu {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Controlled by JS */
        background-color: #444;
        padding: 0;
        margin: 10px 0px 0px 0px;
    }

    .dropdown-trigger {
        font-size: 30px;
    }

    .dropdown-menu li a {
        padding: 10px 0px;
        font-size: 18px;
    }

    /* Arrow rotation on mobile */
    .dropdown.active i {
        transform: rotate(180deg);
    }
}


/* about-hero-section-start */
.residential-hero-section {
    height: 100vh;
    /* Changed to viewport height for full-screen impact */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/images/banner/residential-hero.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Secondary Backgrounds */
.residential-hero-section-2 {
    background-image: url(/assets/images/commercial/home-commercial-2.JPG);
}

.residential-hero-section-3 {
    background-image: url(/assets/images/lobbies/lobby-hero.JPG);
}

.residential-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.38);
    /* Refined transparency */
}

.residential-heading-adj {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    position: relative;
    z-index: 10;
}

.residential-h1 {
    font-family: para;
    font-size: 120px;
    /* Fluid desktop size */
    text-transform: uppercase;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
}

.residential-h1-offset {
    font-family: para;
    font-size: 120px;
    /* Fluid desktop size */
    padding-left: 200px;
    /* Elegant offset for desktop */
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.1;
    background: linear-gradient(270deg, #ffbb00 0%, #ffd036 35%, #ffe570 68%, #fff199 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Responsive Adjustments --- */
@media(max-width: 1550px) {
    .residential-h1 {
        font-size: 80px;
    }

    .residential-h1-offset {
        font-size: 80px;
    }
}

@media(max-width: 1400px) {
    .residential-h1 {
        font-size: 80px;
    }

    .residential-h1-offset {
        font-size: 80px;
    }
}

@media (max-width: 1024px) {

    .residential-h1,
    .residential-h1-offset {
        font-size: 60px;
        /* Fixed px for tablets */
    }

    .residential-h1-offset {
        padding-left: 100px;
        /* Reduced offset */
    }
}

@media (max-width: 768px) {
    .residential-hero-section {
        height: 80vh;
        /* Slightly shorter on mobile to see content below */
    }

    .residential-heading-adj {
        gap: 10px;
        align-items: center;
        /* Center text for mobile elegance */
        text-align: center;
    }

    .residential-h1,
    .residential-h1-offset {
        font-size: 42px !important;
        /* Large but fitting for mobile */
        padding-left: 0;
        /* Remove offset to center properly */
        display: block;
        width: 100%;
    }

    .residential-h1-offset {
        /* Optional: adjust gradient for better legibility on small screens */
        background: linear-gradient(180deg, #ffd036 0%, #fff199 100%);
        -webkit-background-clip: text;
    }
}

@media (max-width: 480px) {

    .residential-h1,
    .residential-h1-offset {
        font-size: 34px !important;
        /* Final scale down for small phones */
    }
}

/* about-hero-section-end   */


/* residential page card section start */
.section-4 {
    /* margin-top: 200px; */
    margin-bottom: 100px;
}

.section-4__card-wrapper {
    perspective: 500px;
}

.section-4__card {
    color: #fff;
    padding: 0rem 0rem 6rem 1rem;
}

.section-4__card-content {
    position: relative;
    margin: 0 auto;
    display: flex;
    /* flex-direction: column; */
    gap: 100px;
    height: 100%;
}

.section-4__card-adj {
    display: flex;
    /* flex-direction: column; */
    width: 100%;
    padding: 0px 0px 0px 20px;
    gap: 50px;
}

.section-4__card-text {
    width: 50%;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    /* align-items: center; */
    padding: 50px 0px 0px 0px;
}

.section-4__card-ta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    /* width: 50%; */
}

.section-4__card-ta-adj {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-location {
    font-size: 25px;
    font-family: para;
    font-weight: 500;
    color: #333;
}

.section-4-card-pn {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
    /* width: 50%; */
}

.section-4__card-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.section-4__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50px 0px 0px 50px; */
}

.section-4__card--light {
    background: #fdfdfd;
}

.section-4__card--dark {
    background: #fdfdfd;
}

.section-4__card--darker {
    background: #fdfdfd;
}

.section-4__card--darkest {
    background: #fdfdfd;
}

.section-4__title {
    /* background: linear-gradient(180deg, #F0E6B2 0%, #C9A321 30%, #F9E27D 70%, #B88905 100%); */
    background: linear-gradient(135deg, #3a2a13 0%, #ad8a33 50%, #f5d97c 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 80px;
    font-family: para;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 400;
}

.section-4__description {
    font-size: 20px;
    font-family: para;
    font-weight: 500;
    color: #000;
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.section-4__number {
    font-size: 50px;
    /* opacity: 0.7; */
    font-family: para;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #000000;
}

@media (min-width: 900px) {
    .section-4__card {
        height: calc(100vh - 80px);
        transform-style: preserve-3d;
    }
}

.section-4__heading {
    /* padding-left: 100px; */
    font-size: 80px;
    font-family: head;
    text-align: center;
    overflow: hidden;
    margin: 40px 0px;
}

.section-4__link {
    padding: 10px 10px 10px 15px;
    border: 2px solid #4E3921;
    border-radius: 50px;
    color: #000000;
    font-family: para;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-4__link i {
    background-color: #3a2a13;
    padding: 12px 12px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.4s ease;
}

.section-4__link:hover {
    background: #4E3921;
    color: #fff;
}

.section-4__link:hover i {
    background-color: #fff;
    color: #4E3921;
    transform: rotate(-45deg);
}

@media(max-width: 1550px){
    .section-4__title{
        font-size: 50px;
    }

    .section-4__description{
        font-size: 17px;
    }
}

@media(max-width: 1440px){
    .section-4__title{
        font-size: 50px;
    }

    .section-4__description{
        font-size: 17px;
    }
}

@media(max-width: 768px) {
    .section-4 {
        display: none;
    }
}

/* residential page card section end */




/********************************************************************** footer-section-start **********************************************************************/
.main-footer-section {
    /* Pure white background */
    padding: 80px 5% 40px 5%;
    color: #1a1a1a;
    /* Soft black for luxury readability */
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.main-footer-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* --- SECTION 1: INVITATION ROW --- */
.main-footer-invitation-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 80px;
    border-bottom: 1px solid #eeeeee;
    /* Very subtle line */
}

.main-footer-small-label {
    font-family: 'para', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #5e5e5e;
    display: block;
    margin-bottom: 20px;
}

.main-footer-big-prompt {
    font-family: 'para', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.main-footer-cta-link {
    font-family: 'para', sans-serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    padding: 22px 45px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
}

.main-footer-cta-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.main-footer-arrow {
    margin-left: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.main-footer-cta-link:hover .main-footer-arrow {
    transform: translateX(5px);
}

/* --- SECTION 2: DETAIL GRID --- */
.main-footer-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 80px 0;
}

.main-footer-grid-label {
    font-family: 'para', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #5f5f5f;
    display: block;
    margin-bottom: 30px;
}

.main-footer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-footer-item-link,
.main-footer-data-text {
    font-family: 'para', sans-serif;
    font-size: 1rem;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    font-weight: 400;
}

.main-footer-data {
    text-decoration: none;
}

.main-footer-item-link:hover {
    color: #1a1a1a;
}

/* --- SECTION 3: GRAND STATEMENT (WATERMARK) --- */
.main-footer-grand-statement {
    padding-top: 20px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    bottom: 0%;
    right: 0;
    z-index: -10;
}

.main-footer-outline-logo {
    font-family: 'para', sans-serif;
    font-size: clamp(14rem, 15vw, 16rem);
    font-weight: 300;
    margin: 0;
    line-height: 0.8;
    text-align: center;
    color: #0000001e;
    letter-spacing: -0.05em;
}

/* --- SECTION 4: UTILITY BAR --- */
.main-footer-utility-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #f5f5f5;
}

.main-footer-copyright,
.main-footer-legal-link {
    font-family: 'para', sans-serif;
    font-size: 0.75rem;
    color: #aaa;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.main-footer-legal {
    display: flex;
    gap: 30px;
}

.main-footer-legal-link:hover {
    color: #1a1a1a;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .main-footer-invitation-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-bottom: 0px;
    }

    .main-footer-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .main-footer-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-footer-cta-link {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .main-footer-outline-logo {
        font-size: 4.5rem;
        color: #0000001e;
        font-weight: 300;
    }

    .main-footer-grand-statement {
        bottom: 6%;
        left: 0;
    }
}





.res-proj-1-section {
    height: 200vh;
    /* gives enough scroll space */
}

.res-proj-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.res-proj-1-heading {
    font-size: 130px;
    font-family: para;
    text-transform: uppercase;
    /* margin-bottom: 40px; */
    overflow: hidden;
    /* color: #314746; */
    color: #000;
    font-weight: 600;
}

.res-proj-1-img {
    width: 40wv;
    /* initial small size */
    height: 40vh;
    /* maintain ratio */
    border-radius: 24px;
    object-fit: cover;
}


.res-proj-1-overview {
    display: flex;
    gap: 50px;
    padding: 150px 150px;
}

.res-proj-1-overview p {
    font-size: 22px;
    font-family: para;
    font-weight: 600;
    line-height: 137%;
    text-align: justify;
}

.res-proj-1-mobile-section {
    display: none;
}

@media(max-width: 1550px){
    .res-proj-1-heading{
        font-size: 80px;
    }

    .res-proj-1-overview{
        padding: 80px 150px;
    }

    .res-proj-1-overview p{
        font-size: 18px;
    }
}

@media(max-width: 1400px){
    .res-proj-1-heading{
        font-size: 80px;
    }

    .res-proj-1-overview{
        padding: 80px 150px;
    }

    .res-proj-1-overview p{
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .res-proj-1-overview {
        flex-direction: column;
        /* Stack the layout */
        padding: 0px 25px 0px 25px;
        /* Remove the massive 150px desktop padding */
        gap: 20px;
    }

    .res-proj-1-overview p {
        font-size: 15px;
        text-align: left;
    }

    .res-proj-1-section {
        display: none;
    }

    .res-proj-1-mobile-section {
        display: block;
        align-items: center;
        justify-content: center;
        padding: 100px 0px 50px 0px;
    }

    .res-prog-1-mobile-heading {
        font-size: 40px;
        font-family: para;
        font-weight: 500;
        text-align: center;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .res-proj-1-mobile-img {
        object-fit: cover;
        height: 50vh;
        width: 100%;
    }
}

.res-proj-1-gallery-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.res-proj-1-gallery-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.res-proj-1-gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-proj-1-gallery-item img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.res-proj-1-gallery-item:first-child {
    visibility: visible;
    z-index: 2;
}

.res-proj-1-gallery-nav {
    position: absolute;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
}

.res-proj-1-gallery-prev {
    left: 1.1%;
}

.res-proj-1-gallery-next {
    right: 1.1%;
}

.res-proj-1-gallery-nav i {
    font-size: 2rem;
}

/* --- ADDON: MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .res-proj-1-gallery-container {
        height: 65vh;
        /* Proportional for vertical screens */
        margin: 20px 0;
    }

    .res-proj-1-gallery-item img {
        width: 94%;
        height: 90%;
        border-radius: 16px;
    }

    .res-proj-1-gallery-nav {
        width: 45px;
        height: 45px;
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        /* Modern Glassmorphism */
        top: auto;
        bottom: 35px;
        /* thumb-friendly position */
    }

    .res-proj-1-gallery-prev {
        left: 15px;
    }

    .res-proj-1-gallery-next {
        right: 15px;
    }

    .res-proj-1-gallery-nav i {
        font-size: 1.5rem;
    }
}

.res-mobile-prop-section {
    display: none;
    /* Hide by default on desktop */
    padding: 60px 20px;
    background-color: #ffffff;
    justify-content: center;
}

/* --- Mobile State: VISIBLE --- */
/* Targeting devices 900px and below */
@media (max-width: 900px) {
    .res-mobile-prop-section {
        display: flex;
        /* Show only on mobile/tablet */
    }

    .res-mobile-prop-container {
        width: 100%;
        max-width: 100%;
    }

    .res-mobile-prop-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Single column stack */
        gap: 60px;
        /* Space between cards */
    }

    .res-mobile-prop-card {
        display: flex;
        flex-direction: column;
        background: transparent;
    }

    .res-mobile-prop-image-wrapper {
        width: 100%;
        height: 400px;
        /* Adjusted for better mobile proportion */
        border-radius: 30px;
        overflow: hidden;
        margin-bottom: 25px;
    }

    .res-mobile-prop-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .res-mobile-prop-main-title {
        font-family: 'para', sans-serif;
        font-size: 40px;
        /* Scaled down for mobile screens */
        font-weight: 500;
        color: #000000;
        margin-bottom: 15px;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .res-mobile-prop-description-text {
        font-family: 'para', sans-serif;
        font-size: 18px;
        /* Easier to read on mobile */
        line-height: 1.5;
        color: #1a1a1a;
        font-weight: 400;
        margin-bottom: 30px;
    }

    .res-mobile-prop-btn {
        padding: 8px 8px 8px 20px;
        border: 2px solid #4E3921;
        border-radius: 50px;
        color: #000000;
        font-family: 'para', sans-serif;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 15px;
        width: fit-content;
    }

    .res-mobile-prop-btn i {
        background-color: #3a2a13;
        padding: 10px;
        border-radius: 50px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra small screens adjustment */
@media (max-width: 480px) {
    .res-mobile-prop-main-title {
        font-size: 32px;
    }

    .res-mobile-prop-image-wrapper {
        height: 300px;
    }
}