/* =========== Reset & helpers =========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========== Header =========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    /* header height */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    background: #1A0400;
    backdrop-filter: blur(6px);
}

.nav {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
    list-style: none;
}

.nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.9;
}

/* The center slot where the logo will land — it's empty but used to compute target coordinates */
.header-center-anchor {
    width: 160px;
    /* visual center width (optional) */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* the logo is separate and sits on top */
}

/* =========== HERO / SLIDER =========== */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    /* full viewport banner */
    overflow: hidden;
    display: block;
}

/* Slider container that holds slides row */
.slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    /* fade effect */
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* optional fade overlay between slide changes */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.slides.changing .slide::after {
    opacity: 1;
}

/* dots */
.dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
    display: flex;
    gap: 8px;
    z-index: 800;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.dot.active {
    background: white;
    transform: scale(1.25);
}

/* A subtle dark overlay so white dots are visible on bright images */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06));
    pointer-events: none;
    z-index: 200;
}

/* =========== LOGO (single element that moves & scales) =========== */
#logo {
    position: fixed;
    /* stays relative to viewport for smooth animation */
    left: 50%;
    top: 50%;
    /* centered vertically in hero initially */
    transform: translate(-50%, -50%) scale(1);
    /* scale will be animated in JS */
    transform-origin: center center;
    /* scaling from center */
    width: 550px;
    /* starting hero size */
    max-width: 90vw;
    /* responsive limit */
    height: auto;
    z-index: 1500;
    transition: none;
    /* we don't want a CSS transition — JS controls it */
    will-change: transform;
    /* GPU optimization */
    pointer-events: none;
    /* clicks go through to slider controls */
    user-select: none;
}

#logo2 {
    position: fixed;
    /* stays relative to viewport for smooth animation */
    left: 50%;
    top: 50%;
    /* centered vertically in hero initially */
    transform: translate(-50%, -50%) scale(1);
    /* scale will be animated in JS */
    transform-origin: center center;
    /* scaling from center */
    width: 315px;
    /* starting hero size */
    max-width: 90vw;
    /* responsive limit */
    height: auto;
    z-index: 1500;
    transition: none;
    /* we don't want a CSS transition — JS controls it */
    will-change: transform;
    /* GPU optimization */
    pointer-events: none;
    /* clicks go through to slider controls */
    user-select: none;
}


/* When logo gets to header we slightly reduce pointer-events friction (still none) */
.logo--snapped {
    pointer-events: none;
}

/* =========== Page content after hero =========== */
.content {
    min-height: 110vh;
    padding: 140px 20px 80px;
    /* padding top leaves space below fixed header */
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

/* =========== Responsive tweaks =========== */
@media (max-width: 900px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    /* minimal mobile header */
    .site-header {
        height: 64px;
    }

    #logo {
        width: 160px;
    }
}

@media (max-width: 520px) {
    #logo {
        width: 370px;
        z-index: 1201;
    }

    .dots {
        bottom: 20px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* dark overlay with 35% opacity */
    z-index: 400;
    /* above slides (default slides are ~z-index:auto) */
    pointer-events: none;
    /* don't block dots */
}

/* .hero-overlay2 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 400;
    pointer-events: none;
} */

/* HAMBURGER BUTTON */
.hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Animate hamburger → X */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
/* .mobile-menu {
    position: fixed;
    top: -14px;
    left: -100%;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    transition: left 0.4s ease;
    z-index: 9999;
}

.mobile-menu.open {
    left: -11%;
} */

.mobile-menu {
    position: fixed;
    top: -12px;
    left: -150%;
    width: 100vw;
    height: 100vh;
    display: flex;
    transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9999;
}

/* Open */
.mobile-menu.open {
    left: -11.3%;
}

/* LEFT PANEL */
.drawer-left {
    width: 30%;
    background: #1A0400;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative !important;
}

