/* --- HERO SECTION (V2 VIDEO) --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* Center Horizontally */
    align-items: center;
    /* Center Vertically */
    text-align: center;
    /* Fallback */
}




/* Background Video */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    width: 177.77777778vh;
    /* 16:9 Aspect Ratio */
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darken video for text readability */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-headline-large {
    font-size: clamp(6rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-separator {
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin-bottom: 2rem;
}

.hero-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 1000px;
    margin-bottom: 0;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.hero-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    /* Animated in JS */
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-accent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(20px);
        opacity: 0;
    }
}


/* HERO INNER SECTION */


.hero-section.inner {
    height: 80vh;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: left;
}

.hero-section.inner .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1400px;
    padding: 0 2rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Intro Section */
.intro-section-inner {
    padding: var(--spacing-3xl);
    background-color: #ffe6e6;
    background: #fff;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
}

.intro-section-inner .intro-container {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.intro-section-inner .intro-headline,
.intro-section-inner .intro-text {
    pointer-events: auto;
    max-width: 100%;
    color: var(--color-primary);
}


.intro-content-left {
    width: 50%;
    z-index: 2;
    /* Ensure text is above globe if they overlap */
}

#globe-container {
    width: 50%;
    height: 60vh;
    /* Adjust as needed */
    position: relative;
    /* overflow: hidden; */
    /* removed overflow hidden to allow particles to float freely if needed */
}

@media (max-width: 900px) {
    .intro-container {
        flex-direction: column;
    }

    .intro-content-left,
    #globe-container {
        width: 100%;
    }

    #globe-container {
        height: 40vh;
    }
}

.intro-headline {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    /* Bold Red */
    margin-bottom: var(--spacing-md);
}

.intro-text {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.25vw, 1.75rem);
    line-height: 1.6;
    font-weight: 200;
    color: #fff;
    /* Deep Black */
}



/* --- GROUP OF COMPANIES (Cards Style V2) --- */
/* --- GROUP OF COMPANIES (Stacked Cards Animation) --- */
.companies-group-section {
    position: relative;
    width: 100%;
    padding: 10rem 0px;
}

#companies-wrapper {
    position: relative;
    width: 100%;
}

.companies-intro {
    position: relative;
    /* Changed from absolute */
    width: 100%;
    height: 60vh;
    /* Reduced height */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.companies-group-section .heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto 4rem;
    gap: 2rem;
}

.companies-group-section .heading-left {
    flex: 1;
    text-align: left;
}

.companies-group-section .heading-right {
    flex-shrink: 0;
}

.companies-heading {
    font-size: 6rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 1rem;
}

.companies-group-section .heading-left h3 {
    text-align: left;
    font-weight: 300;
    font-size: 1.5rem;
    color: #666;
}

/* COMPANIES INNER */

.companies-group-section.companies-inner {
    padding: 7rem 0px;
}

.companies-group-section.companies-inner .heading-left {
    justify-content: center;
    text-align: center;
}

.companies-group-section.companies-inner .heading-left .companies-heading {
    text-align: center;
}

.companies-group-section.companies-inner .heading-left h3 {
    text-align: center;
}

.company-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.company-grid-container .card-content {
    height: auto;
}

.company-grid-container .card-badge {
    position: static;
    justify-self: start;
    grid-column: 1;
}



/* PROJECTS GRID */
/* PROJECTS GRID */
.projects-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    /* Taller portrait for projects */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.project-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-image {
    transform: scale(1.05);
}

.project-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    font-family: var(--font-serif);
    margin: 0;
}