.mobile-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* RIGHT IMAGE PANEL */
.drawer-right {
    width: 70%;
    background-image: url('assets/menu-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* MENU LIST */
.drawer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.drawer-left a {
    font-size: 38px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    font-family: 'Arya', sans-serif;
}

/* DESKTOP ONLY: hide hamburger */
@media (min-width: 992px) {
    /* .hamburger {
        display: none;
    } */
}

/* MOBILE ONLY: hide right menu items (except hamburger) */
@media (max-width: 991px) {

    .nav-left li,
    .nav-right li {
        display: none;
    }
}

/* ---------------- SECTION WRAPPER ---------------- */
.about-section {
    /* position: relative; */
    display: flex;
    align-items: center;
    padding: 20px 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* ---------------- VERTICAL LEFT TEXT ---------------- */
.about-vertical {
    position: relative;
    left: 0;
    top: 11rem;
    width: 10%;
}

.about-vertical img {
    width: 70%;
}

/* ---------------- LEFT CONTENT COLUMN ---------------- */
.about-content {
    width: 50%;
    box-sizing: border-box;
}

.about-title {
    font-family: 'Arya', sans-serif;
    font-weight: 700;
    line-height: 1;
    font-size: 95px;
    margin-bottom: 12px;
    color: #C9C9C9;
}

.about-subtitle {
    font-family: 'Arya', sans-serif;
    font-weight: 400;
    font-size: 46px;
    color: #723D00;
    margin-bottom: 0px;
}

.about-text {
    font-family: 'Pragati Narrow', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 22px;
    max-width: 520px;
}

/* ---------------- BUTTON ---------------- */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 16px;
    border: 1px solid #723D00;
    border-radius: 40px;
    font-size: 20px;
    background: transparent;
    color: #723D00;
    cursor: pointer;
    font-family: 'Pragati Narrow', sans-serif;
    transition: 0.25s;
}

.about-btn:hover {
    background: #744c2a;
    color: #fff;
}

/* ---------------- RIGHT IMAGE COLUMN ---------------- */
.about-image-wrapper {
    width: 40%;
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}


/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 80px 20px;
    }

    .about-content {
        width: 100%;
        padding-left: 20px;
        text-align: center;
    }

    .about-image-wrapper {
        width: 100%;
        margin-top: 40px;
    }

    .about-vertical {
        font-size: 100px;
        bottom: -20px;
    }
}

/* Gallery */
.gallery-section {
    width: 100%;
    position: relative;
    padding: 0px 0 14rem 0;
    overflow-x: hidden;
    height: auto;
}

/* HEADING */
.gallery-heading {
    font-family: 'Arya', sans-serif;
    font-weight: 700;
    font-size: 80px;
    color: #c7c7c7;
    text-align: left;
    width: 88vw;
    margin: 0 auto 20px auto;
}

/* VERTICAL RIGHT TEXT */
.gallery-vertical {
    position: absolute;
    right: -5px;
    top: 22rem;
    width: 10%;
}

.gallery-vertical img {
    width: 95%;
}