.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.project-card-category {
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.project-card-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-card-location::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

/* --- NEW STACKING CARDS SECTION (CodePen Style) --- */
.service-panel {
    position: relative;
    width: 100%;
}

.service-animated-panel {
    width: 100%;
    max-width: 80%;
    margin: 0 auto 50px;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-animated-panel .card-inner {
    width: 90%;
    height: 100%;
    height: 80vh;
    border-radius: 30px;
    overflow: hidden;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1.2rem 4rem;
    background-color: var(--color-accent);
    border: 1px solid var(--color-text-light);
    border-radius: 50px;
    color: var(--color-text-light);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
}

.card-inner {
    position: relative;
    width: 100%;
    max-width: none;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--color-primary);
}

.card-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
    width: 85%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 5px;
}

.card-title {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: clamp(2rem, 4vw, 5rem);
    /* Smaller max size for longer titles */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.card-icon {
    position: absolute;
    top: 0;
    right: 0;
    /* Move it inside a bit */
    margin: 20px;
}

.card-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.card-stat {
    grid-column: 1 / -1;
    /* Give full width if needed */
    grid-row: 2;
    /* align-self: end; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 600;
}

.card-desc {
    grid-column: 1 / 2;
    grid-row: 3;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.9);
}

.card-badge {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    background: var(--color-accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .card-title {
        font-size: 2.5rem;
    }

    .card-icon {
        display: none;
    }

    .card-content {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

/* --- LOCATION MAP SECTION --- */
.location-map-section {
    padding: 5rem 0;
    background-color: #e5e5e5;
    color: #111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.center-text {
    text-align: center;
    margin-bottom: 4rem;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--color-accent);
}

.section-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--color-primary);
}

/* LOCATION MAP */

.map-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.map-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* opacity: 0.5;
    filter: invert(1) opacity(0.2); */
}

/* Map Markers */
.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    /* e.g. Red #ed1c24 */
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--color-accent);
}

.marker-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: ripplePulse 2s infinite ease-out;
}

/* Add a second ripple delayed for richer effect */
.marker-ripple::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
    animation: ripplePulse 2s infinite ease-out 0.6s;
}

@keyframes ripplePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Tooltip on Hover */
.marker-tooltip {
    position: absolute;
    bottom: 100%;
    /* Position above the marker */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(255, 255, 255, 0.95);
    color: #111;
    padding: 15px 20px;
    /* More padding */
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: normal;
    /* Allow wrapping */
    min-width: 250px;
    /* Min width for readability */
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    text-align: center;
}

.marker-tooltip strong {
    display: block;
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.tooltip-tagline {
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
    display: block;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Stick arrow to bottom */
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.map-marker:hover .marker-dot {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}





/* Property Overview */
.property-overview {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: relative;
    padding: var(--spacing-3xl) var(--section-padding);
}

.building-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16/9;
}

.building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    will-change: transform;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--color-overlay), transparent);
    pointer-events: none;
}

.property-info {
    position: absolute;
    top: 10%;
    left: var(--section-padding);
    max-width: 400px;
    color: var(--color-text-light);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    font-weight: 300;
    opacity: 0;
    transform: translateY(60px);
}

/* Brand Promise */
.brand-promise {
    min-height: 100vh;
    /* ... existing styles ... */
}


.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

.split-left {
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(-100%);
}

.split-right {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(100%);
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-accent);
    opacity: 0;
}

/* Service Panel Carousel */
.service-panel {
    display: none;
    /* Hide old container if present */
}

/* Swiper Container Adjustments */
.carousel-container {
    padding: var(--spacing-md) 0;
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
}

.swiper {
    width: 100%;
    /* height: 100%; Remove to let content dictate height */
    padding-bottom: 20px;
    /* Space for shadow/overflow if needed */
}

.swiper-wrapper {
    transition-timing-function: linear !important;
    /* Crucial for continuous linear flow */
}

.swiper-slide {
    width: auto;
    /* Let content define width (or set fixed width) */
    /* width: 400px; - set on .carousel-card below */
}

/* Card Styling */
.carousel-card {
    /* flex: 0 0 auto; - handled by swiper */
    /* width: auto; - handled by slidesPerView */
    height: 450px;
    /* Slight reduction from 500px to maintain ratio */
    /* margin: 0 15px; - handled by spaceBetween in Swiper config */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    display: block;
    text-decoration: none;
}