/* CAROUSEL CONTAINER */
.gallery-carousel-wrapper {
    width: 88vw;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

/* CAROUSEL TRACK */
.gallery-carousel {
    display: flex;
    gap: 40px;
    transition: transform 0.4s ease;
}

/* EACH SLIDE */
.gallery-slide {
    min-width: calc((88vw - 80px) / 3);
    /* perfect 3-card layout */
    height: auto;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ARROWS */
.gallery-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #D9D9D9;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-arrow:hover {
    background: #e0e0e0;
}

/* INITIAL STATE */
.gallery-section {
    opacity: 1;
    /* transform: translateY(180px); */
    transition: transform 0.9s ease-out, opacity 0.9s ease-out;
    will-change: transform, opacity;
}

/* ACTIVE STATE */
.gallery-section.animate {
    opacity: 1;
    /* transform: translateY(0); */
}

/* MOBILE */
@media (max-width: 900px) {
    .gallery-slide {
        min-width: 80vw;
    }
}

.stats-banner {
    width: 100%;
    height: 100vh;
    /* or adjust to your image height */
    background-image: url('assets/30-years.png');
    /* replace */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* BADGE CONTAINER */
.stats-badge {
    position: absolute;
    bottom: 130px;
    left: 160px;
    padding: 35px 55px;
    text-align: center;
}

/* NUMBER */
.stats-number {
    font-size: 68px;
    font-weight: 400;
    line-height: 0.9;
    font-family: 'Arya', sans-serif;
}

/* LABEL PILL */
.stats-label {
    margin-top: 12px;
    background: #F6F0DB;
    padding: 0px 30px;
    border-radius: 40px;
    font-size: 32px;
    line-height: 1.3;
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 400;
    color: black;
}

/* INITIAL STATE */
.stats-banner {
    opacity: 0;
    transform: translateY(160px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    will-change: transform, opacity;
}

/* ACTIVE STATE */
.stats-banner.animate {
    opacity: 1;
    transform: translateY(0);
}


.domus-footer {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #1A0400;
    color: #ffffff;
    padding: 80px 60px;
    background-image: url(assets/footer-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    overflow-x: hidden;
}

.domus-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.footer-left {
    max-width: 40%;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 80%;
    /* adjust based on your real logo */
}

.footer-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 18px;
    margin-top: 8px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 20px;
    padding-left: 40px;
}

.footer-social img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    /* make icons white */
}

/* RIGHT SIDE (Explore + Contact) */
.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right li {
    margin-bottom: 14px;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 0.7;
}

/* CONTACT BLOCK */
.get-in-touch p {
    margin: 10px 0;
    font-size: 18px;
}

.get-in-touch .icon {
    margin-right: 10px;
}

/* Parent wrapper */
.contact-section {
    position: relative;
    width: 100%;
    padding-bottom: 80px;
}

/* Background placeholder */
.contact-bg {
    width: 100%;
    height: 520px;
    position: absolute;
    background: url('assets/cont.png') center/cover no-repeat;
}

/* Heading */
.contact-heading {
    text-align: center;
    margin-top: 70px;
    color: white;
    position: relative;
    top: 40px;
    left: 0;
}

.contact-heading h1 {
    font-size: 85px;
    font-weight: 400;
    font-family: "Arya", sans-serif;
    line-height: 1;
}

.contact-heading p {
    font-size: 24px;
    margin-top: 10px;
    font-family: "Pragati Narrow", sans-serif;
    line-height: 1.4;
}

/* Main container */
.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 0;
    background: white;
    border-radius: 30px;
    padding: 50px;
    display: flex;
    gap: 85px;
    position: relative;
}

.contact-form {
    width: 50%;
}


/* Left form */
.contact-form h2 {
    margin-bottom: 10px;
    color: #004D40;
    font-size: 37px;
    font-weight: 700;
    font-family: 'Pragati Narrow', sans-serif;
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group.full {
    width: 100%;
}

label {
    font-size: 24px;
    margin-bottom: 8px;
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 500;
    line-height: 1;
}

label span {
    color: red;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: #F9F9F9;
    border: none;
    font-size: 16px;
}

textarea {
    height: 90px;
    resize: none;
}

.send-btn {
    margin-top: 25px;
    padding: 0px 20px;
    background: #004D40;
    color: #fff;
    font-size: 24px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    float: right;
    font-family: 'Pragati Narrow', sans-serif;
}

.send-btn:hover {
    opacity: 0.9;
}

/* Right info card */
.contact-info {
    background: #004D40;
    padding: 50px 30px;
    border-radius: 30px;
    width: 45%;
    height: max-content;
    color: white;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: 'Pragati Narrow', sans-serif;
}

.info-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 18px 20px;
    border-radius: 22px;
    margin-bottom: 20px;
    gap: 15px;
    font-family: 'Pragati Narrow', sans-serif;
    line-height: 0.9;
}

.info-box .icon {
    font-size: 26px;
}

.info-box strong {
    font-size: 20px;
    color: white;
}

.info-box p {
    margin-top: 5px;
    font-size: 20px;
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: white;
}

/* Responsive */
@media(max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
    }
}

.who-we-are-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    color: #ffffff;
    background-image: url("assets/about-conf.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.who-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* CONTENT */
.who-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.who-breadcrumb {
    font-size: 24px;
    color: white;
    opacity: 0.9;
    font-family: 'Pragati Narrow', sans-serif;
    margin-bottom: 0;
}

.who-title {
    font-size: 66px;
    margin-bottom: 0px;
    font-family: 'Arya', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.who-text {
    font-size: 24px;
    line-height: 1.7;
    opacity: 0.95;
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 400;
    color: white;
}

.who-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(255, 255, 255, 1) 100%);
    z-index: 3;
}

.vision-mission-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
    padding: 0px 8vw;
    background: #ffffff;
}

/* LEFT SIDE */
.vm-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    flex: 1;
    width: 70%;
}

.vm-title {
    font-size: 78px;
    font-weight: 700;
    font-family: 'Arya', sans-serif;
    color: #C9C9C9;
    margin-bottom: 0px;
    margin-top: 22%;
}

.vm-text {
    font-size: 26px;
    line-height: 1.5;
    color: #000;
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 400;
    padding-left: 6.5rem;
}

/* RIGHT IMAGE */
.vm-image {
    flex: 1;
    display: flex;
    width: 30%;
}

.vm-image img {
    width: 80%;
    object-fit: contain;
}

.values-section {
    padding: 120px 5%;
    background: #f2f2f2;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.values-heading {
    font-family: 'Arya', sans-serif;
    font-size: 96px;
    font-weight: 400;
    color: #cfcfcf;
    margin-bottom: 60px;
    text-align: center;
}

/* GRID */
.values-grid {
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

/* LEFT SIDE */
.values-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
    width: 35%;
    position: relative;
    z-index: 2;
    left: 4%;
}

/* VALUE BUTTON */
.value-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #1A0400;
    padding: 10px 28px;
    border-radius: 22px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

.value-item span {
    font-family: 'Arya', sans-serif;
    font-size: 36px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 30%;
    overflow: hidden;
    flex-shrink: 0;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* RIGHT IMAGE */
.values-right {
    border-radius: 28px;
    overflow: hidden;
    width: 65%;
}

.values-right img {
    width: 60%;
    height: auto;
    display: block;
    border-radius: 28px;
    aspect-ratio: 4 / 4;
}

/* SECTION */
.legacy-section {
    position: relative;
    min-height: 40vh;
    background-image: url("assets/building.jpg");
    /* replace */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* DARK OVERLAY */
.legacy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT */
.legacy-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

/* HEADING */
.legacy-heading {
    font-family: 'Arya', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.legacy-text {
    font-size: 24px;
    line-height: 1.8;
    color: #ffffff;
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 600;
}

.projects {
    background: #6ab0e1;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    color: white;
}

.carousel {
    position: relative;
    height: 600px;
    margin-top: 60px;
}

.track {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.4;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide img {
    width: 100%;
    border-radius: 12px;
}

.slide.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
}

.slide.prev {
    transform: translate(-140%, -50%) scale(0.75);
    z-index: 2;
}

.slide.next {
    transform: translate(40%, -50%) scale(0.75);
    z-index: 2;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .slide {
        width: 240px;
    }
}

.overlap-carousel-section {
    width: 100%;
    padding: 80px 0;
    background: #fff;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: visible;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-card {
    position: absolute;
    width: 360px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.5;
    z-index: 1;
}

.carousel-card img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

/* LEFT */
.carousel-card.prev {
    transform: translateX(-260px) scale(0.8);
}

/* CENTER */
.carousel-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
}

/* RIGHT */
.carousel-card.next {
    transform: translateX(260px) scale(0.8);
}

/* arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    z-index: 5;
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Images */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-img {
    display: none;
}

/* Content overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 70px;
    color: #f3efe6;
}

.hero-eyebrow {
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 600;
    display: block;
    font-size: 15px;
    letter-spacing: 0;
    margin-top: 50px;
    margin-bottom: 5px;
}

.hero-title {
    line-height: 0.8;
    font-weight: 500;
    margin: 0;
    font-family: 'Arya', sans-serif;
    font-size: 65px;
}

.sub-title {
    font-family: 'Pragati Narrow', sans-serif;
    font-size: 22px;
    line-height: 1.4;
    margin-top: 20px;
}

/* Optional subtle readability boost (matches screenshot vibe) */
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-banner {
        height: 85vh;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-title {
        font-size: 44px;
    }

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
}

.hero-banner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 60%,
            #ffffff 100%);
    z-index: 3;
    pointer-events: none;
}

.about-section2 {
    position: relative;
    background: #ffffff;
    /* padding: 180px 0 140px; */
    overflow: visible;
    z-index: 4;
    height: 60vh;
}

/* GRID */
.about-inner2 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 120px;
    /* align-items: center; */
    position: relative;
    z-index: 2;
}

/* LEFT BUILDING IMAGE */
.about-visual2 {
    position: relative;
    margin-top: -270px;
    bottom: auto;
    /* creates overlap into section 1 */
    z-index: 3;
}

.about-visual2 img {
    width: 100%;
    display: block;

    /* fade bottom into white */
    -webkit-mask-image: linear-gradient(to bottom,
            black 72%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            black 72%,
            transparent 100%);
}

/* VERTICAL ABOUT IMAGE */
.about-vertical2 {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    pointer-events: none;
}

.about-vertical2 img {
    height: 420px;
    width: auto;
}

/* RIGHT CONTENT */
.about-content2 h2 {
    font-family: 'Arya', sans-serif;
    font-weight: 700;
    line-height: 1;
    font-size: 60px;
    margin-bottom: 12px;
    color: #C9C9C9;
    margin-top: 60px;

}

.about-content2 p {
    font-family: 'Pragati Narrow', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 22px;
    max-width: 520px;
}