/* Inner Card Styling (similar to previous) */
.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-bg:hover .card-bg-media {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.card-content {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    color: #fff;
    white-space: normal;
    /* Allow text to wrap inside card */
}

.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.card-stat {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.card-badge {
    position: static;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Adjustments for mobile */
@media (max-width: 768px) {
    /* .carousel-card {
        width: 300px;
        height: 400px;
    } */

    .company-grid-container .carousel-card {
        width: 100%;
        height: 100%;
    }

    .company-grid-container {
        padding: 15px;
    }
}

/* Wellness Section */
.wellness-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wellness-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wellness-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.2);
    will-change: transform;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}

.wellness-content {
    position: relative;
    z-index: var(--z-content);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 var(--section-padding);
    gap: 4rem;
}

.wellness-description {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 500px;
    opacity: 0;
}

.wellness-label {
    display: block;
    font-size: var(--font-size-xs);
    letter-spacing: 0.2em;
    color: #ccc;
    margin-bottom: 1rem;
    opacity: 0;
}

.wellness-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.wellness-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
    transform-origin: bottom;
}

/* Nature Section */
.nature-section {
    min-height: 150vh;
    background: var(--color-primary);
    padding: var(--spacing-3xl) 0;
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1rem;
    padding: 0 var(--spacing-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.panel-top {
    grid-column: 1 / -1;
    height: 150px;
}

.panel-middle-left {
    grid-column: 1 / 3;
    min-height: 500px;
    background: var(--color-primary-dark);
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
}

.panel-middle-center {
    grid-column: 3 / 4;
    min-height: 500px;
}

.panel-middle-right {
    grid-column: 4 / 5;
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
}

.panel-bottom-left,
.panel-bottom-right {
    grid-column: span 2;
    height: 400px;
}

.nature-panel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

.panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.nature-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    opacity: 0;
    transform: scale(0.8) rotateY(-20deg);
}

.nature-subtitle {
    display: block;
    font-size: var(--font-size-xs);
    letter-spacing: 0.2em;
    color: #ccc;
    margin-top: 1rem;
}

.nature-description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: #ddd;
}

.nature-extended {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: var(--spacing-3xl) var(--spacing-md);
    max-width: var(--max-width);
    margin: 0 auto;
}

.extended-text {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.9;
    color: var(--color-text-light);
    padding: var(--spacing-lg);
}

.extended-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Outdoor Living */
.outdoor-living {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.outdoor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    will-change: transform;
}

.motion-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-overlay));
}

.outdoor-content {
    position: relative;
    z-index: var(--z-content);
    max-width: 600px;
    margin-left: auto;
    margin-right: var(--section-padding);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(200px);
}

.outdoor-text {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.8;
    color: var(--color-primary-light);
}

/* Architecture & Design */
.architecture-design {
    min-height: 120vh;
    position: relative;
    background: #e8dcc8;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.architecture-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
}

.architecture-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transform: translateY(30%) scale(1.1);
    will-change: transform;
}

.architecture-content {
    position: relative;
    z-index: var(--z-content);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5% var(--section-padding) 10% var(--section-padding);
    gap: 4rem;
}

.architecture-description {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-text-dark);
    max-width: 450px;
    opacity: 0;
    transform: translateX(-80px);
}

.design-label {
    display: block;
    font-size: var(--font-size-xs);
    letter-spacing: 0.2em;
    color: #666;
    text-align: right;
    margin-bottom: 1rem;
}

.design-title {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 300;
    color: #2a2a2a;
    line-height: 0.9;
    text-align: right;
    opacity: 0;
    transform: scale(0.7) translateY(100px);
}

/* Interior Showcase */
.interior-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f0e8;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    gap: 2rem;
    padding: 2rem;
}

.showcase-panel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    opacity: 0;
}