/* CTA */
.about-btn2 {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid #a45a1b;
    color: #a45a1b;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
}

.about-btn2:hover {
    background: #a45a1b;
    color: #fff;
}

@media (max-width: 900px) {
    .about-inner2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual2 {
        margin-top: -140px;
    }

    .about-vertical2 {
        display: none;
    }

    .about-content2 h2 {
        font-size: 36px;
    }
}

.property-section {
    background: #fff;
    position: relative;
}

.property-inner {
    max-width: 100vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* LEFT */
.property-left {
    padding-left: 60px;
}

.property-title {
    font-size: 68px;
    color: #C9C9C9;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Arya', sans-serif;
    font-weight: 700;
}

.property-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 22px;
}

.property-list span {
    background: #0b4d3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 28px;
    font-size: 30px;
    min-width: 220px;
    text-align: center;
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 500;
    line-height: 1;
}

.property-list strong {
    color: #898686;
    font-weight: 700;
    width: 250px;
    font-family: 'Arya', sans-serif;
    font-size: 30px;
    line-height: 1;
}

/* RIGHT — THIS IS THE IMPORTANT PART */
.property-right {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    justify-content: flex-end;
}

/* Tower image */
.property-tower {
    width: 420px;
    display: block;

    /* soft fade bottom like design */
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

/* Vertical text image */
.property-vertical {
    height: 570px;
}

.amenities-section {
    background: #fff;
    overflow: hidden;
    margin-bottom: 40px;
}

.amenities-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 1.2fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.amenities-decor {
    display: flex;
    justify-content: center;
}

.amenities-decor img {
    height: 100%;
    width: 100%;
    opacity: 1;
}

.amenities-center {
    text-align: center;
}

.amenities-heading {
    font-size: 66px;
    color: #cfcfcf;
    margin-bottom: 10rem;
    text-align: center;
    font-family: 'Arya', sans-serif;
    font-weight: 700;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 0.4fr);
    gap: 40px 0px;
    position: relative;
    z-index: 5;
    justify-content: flex-start;
}

body>section.amenities-section>div>div.amenities-center>div>div:nth-child(1)>img {
    width: 56%;
}

.amenity-card img {
    width: 45%;
    display: block;
    margin: 0 auto;
}

.amenity-card p {
    margin-top: 7px;
    font-size: 25px;
    font-family: 'Arya', sans-serif;
    line-height: 1
}

.amenities-right {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
}

.amenities-right img {
    width: 100%;
    /* display: block; */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    /* position: absolute; */

}

/* Initial state */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s ease-out forwards;
    animation-delay: 0.2s;
}

/* Optional stagger */
.hero-eyebrow {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.35s;
}

.sub-title {
    animation-delay: 0.5s;
}

/* Animation */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to children (staggered fade) */
.hero-eyebrow,
.hero-title,
.sub-title {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s ease-out forwards;
}

/* INITIAL STATE */
.about-vertical2,
.about-visual2 {
    opacity: 0;
    transform: translateX(-60px);
    animation: fadeSlideLeft 0.9s ease-out forwards;
}

.about-content2 {
    opacity: 0;
    transform: translateX(60px);
    animation: fadeSlideRight 0.9s ease-out forwards;
}

/* DELAYS */
.about-vertical2 {
    animation-delay: 1s;
}

.about-visual2 {
    animation-delay: 1s;
}

.about-content2 {
    animation-delay: 1s;
}

/* KEYFRAMES */
@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ------------------------------
   INITIAL STATE
--------------------------------*/

/* LEFT SIDE */
.property-left {
    opacity: 0;
    transform: translateX(-60px);
    animation: propertyFadeLeft 0.9s ease-out forwards;
    animation-delay: 2s;
}

/* RIGHT SIDE */
.property-right {
    opacity: 0;
    transform: translateX(60px);
    animation: propertyFadeRight 0.9s ease-out forwards;
    animation-delay: 2s;
}

/* ------------------------------
   KEYFRAMES
--------------------------------*/

@keyframes propertyFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes propertyFadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* INITIAL STATE */
.amenities-center {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeSlideUp 0.9s ease-out forwards;
    animation-delay: 0.4s;
}

/* OPTIONAL: stagger each card */
.amenity-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease-out forwards;
}

.amenity-card:nth-child(1) {
    animation-delay: 3s;
}

.amenity-card:nth-child(2) {
    animation-delay: 3.5s;
}

.amenity-card:nth-child(3) {
    animation-delay: 3.7s;
}