.interior-panel {
    transform: translateX(-100%);
}

.exterior-panel {
    transform: translateX(100%);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.cta-card {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background: rgba(26, 58, 58, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    min-width: 280px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8) translateY(50px);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: var(--font-size-3xl);
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: var(--font-size-sm);
    color: #ccc;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-base);
}

.cta-button:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 230, 211, 0.3);
}

/* Move-In Ready */
.move-in-ready {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f5f0e8;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-container .swiper-horizontal {
    height: 380px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100vh;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.move-in-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-3xl);
    background: #e8dcc8;
}

.move-in-text {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.9;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(40px);
}

.carousel-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 40px;
    height: 3px;
    background: #ccc;
    cursor: pointer;
    transition: all var(--transition-base);
}

.indicator.active {
    background: var(--color-primary);
    width: 60px;
}

/* Footer */
.footer-section {
    min-height: 80vh;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.back-to-top {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(245, 230, 211, 0.3);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.5);
}

.back-to-top:hover {
    background: rgba(245, 230, 211, 0.1);
    transform: translateY(-5px) scale(1);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
}

/* Intro Section */
.intro-section {
    position: relative;
    padding: var(--section-padding) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
    /* Ensure globe doesn't overflow */
}

#intro-globe-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    /* Occupy right side */
    z-index: 0;
    pointer-events: all;
    /* Allow interaction */
}

/* Adjust Intro Container to be on the left */
.intro-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    /* Let clicks pass through to globe where possible */
}

.intro-headline,
.intro-text {
    pointer-events: auto;
    /* Re-enable pointer events for text */
    max-width: 50%;
    /* limit text width */
}

.intro-headline {
    font-family: var(--font-serif);
    font-size: var(--font-size-4xl);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--color-accent);
}

.footer-content {
    text-align: center;
    max-width: 1200px;
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: scale(0.8);
}

.footer-logo h2 {
    font-family: var(--font-serif);
    font-size: var(--font-size-5xl);
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-link {
    font-size: var(--font-size-xs);
    letter-spacing: 0.15em;
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.footer-link:hover {
    color: var(--color-accent);
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(245, 230, 211, 0.2);
    border-bottom: 1px solid rgba(245, 230, 211, 0.2);
}

.footer-disclaimer p {
    font-size: var(--font-size-xs);
    line-height: 1.6;
    color: #999;
}

.footer-copyright {
    margin-top: 2rem;
}

/* --- NEW INFO BLOCKS SECTION --- */
.info-blocks-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 90%;
    max-width: 1400px;
    margin: 4rem auto 0;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 1);
    /* Very subtle transparent white */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    /* Hidden initially for GSAP */
    transform: translateY(30px);
    /* Pushed down initially */
}

.info-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-icon {
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    /* Red */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(237, 28, 36, 0.1);
    /* Light red bg */
    border-radius: 50%;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    font-weight: 300;
}

@media (max-width: 768px) {
    .info-blocks-container {
        flex-direction: column;
        align-items: center;
    }

    .info-block {
        width: 100%;
        max-width: 400px;
    }
}

/* --- IMPACT IN NUMBERS SECTION --- */
.impact-numbers-section {
    padding: 6rem 0;
    /* Dark Deep Blue/Black Theme */
    background-color: #0d1117;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.impact-numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, white 1px, transparent 1px), linear-gradient(white 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .05;
    z-index: 0;
}

.impact-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 4rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.impact-subtitle {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b949e;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.impact-subtitle::before,
.impact-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #30363d;
}

.impact-subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.impact-subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.impact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlight-gold {
    color: var(--color-accent);
    /* Gold/Yellow */
}

.impact-desc {
    font-size: 1.1rem;
    color: #8b949e;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: #161b22;
    /* Slightly lighter card bg */
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    /* For GSAP */
    transform: translateY(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
    border-color: var(--color-accent);
    background: #1a2029;
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: rgba(48, 54, 61, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.impact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.impact-card-desc {
    font-size: 0.95rem;
    color: #8b949e;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .impact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-number {
        font-size: 3rem;
    }
}

/* --- LEADERSHIP SECTION --- */
.leadership-section {
    padding: 8rem 0;
    background-color: #fff;
    color: #111;
}

.leadership-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.leadership-title-col {
    flex: 1;
    min-width: 300px;
}

.leadership-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111;
}

.highlight-red {
    /* text-decoration: underline; 
       text-decoration-color: var(--color-accent);
       text-decoration-thickness: 3px; */
    /* Using span for cleaner control if needed, but the design shows an underline below */
}

.heading-underline {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background-color: var(--color-accent);
    /* Red */
}

.leadership-desc-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.leadership-desc-col p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.leader-card {
    display: flex;
    flex-direction: column;
    opacity: 0;
    /* Hidden for GSAP */
    transform: translateY(50px);
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #f0f0f0;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.leader-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    /* Fallback */
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.leader-card:hover .leader-img-placeholder {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .leadership-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* --- Leadership Content Updates --- */
.leader-role {
    font-size: 0.95rem;
    color: var(--color-accent);
    /* Red */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.leader-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.leader-info {
    padding-top: 1rem;
}

/* --- OUR SECTORS SECTION --- */
.sectors-section {
    padding: 8rem 0;
    background-color: #f9fafb;
    /* Light neutral bg */
    color: #111;

}

.sectors-header {
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.sector-subtitle {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sector-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111;
}

.sector-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
    /* For 3D tilt */
}

/* Tile styling */
.sector-tile {
    /* Container for layout */
    min-height: 280px;
    opacity: 0;
    transform: translateY(50px);
}

.sector-tile-inner {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sector-tile:hover .sector-tile-inner {
    transform: rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff 0%, #fffcf5 100%);
    /* Subtle gold tint */
    border-color: rgba(212, 175, 55, 0.3);
}

.sector-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #111;
    transition: color 0.3s ease;
}

.sector-tile:hover .sector-icon {
    color: var(--color-accent);
    /* Red or Gold */
}

.sector-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.sector-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.sector-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sector-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sector-link:hover .arrow {
    transform: translateX(5px);
}

/* Icon Animation Setup */
/* We'll use JS to animate stroke-dashoffset, but here are defaults */
.sector-icon svg {
    /* Ensure styles are ready for JS manipulation */
    /* stroke-dasharray/offset will be set in JS or we can do CSS keyframes if preferred.
       JS gives better control on scroll trigger. */
}

@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .sector-tile-inner {
        padding: 1.5rem;
    }

    .leadership-info {
        order: 2;
    }
}

@media (max-width: 600px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* --- PINNED SECTORS SECTION (Alternative) --- */
.sectors-pinned-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero/building-exterior.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
    color: #fff;
    min-height: 100vh;
}

.sectors-pinned-container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.sectors-pinned-left {
    width: 50%;
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4rem;
    z-index: 2;
}

.pinned-content .sector-subtitle {
    color: #fff;
}

.pinned-content .sector-title {
    color: #fff;
    font-size: 4.5rem;
}

.pinned-content .sector-intro {
    color: #ccc;
    margin-bottom: 25px;
}

.sectors-pinned-right {
    width: 50%;
    padding: 10vh 0 20vh;
    /* Top and bottom padding for scroll space */
}

.sector-block {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 12px;
    padding: 5rem;
    margin-bottom: 4rem;
    /* Space between blocks */
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    /* Hidden for animation */
    transform: translateX(50px);
    transition: transform 0.3s ease, background 0.3s ease;
}


.sector-block-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    display: none;
}

.sector-block-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.sector-block-content p {
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .sectors-pinned-container {
        flex-direction: column;
    }

    .sectors-pinned-left {
        width: 100%;
        height: auto;
        position: relative;
        padding: 4rem 1rem 2rem;
        text-align: center;
    }

    .sectors-pinned-right {
        width: 100%;
        padding: 2rem 1rem 4rem;
    }

    .sector-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}


/* --- RESOURCES SECTION --- */
.resources-section {
    padding: 6rem 0;
    background-color: #fff;
    color: #111;
    border-top: 1px solid #eee;
}

.resources-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Row */
.resources-header-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.res-col-header {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.res-col-header h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0rem;
    color: #333;
    line-height: 1.2;
}

.res-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.res-link:hover {
    color: var(--color-accent);
}

.res-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.res-link:hover .arrow {
    transform: translateX(5px);
}

/* Content Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Card Styling */
.res-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 85%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.res-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.res-card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 600;
}

.res-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    background: #f4f4f4;
}