.amenity-card:nth-child(4) {
    animation-delay: 3.9s;
}

.amenity-card:nth-child(5) {
    animation-delay: 3.9s;
}

.amenity-card:nth-child(6) {
    animation-delay: 4s;
}

.amenity-card:nth-child(7) {
    animation-delay: 4.1s;
}

.amenity-card:nth-child(8) {
    animation-delay: 4.1s;
}

.amenity-card:nth-child(9) {
    animation-delay: 4.2s;
}

.amenity-card:nth-child(10) {
    animation-delay: 4.3s;
}

.amenity-card:nth-child(11) {
    animation-delay: 4.4s;
}

.amenity-card:nth-child(12) {
    animation-delay: 4.5s;
}

/* KEYFRAMES */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-carousel {
    background: url(assets/projectsbg.png) top/cover no-repeat;
    padding: 160px 0;
    height: auto;
}

.project-carousel__slide {
    opacity: 0.5;
    transition: all 0.3s ease, transform 0.3s ease;
    transform: scale(1);
    padding: 40px 0;
}

.project-carousel__slide.is-active {
    opacity: 1;
    transform: scale(1.5);
    transition: all 0.3s ease;
}


.project-carousel__container {
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.project-carousel__viewport {
    overflow: visible;
    height: auto;
}

.project-carousel__track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    margin-top: 20px;
}

.project-carousel__slide {
    flex: 0 0 calc((100% - 48px) / 2.95);
}

.project-carousel__slide img {
    width: 100%;
    height: 86%;
    object-fit: cover;
    display: block;
}

/* Buttons */
.project-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.project-carousel__btn--prev {
    left: -22px;
}

.project-carousel__btn--next {
    right: 12px;
    top: 70%;
}

/* Mobile */
@media (max-width: 768px) {
    .project-carousel__viewport {
        height: 260px;
    }

    .project-carousel__slide {
        flex: 0 0 66.666%;
    }

    .project-carousel__btn--prev {
        left: 10px;
    }

    .project-carousel__btn--next {
        right: 10px;
    }
}

.project-carousel__header {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: clamp(40px, 5vw, 60px) 0;
}

.project-carousel__heading {
    font-family: 'Arya', sans-serif;
    font-size: clamp(40px, 5vw, 48px);
    color: white;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid white;
}

.project-carousel__title {
    font-family: 'Arya', sans-serif;
    font-size: clamp(30px, 5vw, 32px);
    color: white;
    /* margin-bottom: 12px; */
    padding-top: 0;
}

.project-carousel__cta {
    font-family: 'Pragati Narrow', sans-serif;
    font-size: clamp(18px, 3vw, 18px);
    color: white;
    cursor: pointer;
    border: 1px solid white;
    padding: 0px 35px;
    border-radius: 24px;
    margin-top: 5px;
    margin-bottom: 40px;
}

.stats-banner-mobile {
    display: none;
}

.mobile-about {
    display: none;
}

.mobile-amenities {
    display: none;
}

.mobile-carousel {
    display: none;
}


/* Overlay */
.brochure-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.brochure-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Main Rectangle */
.brochure-container {
    width: 900px;
    max-width: 95%;
    height: 520px;
    background: #f5f5f5;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    animation: popupFade 0.3s ease;
}

/* LEFT SIDE */
.brochure-left {
    width: 60%;
    padding: 50px 0px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brochure-left h2 {
    font-size: 26px;
    line-height: 1;
    font-family: 'Arya', sans-serif;
    font-weight: 700;
    color: #898686;
    margin-bottom: 10px;
}

.sub-text {
    font-family: 'Pragati Narrow', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 16px;
    color: #898686;
    margin-bottom: 35px;
    display: inline-block;
    padding-bottom: 6px;
}

/* Form */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.form-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    padding: 8px 0;
    font-size: 15px;
    outline: none;
    border-radius: 0;
}