.res-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.res-card:hover .res-card-image img {
    transform: scale(1.05);
}

.res-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: #333;
    /* Default */
    z-index: 2;
}

.res-badge.theme-green {
    background-color: #27ae60;
}

.res-badge.theme-gold {
    background-color: #d4af37;
    color: #111;
}

.res-badge.theme-purple {
    background-color: #8e44ad;
}

.res-badge.theme-red {
    background-color: var(--color-accent);
}

.res-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.res-date,
.res-location {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    display: block;
}

.res-meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.res-card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
    line-height: 1.4;
}

.res-card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.res-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    /* Push to bottom */
    transition: color 0.3s ease;
}

.res-read-more:hover {
    color: var(--color-accent);
}

.res-read-more .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.res-read-more:hover .arrow {
    transform: translateX(5px);
}

/* Responsiveness */
@media (max-width: 1024px) {

    .resources-header-row,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-header-row {
        gap: 3rem 2rem;
    }
}

@media (max-width: 600px) {

    .resources-header-row,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .res-col-header h3 {
        margin-bottom: 0.5rem;
    }
}

/* --- SITE FOOTER --- */
.site-footer {
    background-color: #0d1117;
    color: #fff;
    padding: 6rem 0 0;
    overflow: hidden;
    position: relative;
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Footer Top: Nav & Columns */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-nav-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-large a {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    line-height: 1.1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav-large a:hover {
    color: var(--color-accent);
    transform: translateX(10px);
}

.footer-nav-columns {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #8b949e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

/* Footer Contact & Social Wrapper */
.footer-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

/* Footer Middle: Socials & Legal */
.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom to match visuals usually */
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

.legal-links {
    display: flex;
    gap: 2rem;
    align-self: flex-end;
    /* Keep legal links at bottom right */
}

.legal-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* Footer Bottom: Giant Text */
.footer-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0.8;
}

.giant-footer-text {
    font-size: 17vw;
    font-weight: 900;
    color: var(--color-accent);
    /* Red SAKSHI */
    text-align: center;
    letter-spacing: -0.05em;
    margin-bottom: -3vw;
    /* Tuck it in slightly at bottom */
    transform: translateY(0);
    /* For animation if needed */
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-nav-columns {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .footer-nav-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-middle {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .giant-footer-text {
        font-size: 30vw;
    }
}

/* --- VISION & MISSION SECTION --- */
.vision-mission-section {
    padding: 8rem 2rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vm-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
}

.vm-block {
    flex: 1;
    text-align: left;
}

.vm-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.vm-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    color: var(--color-primary);
    font-weight: 400;
}

.vm-divider {
    width: 1px;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.1);
}

/* --- CLIENTS SECTION --- */
.clients-section {
    padding: 3rem 2rem;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-header {
    text-align: center;
    margin-bottom: 1rem;
}

.clients-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    margin-top: 1rem;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.client-logo-wrapper {
    flex: 0 1 250px;
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(100%);
    cursor: pointer;
}

.client-logo-wrapper:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px);
}

.client-logo {
    width: 100%;
    height: auto;
    display: block;
}