.download-btn {
    margin-top: 25px;
    background: #723D00;
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.download-btn:hover {
    background: #6f3a00;
}

/* RIGHT IMAGE */
.brochure-right {
    width: 40%;
    position: relative;
}

.brochure-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Close */
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.desk-mobi {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .brochure-container {
        flex-direction: column;
        height: auto;
    }

    .brochure-left,
    .brochure-right {
        width: 100%;
    }

    .brochure-left {
        padding: 30px;
    }

    .brochure-right {
        height: 220px;
    }
}

.mobile-img {
    display: none;
}

/* MEDIA QUERIES FOR MOBILE VERSION */

@media screen and (max-width: 600px) {

    body {
        overflow-x: hidden;
    }

    .mobile-img {
        display: block;
    }

    /* HOMEPAGE CSS */
    .about-vertical {
        display: none;
    }

    .desk-vid {
        display: none;
    }

    .desk-mobi {
        display: block;
    }

    .about-section {
        height: auto;
    }

    .about-content {
        width: 100%;
        padding-left: 20px;
        text-align: center;
    }

    .about-title {
        font-size: 45px;
        margin-bottom: 0;
    }

    .about-subtitle {
        font-family: 'Arya', sans-serif;
        font-weight: 400;
        font-size: 26px;
        line-height: 1;
        color: #723D00;
        margin-bottom: 30px;
    }

    .gallery-vertical {
        display: none;
    }

    .stats-banner {
        display: none;
    }

    .stats-banner-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .stats-bg-mobile {
        width: 100%;
    }

    .stats-bg-mobile-30 {
        width: 300px;
    }

    .stats-badge {
        position: static;
    }

    .gallery-heading {
        text-align: center;
    }

    .gallery-carousel-wrapper {
        width: 78vw;
    }

    /* ABOUT US PAGE */
    .who-title {
        font-size: 40px;
    }

    .who-breadcrumb {
        display: none;
    }

    .who-text {
        font-size: 18px;
        line-height: 1.5;
    }

    .vm-content {
        width: 48%;
        gap: 1rem;
        padding-left: 20px;
    }

    .vm-image {
        width: 60%;
    }

    .vm-title {
        font-size: 38px;
        text-align: center;
    }

    .vm-text {
        font-size: 18px;
        padding-left: 0;
        line-height: 1.4;
        text-align: center;
    }

    .vm-image {
        width: 52%;
    }

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

    .vision-mission-section {
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    .values-main-heading {
        font-size: 30px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .value-item {
        display: flex;
        flex-direction: row;
        width: 90%;
    }

    .legacy-section {
        display: none;
    }

    /* CONTACT US */
    .contact-info {
        display: none;
    }

    .contact-heading h1 {
        font-size: 45px;
    }

    .contact-heading p {
        font-size: 22px;
    }

    .contact-heading {
        margin-top: 50px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-container {
        padding: 28px;
    }

    .contact-form h2 {
        font-size: 30px;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    label {
        font-size: 18px;
    }

    .send-btn {
        width: 100%;
    }

    .about-visual2 {
        margin-top: 0;
        width: 40%;
    }

    .about-visual2 img {
        width: 100%;
    }

    .desktop-about {
        display: none;
    }

    .mobile-about {
        display: flex;
    }

    .about-inner2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        max-width: 100vw;
    }

    .about-content2 {
        width: 60%;
    }

    .about-section2 {
        height: auto;
    }

    .about-content2 h2 {
        font-size: 20px;
    }

    .about-content2 p {
        text-align: left;
        font-size: 16px;
        margin-bottom: 10px;
        padding-right: 10px;
    }

    .about-btn {
        font-size: 14px;
    }

    .property-inner {
        grid-template-columns: 1fr;
    }

    .property-title {
        font-size: 30px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .property-left {
        padding-left: 20px;
    }

    .property-vertical {
        display: none;
    }

    .property-right {
        justify-content: center;
    }

    .property-list span {
        background: #0b4d3c;
        color: #fff;
        padding: 5px;
        border-radius: 28px;
        font-size: 16px;
        min-width: 150px;
        text-align: center;
        font-family: 'Pragati Narrow', sans-serif;
        font-weight: 500;
        line-height: 1;
    }

    .property-list strong {
        font-size: 18px;
        width: 210px;
    }

    .property-tower {
        width: 85%;
    }

    .amenities-decor {
        display: none;
    }

    .desktop-amenities {
        display: none;
    }

    .mobile-amenities {
        display: block;
    }

    .amenities-heading {
        font-size: 30px;
    }

    .amenities-right {
        position: static;
        right: 0;
        height: auto;
        width: 100%;
    }

    .amenities-inner {
        margin: 0 auto;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* gap: 80px; */
    }

    body>section.amenities-section>div>div.amenities-center>div>div:nth-child(1)>img {
        width: 40%;
    }

    .amenity-card img {
        width: 40%;
    }

    .amenity-card p {
        font-size: 18px;
    }

    .amenities-grid {
        justify-content: center;
    }

    .amenities-right {
        display: none;
    }

    .gallery-heading {
        font-size: 30px;
        margin-top: 15px;

    }

    .gallery-section {
        margin-bottom: 0;
    }

    .site-header {
        height: 70px;
    }

    /* PROJECT CAROUSEL */
    .project-carousel {
        height: 130vh;
    }

    .desktop-proj-carousel {
        display: none;
    }

    .mobile-carousel {
        display: block;
        padding: 50px 0;
        background: url(assets/projectsbg.png) top/cover no-repeat;
    }

    .mobile-carousel__wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .mobile-carousel__viewport {
        overflow: hidden;
        width: 100%;
    }

    .mobile-carousel__track {
        display: flex;
        transition: transform 0.4s ease;
    }

    .mobile-carousel__item {
        width: 100%;
        flex-shrink: 0;
    }

    .mobile-carousel__item img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* HEADER */

    .mobile-carousel__header {
        text-align: center;
        padding: 40px 20px;
    }

    .mobile-carousel__heading {
        font-family: 'Arya', sans-serif;
        font-size: 40px;
        color: white;
        border-bottom: 2px solid white;
        display: inline-block;
        padding-bottom: 5px;
    }

    .mobile-carousel__title {
        font-family: 'Arya', sans-serif;
        font-size: 28px;
        color: white;
        margin-top: 15px;
    }

    .mobile-carousel__cta {
        font-family: 'Pragati Narrow', sans-serif;
        font-size: 18px;
        color: white;
        border: 1px solid white;
        padding: 4px 30px;
        border-radius: 24px;
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
    }

    /* ARROWS */

    .mobile-carousel__arrow {
        position: absolute;
        top: 55%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        font-size: 18px;
        cursor: pointer;
        z-index: 5;
    }

    .mobile-carousel__arrow--prev {
        left: 10px;
    }

    .mobile-carousel__arrow--next {
        right: 10px;
    }

    .mobile-carousel__arrow:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .nav-left {
        display: flex;
    }

    .mobile-menu.open {
        left: 0%;
    }

    .footer-inner {
        flex-direction: column-reverse;
        justify-content: center;
        height: 100%;
        align-items: center;
    }

    .footer-right {
        flex-direction: column;
    }

    .get-in-touch {
        display: none;
    }

    .domus-footer {
        padding: 70px 20px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-logo-wrap {
        justify-content: center;
    }

    .footer-social {
        padding-left: 0;
        justify-content: center;
    }

    .explore {
        text-align: center;
    }

    /* MENU LAYOUT */
    .drawer-left {
        width: 45%;
    }

    .drawer-right {
        width: 55%;
    }

    .drawer-left {
        padding: 80px 20px;
    }

    .drawer-left a {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .project-carousel__track {
        gap: 0;
        /* important */
    }

    .project-carousel__slide {
        flex: 0 0 100%;
        padding: 0;
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .project-carousel__slide img {
        height: auto;
    }

}

section {
    overflow-x: hidden;
}

@media (max-width: 768px) {

    .values-grid {
        display: flex;
        flex-direction: column;
    }

    .values-heading {
        font-size: 30px;
    }

    .values-left {
        order: 1;
    }

    .values-right {
        order: 2;
        margin-top: 40px;
        width: 100%;
    }

    .values-right img {
        height: 400px;
    }

    .value-item span {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {

    .values-heading {
        font-size: 40px;
    }

    .values-grid {
        grid-template-columns: 420px 1fr;
        gap: 40px;
    }

    .values-right img {
        width: 90%;
        height: auto;
    }

    .value-item span {
        font-size: 28px;
        width: 90%;
    }

    .values-left {
        left: 0;
        width: 100%;
        align-items: flex-start;
    }
}

.ugc-section {
    padding: 80px 20px;
}

.ugc-heading {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Arya', sans-serif;
    font-size: 40px;
}

.ugc-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.ugc-carousel::-webkit-scrollbar {
    display: none;
}

.ugc-item {
    flex: 0 0 33.33%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.ugc-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media(max-width:768px) {
    .ugc-item {
        flex: 0 0 100%;
    }
}


/* MODAL */

.ugc-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ugc-modal.active {
    display: flex;
}

.ugc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.ugc-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    z-index: 2;
}

.ugc-modal-content video {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ugc-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.ugc-prev,
.ugc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.ugc-prev {
    left: -60px;
}

.ugc-next {
    right: -60px;
}

@media(max-width:768px) {
    .ugc-prev {
        left: 10px;
    }

    .ugc-next {
        right: 10px;
    }
}