@font-face {
    font-family: main;
    src: url(/assets/fonts/PlusJakartaSans-VariableFont_wght.ttf);
}

:root {
    --blue: #CBEFFF;
    --green: #C9FCDB;
    --yellow: #fff1ad;
    --red: #FFEAED;
    --violet: #d2c9ff;

    --dark-green: #004232;


    /* Finance */
    --fin-acc: #00D4AA;
    --fin-glow: rgba(0, 212, 170, .22);
    --fin-grad: linear-gradient(135deg, #020F1A 0%, #051525 55%, #062030 100%);

    /* Construction */
    --con-acc: #F0A500;
    --con-glow: rgba(240, 165, 0, .22);
    --con-grad: linear-gradient(135deg, #0E0900 0%, #1A1004 55%, #231608 100%);

    /* Pharma */
    --pha-acc: #A855F7;
    --pha-glow: rgba(168, 85, 247, .22);
    --pha-grad: linear-gradient(135deg, #060311 0%, #0E0820 55%, #130B2E 100%);

    --ease: cubic-bezier(0.76, 0, 0.24, 1);
}


::-webkit-scrollbar {
    width: 10px;
}

/* TRACK */
::-webkit-scrollbar-track {
    background: #000000;
}

/* THUMB */
::-webkit-scrollbar-thumb {
    background: #fff1ad;
    border-radius: 100px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

/* HOVER */
::-webkit-scrollbar-thumb:hover {
    background: #ffe88a;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Animations */
@keyframes uc-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uc-tracking-in {
    from {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    to {
        letter-spacing: 6px;
        opacity: 1;
    }
}

@keyframes uc-soft-pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Scoped Layout Styles */
.under-construct-page-wrapper {
    font-family: main;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.under-construct-main-container {
    max-width: 650px;
    width: 100%;
    text-align: center;
    animation: uc-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.under-construct-brand-logo {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
    animation: uc-tracking-in 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.under-construct-status-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border: 1px solid #000000;
    margin-bottom: 32px;
    animation: uc-soft-pulse 3s infinite ease-in-out;
}

.under-construct-primary-heading {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin: 0 0 24px 0;
    letter-spacing: -1.5px;
    line-height: 1.05;
}

.under-construct-description-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
    margin: 0 auto 48px auto;
    font-weight: 300;
    max-width: 520px;
}

.under-construct-action-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.under-construct-icon-btn {
    color: #000000;
    text-decoration: none;
    font-size: 26px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
}

.under-construct-icon-btn:hover {
    transform: translateY(-5px);
    opacity: 0.5;
}

.under-construct-visual-divider {
    width: 50px;
    height: 1px;
    background-color: #000000;
    margin: 0 auto 32px auto;
}

.under-construct-footer-info {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .under-construct-main-container {
        text-align: left;
        /* Corporate editorial look for mobile */
    }

    .under-construct-action-links {
        justify-content: flex-start;
    }

    .under-construct-visual-divider {
        margin: 0 0 32px 0;
    }

    .under-construct-primary-heading {
        font-size: 40px;
    }

    .under-construct-description-text {
        font-size: 16px;
    }
}




/* main-preloader-section-start */
.main-preloader-wrapper {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 999999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
}

.main-preloader-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(197, 163, 85, 0.04), transparent 50%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 40%);
}

.main-preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 880px;
    padding: 0 48px;
}

.main-preloader-graph-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.main-preloader-graph-wrap img {
    width: 20%;
}

.main-preloader-graph-label-top {
    color: #b78f22;
    font-size: 3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: main;
    opacity: 0;
}

.main-preloader-graph-canvas-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main-preloader-svg {
    width: 100%;
    height: 300px;
    display: block;
    overflow: visible;
}

.main-preloader-grid-line {
    stroke: rgba(255, 255, 255, 0.045);
    stroke-width: 1;
    stroke-dasharray: 3 7;
}

.main-preloader-baseline {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1;
}

.main-preloader-area-fill {
    fill: url(#mainPreloaderAreaGrad);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}

.main-preloader-line-glow {
    stroke: rgba(197, 163, 85, 0.2);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: blur(8px);
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
}

.main-preloader-line-path {
    stroke: #C5A355;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
}

.main-preloader-year-vline {
    stroke: rgba(197, 163, 85, 0.45);
    stroke-width: 1;
    stroke-dasharray: 3 5;
}

.main-preloader-line-dot {
    fill: #C5A355;
    filter: drop-shadow(0 0 5px #C5A355) drop-shadow(0 0 12px rgba(197, 163, 85, 0.7));
}

.main-preloader-baseline-dot {
    fill: #C5A355;
    filter: drop-shadow(0 0 4px #C5A355) drop-shadow(0 0 10px rgba(197, 163, 85, 0.6));
}

.main-preloader-dot {
    fill: #ffffff;
    filter: drop-shadow(0 0 4px #C5A355) drop-shadow(0 0 10px rgba(197, 163, 85, 0.8));
}

.main-preloader-years-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 2px;
}

.main-preloader-year {
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.18);
    text-align: center;
    transition: color 0.4s ease, transform 0.4s ease, text-shadow 0.4s ease;
    min-width: 44px;
}

.main-preloader-year.main-preloader-year--active {
    color: #C5A355;
    transform: translateY(-2px);
    text-shadow: 0 0 14px rgba(197, 163, 85, 0.8), 0 0 36px rgba(197, 163, 85, 0.3);
}

.main-preloader-year.main-preloader-year--passed {
    color: rgba(197, 163, 85, 0.4);
    transform: translateY(0);
    text-shadow: none;
}

/* main-preloader-section-end */








/* main-navbar-section-start */
.main-navbar_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-family: main;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.main-navbar_wrapper.main-navbar_scrolled {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: #000000;
    padding: 5px 0;
}

/* ─── Container ───────────────────────────────────── */
.main-navbar_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ─── Logo ────────────────────────────────────────── */
.main-navbar_logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgb(215, 185, 13);
}

.main-navbar_logo-icon {
    display: flex;
    align-items: center;
    width: 20%;
}

.main-navbar_logo-icon img {
    width: 100%;
}

.main-navbar_logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.main-navbar_logo-text span {
    font-weight: 300;
    opacity: 0.7;
}

/* ─── Nav Links ───────────────────────────────────── */
.main-navbar_link-list {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navbar_link {
    text-decoration: none;
    color: inherit;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.25s;
    cursor: pointer;
}

.main-navbar_link:hover {
    opacity: 0.6;
}

.main-navbar_chevron {
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}

.main-navbar_dropdown-trigger:hover .main-navbar_chevron {
    transform: rotate(180deg);
}

/* ─── Mega Menu (Sectors Dropdown) ───────────────── */
.main-navbar_dropdown-trigger {
    position: relative;
}

.main-navbar_mega-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    min-width: 230px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease,
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.25s;
    pointer-events: none;
}

.main-navbar_dropdown-trigger:hover .main-navbar_mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

/* ─── Sector Items ────────────────────────────────── */
.main-navbar_sector-item {
    position: relative;
}

.main-navbar_sector-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 10px;
    text-decoration: none;
    color: #1a1a1a;
    border-radius: 8px;
    transition: background-color 0.15s;
    cursor: pointer;
}

/* anchor tags used as sector links */
a.main-navbar_sector-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 10px;
    text-decoration: none;
    color: #1a1a1a;
    border-radius: 8px;
    transition: background-color 0.15s;
}

.main-navbar_sector-link:hover,
a.main-navbar_sector-link:hover {
    background-color: #ffe190;
}

.main-navbar_sector-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-navbar_sector-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.15s;
}

.main-navbar_sector-icon i {
    font-size: 15px;
    color: #555;
}

.main-navbar_sector-link:hover .main-navbar_sector-icon,
a.main-navbar_sector-link:hover .main-navbar_sector-icon {
    background-color: #ffbe0b9c;
}

.main-navbar_sector-label {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.main-navbar_sub-arrow {
    font-size: 15px;
    color: #aaa;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.15s;
    line-height: 1;
}

.main-navbar_has-sub:hover .main-navbar_sub-arrow {
    transform: rotate(-90deg);
    color: #555;
}

/* ─── Sub-Menu (Finance children) ────────────────── */
.main-navbar_sub-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    background: #ffffff;
    border-radius: 10px;
    padding: 8px;
    min-width: 190px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13), 0 3px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity 0.2s ease,
        transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.2s;
    pointer-events: none;
    z-index: 1;
}

.main-navbar_has-sub:hover .main-navbar_sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.main-navbar_sub-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 500;
    border-radius: 7px;
    transition: background-color 0.15s;
}

.main-navbar_sub-link:hover {
    background-color: #f4f4f4;
}

.main-navbar_sub-link i {
    font-size: 15px;
    color: #888;
}

/* ─── Hamburger ───────────────────────────────────── */
.main-navbar_hamburger {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 28px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

/* ─── Wide container offset ───────────────────────── */
@media (min-width: 1300px) and (max-width: 1450px) {
    .main-navbar_container {
        padding: 0 60px;
    }
}

/* ─── Mobile ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .main-navbar_hamburger {
        display: block;
    }

    .main-navbar_nav-box {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        color: #000000;
        padding: 90px 30px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .main-navbar_nav-box.is-open {
        right: 0;
    }

    .main-navbar_link-list {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .main-navbar_item {
        width: 100%;
    }

    .main-navbar_link {
        color: #000000;
        font-size: 14px;
        padding: 10px 4px;
        width: 100%;
        justify-content: space-between;
    }

    /* Mega menu becomes an accordion on mobile */
    .main-navbar_mega-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        pointer-events: all;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 0;
        min-width: unset;
    }

    .main-navbar_dropdown-trigger.is-open .main-navbar_mega-menu {
        max-height: 600px;
    }

    .main-navbar_dropdown-trigger.is-open .main-navbar_chevron {
        transform: rotate(180deg);
    }

    /* Sector links on mobile */
    .main-navbar_sector-link,
    a.main-navbar_sector-link {
        color: #1a1a1a;
        padding: 9px 8px;
    }

    /* Sub-menu becomes a nested accordion on mobile */
    .main-navbar_sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 40px;
        pointer-events: all;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 0;
        min-width: unset;
    }

    .main-navbar_has-sub.is-sub-open .main-navbar_sub-menu {
        max-height: 200px;
    }

    .main-navbar_has-sub.is-sub-open .main-navbar_sub-arrow {
        transform: rotate(90deg);
        color: #555;
    }

    .main-navbar_sub-link {
        color: #333;
        font-size: 13px;
    }
}

/* main-navbar-section-end */



/* main-hero-section-start */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    font-family: main;
}

.hero__carousel,
.hero__carousel .slick-list,
.hero__carousel .slick-track {
    height: 100%;
}

.hero__carousel .slick-slide>div {
    height: 100%;
}

/* ── SLIDE ─────────────────────────────── */
.slide {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex !important;
    align-items: center;
    overflow: hidden;
    will-change: transform;
}

.slide[data-s="finance"] {
    background: var(--fin-grad);
}

.slide[data-s="construction"] {
    background: var(--con-grad);
}

.slide[data-s="pharma"] {
    background: var(--pha-grad);
}

/* ambient glow blob */
.slide::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -8%;
    width: 70%;
    height: 130%;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: .45;
}

.slide[data-s="finance"]::before {
    background: radial-gradient(circle, var(--fin-glow) 0%, transparent 65%);
}

.slide[data-s="construction"]::before {
    background: radial-gradient(circle, var(--con-glow) 0%, transparent 65%);
}

.slide[data-s="pharma"]::before {
    background: radial-gradient(circle, var(--pha-glow) 0%, transparent 65%);
}

/* dot grid */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* ── GRID ──────────────────────────────── */
.slide__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
    padding: 0 3vw 0 0vw;
    gap: 3vw;
    height: 100%;
}

/* ── LEFT ──────────────────────────────── */
.slide__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0;
    padding-left: 21%;
}

.slide__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 22px;
    border: 1px solid;
}

.slide[data-s="finance"] .slide__label {
    color: var(--fin-acc);
    border-color: rgba(0, 212, 170, .3);
    background: rgba(0, 212, 170, .07);
}

.slide[data-s="construction"] .slide__label {
    color: var(--con-acc);
    border-color: rgba(240, 165, 0, .3);
    background: rgba(240, 165, 0, .07);
}

.slide[data-s="pharma"] .slide__label {
    color: var(--pha-acc);
    border-color: rgba(168, 85, 247, .3);
    background: rgba(168, 85, 247, .07);
}

.slide__label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse 2.2s ease infinite;
}

.slide[data-s="finance"] .slide__label-dot {
    background: var(--fin-acc);
}

.slide[data-s="construction"] .slide__label-dot {
    background: var(--con-acc);
}

.slide[data-s="pharma"] .slide__label-dot {
    background: var(--pha-acc);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(2);
        opacity: .3;
    }
}

.slide__heading {
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 14px;
}

.slide__heading em {
    font-style: normal;
    display: block;
}

.slide[data-s="finance"] .slide__heading em {
    color: var(--fin-acc);
}

.slide[data-s="construction"] .slide__heading em {
    color: var(--con-acc);
}

.slide[data-s="pharma"] .slide__heading em {
    color: var(--pha-acc);
}

.slide__body {
    font-size: clamp(12px, .85vw, 13.5px);
    font-weight: 500;
    line-height: 1.75;
    color: rgba(255, 255, 255, .45);
    max-width: 360px;
    margin-bottom: 26px;
}

.slide__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.slide__badge {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
}

.slide__badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.slide[data-s="finance"] .slide__badge-icon {
    background: rgba(0, 212, 170, .15);
    color: var(--fin-acc);
}

.slide[data-s="construction"] .slide__badge-icon {
    background: rgba(240, 165, 0, .15);
    color: var(--con-acc);
}

.slide[data-s="pharma"] .slide__badge-icon {
    background: rgba(168, 85, 247, .15);
    color: var(--pha-acc);
}

.slide__badge-val {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.slide__badge-lbl {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

.slide__cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform .28s var(--ease), opacity .2s, box-shadow .3s;
}

.slide__btn:hover {
    transform: translateY(-2px);
}

.slide[data-s="finance"] .slide__btn--pri {
    background: var(--fin-acc);
    color: #051525;
    box-shadow: 0 8px 24px rgba(0, 212, 170, .35);
}

.slide[data-s="construction"] .slide__btn--pri {
    background: var(--con-acc);
    color: #1A1106;
    box-shadow: 0 8px 24px rgba(240, 165, 0, .35);
}

.slide[data-s="pharma"] .slide__btn--pri {
    background: var(--pha-acc);
    color: #0E0820;
    box-shadow: 0 8px 24px rgba(168, 85, 247, .35);
}

.slide__btn--pri:hover {
    opacity: .9;
}

.slide__btn--sec {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .14);
}

.slide__btn--sec:hover {
    background: rgba(255, 255, 255, .12);
    opacity: 1;
}

/* ── RIGHT (chart area) ──────────────────── */
.slide__right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 24px 3vw 24px 0;
}

/* ── CHART CARD ─────────────────────────── */
.chart-card {
    width: 90%;
    max-width: none;
    height: calc(100vh - 90px);
    max-height: 560px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(28px);
    padding: 26px 26px 22px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* subtle inner glow on top edge */
.chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    pointer-events: none;
}

.cc-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.cc-title {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .78);
    letter-spacing: .015em;
}

.cc-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .26);
    margin-top: 3px;
}

.cc-kpi-val {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    text-align: right;
}

.slide[data-s="finance"] .cc-kpi-val {
    color: var(--fin-acc);
}

.slide[data-s="construction"] .cc-kpi-val {
    color: var(--con-acc);
}

.slide[data-s="pharma"] .cc-kpi-val {
    color: var(--pha-acc);
}

.cc-kpi-lbl {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .26);
    text-align: right;
    margin-top: 2px;
}

/* canvas wrapper — fills flex space */
.cc-chart {
    flex: 1;
    position: relative;
    min-height: 0;
    margin-bottom: 18px;
}

.cc-chart canvas {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

/* stat pills */
.cc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex-shrink: 0;
}

.cc-stat {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    padding: 11px 12px;
    transition: background .25s;
}

.cc-stat:hover {
    background: rgba(255, 255, 255, .09);
}

.cc-stat-val {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.slide[data-s="finance"] .cc-stat-val {
    color: var(--fin-acc);
}

.slide[data-s="construction"] .cc-stat-val {
    color: var(--con-acc);
}

.slide[data-s="pharma"] .cc-stat-val {
    color: var(--pha-acc);
}

.cc-stat-lbl {
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255, 255, 255, .28);
}

/* ── YEAR SELECTOR (Finance) ─────────────── */
.fin-year-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.fin-year-tab {
    font-family: var(--ff);
    font-size: 9.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 170, .2);
    background: rgba(0, 212, 170, .05);
    color: rgba(255, 255, 255, .38);
    cursor: pointer;
    transition: all .22s;
}

.fin-year-tab.active,
.fin-year-tab:hover {
    background: rgba(0, 212, 170, .18);
    color: #00D4AA;
    border-color: rgba(0, 212, 170, .5);
}

/* ── PHARMA KPI PILLS ─────────────────────── */
.ph-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex-shrink: 0;
    margin-bottom: 14px;
}

.ph-kpi {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    padding: 12px 10px;
    text-align: center;
}

.ph-kpi-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--pha-acc);
    line-height: 1;
    margin-bottom: 4px;
}

.ph-kpi-lbl {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .3);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.hero__nav {
    position: absolute;
    bottom: 30px;
    left: 9vw;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero__tracks {
    display: flex;
    gap: 7px;
}

.hero__track {
    height: 3px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .15);
    overflow: hidden;
    cursor: pointer;
    transition: width .38s var(--ease);
    width: 36px;
}

.hero__track.on {
    width: 68px;
}

.hero__track-fill {
    height: 100%;
    width: 0%;
    border-radius: 100px;
}

.hero__track.on .hero__track-fill {
    animation: trk-fill 5s linear forwards;
}

@keyframes trk-fill {
    from {
        width: 0%
    }

    to {
        width: 100%
    }
}

.hero__arrows {
    display: flex;
    gap: 7px;
}

.hero__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .17);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    transition: background .25s, transform .22s;
}

.hero__arrow:hover {
    background: rgba(255, 255, 255, .16);
    transform: scale(1.08);
}

.hero__counter {
    position: absolute;
    bottom: 38px;
    right: 5vw;
    z-index: 20;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .28);
    letter-spacing: .05em;
}

.hero__counter b {
    color: #fff;
    font-size: 15px;
}

/* ══════════════════════════════════════════
   ENTRANCE ANIMATIONS
══════════════════════════════════════════ */
.slide__label,
.slide__heading,
.slide__body,
.slide__badges,
.slide__cta,
.slide__right {
    opacity: 1;
    transform: none;
}

.slide.is-animating .slide__label {
    animation: aUp .65s var(--ease) .00s both;
}

.slide.is-animating .slide__heading {
    animation: aUp .70s var(--ease) .10s both;
}

.slide.is-animating .slide__body {
    animation: aUp .70s var(--ease) .20s both;
}

.slide.is-animating .slide__badges {
    animation: aUp .70s var(--ease) .28s both;
}

.slide.is-animating .slide__cta {
    animation: aUp .65s var(--ease) .36s both;
}

.slide.is-animating .slide__right {
    animation: aRt .85s var(--ease) .14s both;
}

@keyframes aUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aRt {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
    .slide__inner {
        grid-template-columns: 1fr;
        padding: 80px 5vw 110px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .slide__right {
        padding: 0;
        height: auto;
    }

    .chart-card {
        max-width: 100%;
        height: auto;
        max-height: none;
    }

    .cc-chart {
        height: 200px;
        flex: none;
    }

    .slide__heading {
        font-size: clamp(26px, 7vw, 38px);
    }
}

/* main-hero-section-end   */









/* main-hook-section-start */
.main-hook-section {
    padding: 100px 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    background: #141414;
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture for depth */
.main-hook-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.main-hook-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    position: relative;
    z-index: 1;
}

/* Rule row */
.main-hook-rule-row {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.main-hook-rule-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.main-hook-rule-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, #ccc, transparent);
}

/* Headline block */
.main-hook-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-hook-heading {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

.main-hook-heading-2 {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

/* Accent highlight brush strokes */
.main-hook-accent {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.main-hook-accent::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0px;
    height: 90%;
    z-index: -1;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
}

.main-hook-accent--gold::before {
    background: #ffbe0b9c;
}

.main-hook-accent--sage::before {
    background: #0c22c9;
}

/* Triggered by JS when heading animates in */
.main-hook-accent--gold.main-hook-accent--revealed::before,
.main-hook-accent--sage.main-hook-accent--revealed::before {
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bottom grid: side col + 2 paras */
.main-hook-bottom {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Side accent column */
.main-hook-side-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
}

.main-hook-side-rule {
    width: 28px;
    height: 2px;
    background: #C5A355;
}

.main-hook-side-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-hook-stat-num {
    font-family: main;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: -1px;
    line-height: 1;
}

.main-hook-stat-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.5;
}

/* Paragraphs */
.main-hook-para {
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: #dcdcdc;
    font-family: main;
    opacity: 0;
    transform: translateY(24px);
    text-align: justify;
}

/* Para 2 + button wrapper */
.main-hook-para-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.main-hook-btn {
    padding: 13px 36px;
    border: 1.5px solid #ffffff;
    text-decoration: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.main-hook-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 1100px) {
    .main-hook-container {
        padding: 0 48px;
    }

    .main-hook-bottom {
        grid-template-columns: 140px 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .main-hook-container {
        padding: 0 32px;
        gap: 40px;
    }

    .main-hook-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .main-hook-side-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .main-hook-side-rule {
        width: 1px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .main-hook-section {
        padding: 72px 0 72px;
    }

    .main-hook-container {
        padding: 0 24px;
        gap: 32px;
    }

    .main-hook-heading,
    .main-hook-heading-2 {
        letter-spacing: -1px;
    }

    .main-hook-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .main-hook-side-col {
        grid-column: auto;
    }
}

/* main-hook-section-end */








/* hero-business-section-start */
.main-business-section {
    padding: 80px 0px;
    font-family: main;
    overflow: hidden;
}

.main-business-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-business-top {
    padding: 0px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-business-heading {
    font-size: 3.2rem;
    width: 50%;
    font-weight: 500;
    margin: 0;
}

.main-business-para {
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    font-size: 1.3rem;
    color: #444444;
    width: 50%;
}

.main-business-bottom {
    padding: 40px 20px;
    background-color: #ffffff;
}

.main-business_card-item {
    padding: 0 12px;
    /* Gutter between cards */
    outline: none;
    text-decoration: none;
}

.main-business_card-inner {
    position: relative;
    height: 480px;
    /* Vertical card look */
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    cursor: grab;
    transition: transform 0.3s ease;
}

.main-business_card-inner:active {
    cursor: grabbing;
}

.main-business_card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.main-business_content-top {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.main-business_heading {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.main-business_para {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
}

.main-business_arrow-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
    background-color: #6a6a6ab5;
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.main-business_icon {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.main-business_card-inner:hover .main-business_arrow-wrapper {
    transform: translateX(5px);
}


@media(min-width: 1300px) and (max-width: 1450px) {
    .main-business-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-business-heading {
        font-size: 2.5rem;
    }

    .main-business-para {
        font-size: 1rem;
    }

    .main-business_card-inner {
        height: 350px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-business_card-inner {
        height: 400px;
    }
}

/* hero-business-section-end */








/* home-fin-section-start */
.home-fin-section {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    overflow: hidden;
    padding: 20px 0px 80px 0px;
}

.home-fin-container {
    padding: 0px 200px 0px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.home-fin-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.home-fin-left {
    width: 50%;
}

.home-fin-cont {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 100px;
}

.home-fin-cont-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.home-fin-label {
    padding: 10px 15px;
    border-radius: 50px;
    background-color: var(--blue);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}

.home-fin-heading {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0;
}

.home-fin-cont-bottom {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
}

.home-fin-paras {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.home-fin-para {
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    font-size: 1.15rem;
    color: #444444;
}

.home-fin-btn {
    padding: 15px 40px;
    border: 1px solid var(--dark-green);
    text-decoration: none;
    border-radius: 50px;
    color: var(--dark-green);
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-fin-btn:hover {
    background-color: var(--dark-green);
    color: #fff;
}

.home-fin-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-fin-video {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 14px;
}

.home-fin-asset {
    position: absolute;
    right: -60%;
    top: -40%;
    width: 120%;
}


/* home-fin-plan-grid-start */
.home-fin-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.home-fin-plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 36px 26px 32px;
    border-radius: 14px;
    border: 1.5px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
    font-family: main;
    text-align: center;
}

.home-fin-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.home-fin-plan-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    padding: 10px;
}

.home-fin-plan-icon-wrap img {
    width: 100%;
}

.home-fin-plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: main;
}

/* Color 1 — Navy Blue (cards 1, 4, 7, 10) */
.home-fin-plan-card--blue,
.home-fin-plan-card--amber,
.home-fin-plan-card--rose,
.home-fin-plan-card--cyan {
    background: #eaf0f8;
    border-color: #c2d4ec;
}

.home-fin-plan-card--blue .home-fin-plan-icon-wrap,
.home-fin-plan-card--amber .home-fin-plan-icon-wrap,
.home-fin-plan-card--rose .home-fin-plan-icon-wrap,
.home-fin-plan-card--cyan .home-fin-plan-icon-wrap {
    background: #c2d4ec;
    color: #1a3a5c;
}

.home-fin-plan-card--blue .home-fin-plan-name,
.home-fin-plan-card--amber .home-fin-plan-name,
.home-fin-plan-card--rose .home-fin-plan-name,
.home-fin-plan-card--cyan .home-fin-plan-name {
    color: #1a3a5c;
}

/* Color 2 — Forest Green (cards 2, 5, 8, 11) */
.home-fin-plan-card--purple,
.home-fin-plan-card--coral,
.home-fin-plan-card--indigo,
.home-fin-plan-card--lime {
    background: #e8f2ec;
    border-color: #b8d9c4;
}

.home-fin-plan-card--purple .home-fin-plan-icon-wrap,
.home-fin-plan-card--coral .home-fin-plan-icon-wrap,
.home-fin-plan-card--indigo .home-fin-plan-icon-wrap,
.home-fin-plan-card--lime .home-fin-plan-icon-wrap {
    background: #b8d9c4;
    color: #1a4230;
}

.home-fin-plan-card--purple .home-fin-plan-name,
.home-fin-plan-card--coral .home-fin-plan-name,
.home-fin-plan-card--indigo .home-fin-plan-name,
.home-fin-plan-card--lime .home-fin-plan-name {
    color: #1a4230;
}

/* Color 3 — Warm Charcoal (cards 3, 6, 9, 12) */
.home-fin-plan-card--teal,
.home-fin-plan-card--green,
.home-fin-plan-card--orange,
.home-fin-plan-card--slate {
    background: #f0eeeb;
    border-color: #d4cfc8;
}

.home-fin-plan-card--teal .home-fin-plan-icon-wrap,
.home-fin-plan-card--green .home-fin-plan-icon-wrap,
.home-fin-plan-card--orange .home-fin-plan-icon-wrap,
.home-fin-plan-card--slate .home-fin-plan-icon-wrap {
    background: #d4cfc8;
    color: #2e2a24;
}

.home-fin-plan-card--teal .home-fin-plan-name,
.home-fin-plan-card--green .home-fin-plan-name,
.home-fin-plan-card--orange .home-fin-plan-name,
.home-fin-plan-card--slate .home-fin-plan-name {
    color: #2e2a24;
}

@media (max-width: 1100px) {
    .home-fin-plan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .home-fin-plan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-fin-plan-card {
        padding: 28px 18px 24px;
    }
}

@media (max-width: 440px) {
    .home-fin-plan-grid {
        grid-template-columns: 1fr;
    }
}

/* home-fin-plan-grid-end */
/* home-fin-plan-grid-start */
.home-fin-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.home-fin-plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 36px 26px 32px;
    border-radius: 14px;
    border: 1.5px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
    font-family: main;
    text-align: center;
}

.home-fin-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.home-fin-plan-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.home-fin-plan-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: main;
}

/* Color 1 — Navy Blue (cards 1, 4, 7, 10) */
.home-fin-plan-card--blue,
.home-fin-plan-card--amber,
.home-fin-plan-card--rose,
.home-fin-plan-card--cyan {
    background: #f6fbff;
    border-color: #556470;
}

.home-fin-plan-card--blue .home-fin-plan-icon-wrap,
.home-fin-plan-card--amber .home-fin-plan-icon-wrap,
.home-fin-plan-card--rose .home-fin-plan-icon-wrap,
.home-fin-plan-card--cyan .home-fin-plan-icon-wrap {
    background: #4e96d1;
    color: #ffffff;
}

.home-fin-plan-card--blue .home-fin-plan-name,
.home-fin-plan-card--amber .home-fin-plan-name,
.home-fin-plan-card--rose .home-fin-plan-name,
.home-fin-plan-card--cyan .home-fin-plan-name {
    color: #1a3a5c;
}

/* Color 2 — Forest Green (cards 2, 5, 8, 11) */
.home-fin-plan-card--purple,
.home-fin-plan-card--coral,
.home-fin-plan-card--indigo,
.home-fin-plan-card--lime {
    background: #f6fbff;
    border-color: #556470;
}

.home-fin-plan-card--purple .home-fin-plan-icon-wrap,
.home-fin-plan-card--coral .home-fin-plan-icon-wrap,
.home-fin-plan-card--indigo .home-fin-plan-icon-wrap,
.home-fin-plan-card--lime .home-fin-plan-icon-wrap {
    background: #4e96d1;
    color: #ffffff;
}

.home-fin-plan-card--purple .home-fin-plan-name,
.home-fin-plan-card--coral .home-fin-plan-name,
.home-fin-plan-card--indigo .home-fin-plan-name,
.home-fin-plan-card--lime .home-fin-plan-name {
    color: #1a4230;
}

/* Color 3 — Warm Charcoal (cards 3, 6, 9, 12) */
.home-fin-plan-card--teal,
.home-fin-plan-card--green,
.home-fin-plan-card--orange,
.home-fin-plan-card--slate {
    background: #f6fbff;
    border-color: #556470;
}

.home-fin-plan-card--teal .home-fin-plan-icon-wrap,
.home-fin-plan-card--green .home-fin-plan-icon-wrap,
.home-fin-plan-card--orange .home-fin-plan-icon-wrap,
.home-fin-plan-card--slate .home-fin-plan-icon-wrap {
    background: #4e96d1;
    color: #ffffff;
}

.home-fin-plan-card--teal .home-fin-plan-name,
.home-fin-plan-card--green .home-fin-plan-name,
.home-fin-plan-card--orange .home-fin-plan-name,
.home-fin-plan-card--slate .home-fin-plan-name {
    color: #2e2a24;
}

@media (max-width: 1100px) {
    .home-fin-plan-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .home-fin-plan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-fin-plan-card {
        padding: 28px 18px 24px;
    }
}

@media (max-width: 440px) {
    .home-fin-plan-grid {
        grid-template-columns: 1fr;
    }
}

/* home-fin-plan-grid-end */
/* home-fin-section-end */







/* home-about-section-start */
.home-about-section {
    padding: 100px 0px 0px 0px;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    overflow: hidden;
}

.home-about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.home-about-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: end;
    justify-content: center;
    width: 70%;
}

.home-about-head-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.home-about-btn {
    padding: 15px 40px;
    border: 1px solid var(--yellow);
    text-decoration: none;
    border-radius: 50px;
    color: var(--yellow);
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-about-btn:hover {
    background-color: var(--yellow);
    color: #000;
}

.home-about-heading {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.home-about-paras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    transform: translateX(-100px);
}

.home-about-para {
    font-size: 1.1rem;
    text-align: justify;
    color: #d8d8d8;
    line-height: 1.4;
    font-weight: 500;
}

.home-about-bottom {
    width: 100%;
}

.home-about-bottom img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}


@media(min-width: 1300px) and (max-width: 1450px) {
    .home-about-heading {
        font-size: 2.5rem;
    }

    .home-about-top {
        width: 80%;
    }

    .home-about-paras {
        transform: translateX(-40px);
    }

    .home-about-para {
        font-size: 1rem;
    }

    .home-about-bottom img {
        height: 400px;
    }
}

/* home-about-section-end   */







/* home-commit-section-start */
.home-commit-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
    font-family: main;
    overflow: hidden;
}

.home-commit-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    padding: 0px 200px;
}

.home-commit-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.home-commit-head {
    display: flex;
    flex-direction: column;
    align-items: safe;
    justify-content: center;
    gap: 30px;
}

.home-commit-heading {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0;
}

.home-commit-para {
    font-size: 1.1rem;
    color: #444444;
    margin: 0;
    font-weight: 500;
    max-width: 800px;
}

.home-commit-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.home-commit-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.home-commit-img-wrapper {
    width: 100%;
}

.home-commit-img-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.home-commit-cont {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.home-commit-card-title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
}

.home-commit-card-desc {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #444444;
}


.home-commit-btn {
    padding: 10px 30px;
    border: 1px solid var(--dark-green);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 500;
    transition: all 0.3s ease;
}

.home-commit-btn:hover {
    background-color: var(--dark-green);
    color: #fff;
}



@media(max-width: 1550px) {
    .home-commit-img-wrapper img {
        height: 450px;
    }

    .home-commit-container {
        padding: 0px 100px;
    }
}

@media(min-width: 1300px) and (max-width: 1450px) {
    .home-commit-container {
        padding: 0px 100px;
    }

    .home-commit-heading {
        font-size: 2.5rem;
    }

    .home-commit-para {
        font-size: 1rem;
    }
}

/* home-commit-section-end   */








/* main-counter-section-start */
.main-counter-wrapper {
    padding: 80px 0px 100px 0px;
    font-family: main;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-counter-container {
    width: 100%;
    padding: 0px 200px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.main-counter-header-group {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

.main-counter-primary-heading {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    color: #000;
    text-align: right;
    width: 50%;
}

.main-counter-sub-description {
    font-size: 1.1rem;
    color: #444444;
    font-weight: 500;
    line-height: 1.6;
    max-width: 500px;
    width: 50%;
    margin: 0;
}

.main-counter-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.main-counter-stat-tile {
    padding: 60px 40px;
    border-radius: 14px;
    transition: transform 0.4s ease, background-color 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

/* Darkened Versions of your palette */
.main-counter-accent-green {
    color: #00221a;
    background-color: #fafafa;
}

.main-counter-accent-blue {
    color: #0d1a21;
    background-color: #fafafa;
}

.main-counter-accent-violet {
    color: #140d21;
    background-color: #fafafa;
}

.main-counter-accent-red {
    color: #210d0f;
    background-color: #fafafa;
}

.main-counter-stat-tile:hover {
    transform: translateY(-10px);
}

.main-counter-value-row {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.main-counter-symbol {
    font-size: 32px;
    margin-left: 4px;
    color: #000;
    opacity: 0.5;
}

.main-counter-caption {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #444444;
    margin: 0;
}

@media(max-width: 1550px) {
    .main-counter-stat-tile {
        min-height: 100px;
    }

    .main-counter-container {
        padding: 0px 100px;
    }
}

@media(min-width: 1300px) and (max-width: 1450px) {
    .main-counter-container {
        padding: 0px 100px;
    }

    .main-counter-primary-heading {
        font-size: 2.5rem;
        width: 60%;
    }

    .main-counter-sub-description {
        font-size: 1rem;
        width: 40%;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .main-counter-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .main-counter-wrapper {
        padding: 80px 20px;
    }

    .main-counter-stats-grid {
        grid-template-columns: 1fr;
    }

    .main-counter-stat-tile {
        min-height: 200px;
        padding: 40px;
    }
}

/* main-counter-section-end   */





/* main-cta-section-start */
.main-cta_wrapper {
    background-color: #141414;
    color: #ffffff;
    padding: 80px 0px;
    font-family: main;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.main-cta_container {
    width: 100%;
    padding: 0px 200px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.main-cta_top-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.main-cta_logo-icon {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    color: #141414;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.main-cta_tag-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.main-cta_tag-item {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.main-cta_tag-item:nth-child(1) {
    background-color: var(--yellow);
    color: #000;
}

.main-cta_tag-item:nth-child(2) {
    background-color: var(--blue);
    color: #000;
}

.main-cta_tag-item:nth-child(3) {
    background-color: var(--green);
    color: #000;
}

.main-cta_tag-item:nth-child(4) {
    background-color: var(--red);
    color: #000;
}

.main-cta_content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
    min-height: 500px;
}

.main-cta_main-heading {
    font-size: 5rem;
    font-weight: 500;
    margin: 0;
}

.main-cta_main-heading-about {
    font-size: 4rem;
    font-weight: 500;
    margin: 0;
}

.main-cta_heading-accent {
    background: linear-gradient(to right, #274046, #e6dada);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-cta_right-col {
    align-self: flex-start;
}

.main-cta_sub-label {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.main-cta_dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.main-cta_description {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.main-cta_text-highlight {
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 400;
}


.main-cta_button-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.main-cta_link-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: all 0.4s ease;
}


.main-cta_link-btn:hover {
    transform: scale(1.05);
}

.main-cta_pill-btn {
    border: 1px solid #ffffff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.main-cta_pill-btn:hover {
    background-color: #fff;
    color: #000;
}

@media(max-width: 1550px) {
    .main-cta_container {
        padding: 0px 100px;
    }
}

@media(max-width:720px){
    .main-cta_container {
        padding: 0px 0px;
    }
    
}

@media(min-width: 1300px) and (max-width: 1450px) {
    .main-cta_content-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .main-cta_main-heading {
        font-size: 4.3rem;
    }
}


@media (max-width: 992px) {
    .main-cta_content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-cta_button-group {
        justify-content: flex-start;
    }

    .main-cta_wrapper {
        padding: 60px 20px;
    }
}

@media(max-width:760px){
    .main-cta_top-row {
    display: none !important;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}
}

@media (max-width: 480px) {
    .main-cta_main-heading {
        font-size: 40px;
    }

    .main-cta_description {
        font-size: 17px;
    }
}

/* main-cta-section-end   */







/* main-footer-section-start */
.main-footer-section {
    position: relative;
    overflow: hidden;
    background: #1e1e1e;
    padding: 30px 7% 35px 7%;
    font-family: main;
    overflow: hidden;
}

.main-footer-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.main-footer-container {
    display: flex;
    justify-content: space-between;
    gap: 90px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-footer-brand-area {
    width: 38%;
}

.main-footer-brand-logo {
    width: 72px;
    /* margin-bottom: 24px; */
}

.main-footer-brand-title {
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.main-footer-brand-description {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.9;
    max-width: 480px;
}

.main-footer-legacy-badge {
    margin-top: 30px;
}

.main-footer-legacy-badge span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 22px;
    border-radius: 100px;
    color: #d4d4d4;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.main-footer-links-wrapper {
    width: 62%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.main-footer-links-column {
    min-width: 180px;
}

.main-footer-links-heading {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.main-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer-links-item {
    margin-bottom: 18px;
}

.main-footer-links-anchor,
.main-footer-links-text {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.35s ease;
}

.main-footer-links-anchor:hover {
    color: #ffffff;
    padding-left: 4px;
}

.main-footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    flex-wrap: wrap;
}

.main-footer-copyright-text,
.main-footer-credit-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.main-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-footer-bottom-anchor {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.main-footer-bottom-anchor:hover {
    color: #ffffff;
}

.main-footer-credit-anchor {
    color: #ffffff;
    text-decoration: none;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.main-footer-credit-anchor:hover {
    opacity: 0.7;
}

@media(max-width: 1100px) {

    .main-footer-container {
        flex-direction: column;
        gap: 70px;
    }

    .main-footer-brand-area {
        width: 100%;
    }

    .main-footer-links-wrapper {
        width: 100%;
        flex-wrap: wrap;
    }

}

@media(max-width: 768px) {

    .main-footer-section {
        padding: 80px 6% 30px;
    }

    .main-footer-brand-title {
        font-size: 30px;
    }

    .main-footer-links-wrapper {
        flex-direction: column;
        gap: 45px;
    }

    .main-footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}

/* main-footer-section-end */


/* wr-hero-section-start */
.wr-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(https://images.unsplash.com/photo-1708823339876-075e72f0efe8?q=80&w=2000);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    font-family: main;
}

.wr-hero-overlay {
    position: absolute;
    background-color: #000000c3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wr-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.wr-hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.wr-hero-cont-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.wr-hero-label {
    padding: 10px 10px;
    background-color: var(--dark-green);
    color: #ffff;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 0.7rem;
}

.wr-hero-heading {
    margin: 0;
    font-weight: 500;
    color: #fff;
    font-size: 3.2rem;
    text-align: center;
}

.wr-hero-para {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    color: #fff;
    line-height: 1.7;
    max-width: 850px;
    letter-spacing: 1px;
}

.wr-hero-cont-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wr-hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.wr-hero-btn-primary {
    padding: 15px 30px;
    background-color: #004232;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.wr-hero-btn-primary:hover {
    background-color: #00221a;
}

.wr-hero-btn-secondary {
    text-decoration: underline;
    font-size: 1rem;
    color: #C9FCDB;
}

/* wr-hero-section-end   */




/* wr-hook-section-start */
.wr-hook-section {
    padding: 100px 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    background: #141414;
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture for depth */
.wr-hook-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.wr-hook-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    position: relative;
    z-index: 1;
}

/* Rule row */
.wr-hook-rule-row {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.wr-hook-rule-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.wr-hook-rule-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, #ccc, transparent);
}

/* Headline block */
.wr-hook-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wr-hook-heading {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

.wr-hook-heading-2 {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

/* Accent highlight brush strokes */
.wr-hook-accent {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.wr-hook-accent::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0px;
    height: 90%;
    z-index: -1;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
}

.wr-hook-accent--gold::before {
    background: rgb(82, 142, 112);
}

.wr-hook-accent--sage::before {
    background: #b5a303;
}

/* Triggered by JS when heading animates in */
.wr-hook-accent--gold.wr-hook-accent--revealed::before,
.wr-hook-accent--sage.wr-hook-accent--revealed::before {
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bottom grid: side col + 2 paras */
.wr-hook-bottom {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Side accent column */
.wr-hook-side-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
}

.wr-hook-side-rule {
    width: 28px;
    height: 2px;
    background: #C5A355;
}

.wr-hook-side-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wr-hook-stat-num {
    font-family: main;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: -1px;
    line-height: 1;
}

.wr-hook-stat-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.5;
}

/* Paragraphs */
.wr-hook-para {
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: #dcdcdc;
    font-family: main;
    opacity: 0;
    transform: translateY(24px);
    text-align: justify;
}

/* Para 2 + button wrapper */
.wr-hook-para-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.wr-hook-btn {
    padding: 13px 36px;
    border: 1.5px solid #ffffff;
    text-decoration: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.wr-hook-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 1100px) {
    .wr-hook-container {
        padding: 0 48px;
    }

    .wr-hook-bottom {
        grid-template-columns: 140px 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .wr-hook-container {
        padding: 0 32px;
        gap: 40px;
    }

    .wr-hook-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .wr-hook-side-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .wr-hook-side-rule {
        width: 1px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .wr-hook-section {
        padding: 72px 0 72px;
    }

    .wr-hook-container {
        padding: 0 24px;
        gap: 32px;
    }

    .wr-hook-heading,
    .wr-hook-heading-2 {
        letter-spacing: -1px;
    }

    .wr-hook-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wr-hook-side-col {
        grid-column: auto;
    }
}

/* wr-hook-section-end */




/* wr-highlight-section-start */
.wr-highlight-section {
    padding: 80px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
}

.wr-highlight-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 100px;
}


.wr-highlight_card-item {
    padding: 0 12px;
    /* Gutter between cards */
    outline: none;
}

.wr-highlight_card-inner {
    position: relative;
    height: 480px;
    /* Vertical card look */
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    cursor: grab;
    transition: transform 0.3s ease;
}

.wr-highlight_card-inner:active {
    cursor: grabbing;
}

.wr-highlight_card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.wr-highlight_content-top {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.wr-highlight_heading {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.wr-highlight_para {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
}

.wr-highlight_arrow-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.wr-highlight_icon {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.wr-highlight_card-inner:hover .main-business_icon {
    transform: translateX(5px);
}

/* wr-highlight-section-end   */




.wr-showcase-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    font-family: main;
    padding: 120px 0px;
    min-height: 100vh;
}

.wr-showcase-head-wrap {
    padding: 0px 120px;
    margin-bottom: 80px;
}

.wr-showcase-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.5);
}

.wr-showcase-heading {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    max-width: 850px;
    color: #000000;
}

.wr-showcase-sticky-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 50px;
}

.wr-showcase-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    padding-left: 120px;
    will-change: transform;
}

.wr-showcase-card {
    width: 520px;
    flex-shrink: 0;
}

.wr-showcase-image-wrap {
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 24px;
}

.wr-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wr-showcase-content {
    display: flex;
    flex-direction: column;
}

.wr-showcase-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wr-showcase-count {
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.wr-showcase-top-row i {
    font-size: 22px;
    color: #000000;
}

.wr-showcase-card-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #000000;
}

.wr-showcase-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    max-width: 90%;
}

@media(max-width:991px) {

    .wr-showcase-head-wrap {
        padding: 0px 40px;
    }

    .wr-showcase-track {
        padding-left: 40px;
    }

    .wr-showcase-heading {
        font-size: 2.5rem;
    }

    .wr-showcase-card {
        width: 420px;
    }

    .wr-showcase-image-wrap {
        height: 540px;
    }

}

@media(max-width:768px) {

    .wr-showcase-section {
        padding: 80px 0px;
    }

    .wr-showcase-heading {
        font-size: 2rem;
    }

    .wr-showcase-card {
        width: 85vw;
    }

    .wr-showcase-image-wrap {
        height: 500px;
        border-radius: 22px;
    }

    .wr-showcase-card-title {
        font-size: 1.5rem;
    }

}










.wr-choose-section {
    background: #ffffff;
    padding: 60px 120px;
    font-family: main;
}

.wr-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.wr-choose-image-column {
    position: sticky;
    top: 40px;
}

.wr-choose-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    height: 850px;
}

.wr-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wr-choose-floating-tags {
    position: absolute;
    left: 30px;
    bottom: 30px;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 80%;
}

.wr-choose-tag {
    padding: 12px 18px;
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.wr-choose-label {
    display: inline-block;
    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(0, 0, 0, 0.5);
}

.wr-choose-heading {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 0px 0px 28px 0px;
    color: #000000;
}

.wr-choose-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 60px;
    max-width: 90%;
}

.wr-choose-feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.wr-choose-feature-item {
    display: flex;
    gap: 24px;

    padding: 30px;

    border-radius: 28px;

    background: #fafafa;

    border: 1px solid rgba(0, 0, 0, 0.06);

    transition: all 0.4s ease;
}

.wr-choose-feature-item:hover {
    transform: translateY(-5px);
    background: #f6f6f6;
}

.wr-choose-feature-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.35);
}

.wr-choose-feature-content {
    flex: 1;
}

.wr-choose-feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0px 0px 12px 0px;
    color: #000000;
}

.wr-choose-feature-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

@media(max-width:991px) {

    .wr-choose-section {
        padding: 90px 40px;
    }

    .wr-choose-container {
        grid-template-columns: 1fr;
    }

    .wr-choose-image-column {
        position: relative;
        top: unset;
    }

    .wr-choose-image-wrap {
        height: 650px;
    }

}

@media(max-width:768px) {

    .wr-choose-section {
        padding: 80px 24px;
    }

    .wr-choose-heading {
        font-size: 2rem;
    }

    .wr-choose-image-wrap {
        height: 500px;
        border-radius: 24px;
    }

    .wr-choose-feature-item {
        padding: 24px;
    }

    .wr-choose-feature-title {
        font-size: 1.2rem;
    }

}










.wr-testimonial-section {
    width: 100%;
    background: #ffffff;
    padding: 120px 0px;
    font-family: main;
    overflow: hidden;
}

.wr-testimonial-container {
    padding: 0px 120px;
}

.wr-testimonial-head-wrap {
    margin-bottom: 60px;
}

.wr-testimonial-label {
    display: inline-block;
    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(0, 0, 0, 0.5);
}

.wr-testimonial-heading {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    max-width: 700px;
    color: #000000;
}

.wr-testimonial-slider {
    margin: 0 -14px;
}

.wr-testimonial-slide {
    padding: 0 14px;
}

.wr-testimonial-card {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 36px;
    height: 75%;
}

.wr-testimonial-stars {
    display: flex;
    gap: 4px;

    margin-bottom: 24px;

    color: #ffbe0b;

    font-size: 18px;
}

.wr-testimonial-review {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.7);

    margin-bottom: 36px;
}

.wr-testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wr-testimonial-user-image {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
}

.wr-testimonial-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wr-testimonial-user-name {
    font-size: 18px;
    font-weight: 500;
    margin: 0px 0px 6px 0px;
    color: #000000;
}

.wr-testimonial-user-location {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

/* SLICK */
.wr-testimonial-slider .slick-list {
    overflow: visible;
}

.wr-testimonial-slider .slick-track {
    display: flex;
}

.wr-testimonial-slider .slick-slide {
    height: inherit !important;
}

/* DOTS */
.wr-testimonial-slider .slick-dots {
    bottom: -60px;
}

.wr-testimonial-slider .slick-dots li button:before {
    font-size: 10px;
    color: #000000;
    opacity: 0.25;
}

.wr-testimonial-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

@media(max-width:991px) {

    .wr-testimonial-container {
        padding: 0px 40px;
    }

    .wr-testimonial-heading {
        font-size: 2.5rem;
    }

}

@media(max-width:768px) {

    .wr-testimonial-section {
        padding: 80px 0px;
    }

    .wr-testimonial-container {
        padding: 0px 24px;
    }

    .wr-testimonial-heading {
        font-size: 2rem;
    }

    .wr-testimonial-card {
        padding: 28px;
    }

    .wr-testimonial-review {
        font-size: 15px;
    }

}














.wr-cta-section {
    padding: 60px 0px 100px 0px;
    background: #ffffff;
    font-family: main;
}

.wr-cta-container {
    position: relative;
    overflow: hidden;
    /* border-radius: 40px; */
    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.wr-cta-bg-wrap {
    position: absolute;
    inset: 0;
}

.wr-cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wr-cta-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.837));
}

.wr-cta-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wr-cta-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;

    margin-bottom: 36px;
}

.wr-cta-tag {
    padding: 12px 20px;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(20px);

    color: #ffffff;

    font-size: 13px;
    font-weight: 500;
}

.wr-cta-heading {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.05;
    margin: 0px 0px 28px 0px;

    color: #ffffff;
}

.wr-cta-description {
    font-size: 18px;
    line-height: 1.9;

    max-width: 760px;

    margin: 0 auto 42px auto;

    color: rgba(255, 255, 255, 0.78);
}

.wr-cta-button-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.wr-cta-primary-btn {
    padding: 18px 34px;

    border-radius: 100px;

    background: #ffffff;

    color: #000000;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.4s ease;
}

.wr-cta-primary-btn:hover {
    transform: translateY(-3px);
}

.wr-cta-secondary-btn {
    padding: 18px 34px;

    border-radius: 100px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.4s ease;
}

.wr-cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media(max-width:991px) {

    .wr-cta-section {
        padding: 90px 40px;
    }

    .wr-cta-heading {
        font-size: 3.2rem;
    }

    .wr-cta-container {
        min-height: 650px;
    }

}

@media(max-width:768px) {

    .wr-cta-section {
        padding: 80px 24px;
    }

    .wr-cta-container {
        border-radius: 28px;
    }

    .wr-cta-content {
        padding: 60px 24px;
    }

    .wr-cta-heading {
        font-size: 2.3rem;
    }

    .wr-cta-description {
        font-size: 16px;
    }

    .wr-cta-button-group {
        flex-direction: column;
        width: 100%;
    }

    .wr-cta-primary-btn,
    .wr-cta-secondary-btn {
        width: 100%;
        text-align: center;
    }

}












.home-wr-section {
    font-family: 'main', sans-serif;
    width: 100%;
    padding: 100px 0;
    box-sizing: border-box;
    background-color: #ffffff;
}

.home-wr-container {
    width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
}

/* Header Layout */
.home-wr-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    /* align-items: end; */
    margin-bottom: 80px;
}

.home-wr-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #888888;
}

.home-wr-heading {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.home-wr-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 32px;
}

/* Buttons */
.home-wr-button-wrapper {
    display: flex;
    gap: 16px;
}

.home-wr-btn-explore {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 36px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    border-radius: 50px;
}

.home-wr-btn-reserve {
    background-color: transparent;
    color: #1a1a1a;
    padding: 18px 36px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-wr-btn-explore:hover {
    background-color: #000000;
}

.home-wr-btn-reserve:hover {
    border-color: #1a1a1a;
    background-color: #fcfcfc;
}

/* Main Image and Overlay */
.home-wr-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 60px;
}

.home-wr-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-wr-overlay-card {
    position: absolute;
    bottom: 50px;
    left: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 48px;
    max-width: 420px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.home-wr-overlay-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: #f8f8f8;
    padding: 8px 14px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.home-wr-overlay-heading {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
}

/* Stats Row - Updated to 4 Columns */
.home-wr-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 40px; */
    /* padding-top: 50px; */
    border-top: 1px solid #f0f0f0;
}

.home-wr-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-wr-stat-value {
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.home-wr-stat-label {
    font-size: 15px;
    line-height: 1.4;
    color: #777777;
    max-width: 180px;
    text-align: center;
}

.home-wr-star-icon {
    color: #ccac00;
    /* Sophisticated gold */
    font-size: 30px;
}

/* Responsive */
@media (max-width: 1550px) {
    .home-wr-container {
        padding: 0 100px;
    }

    .home-wr-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 1100px) {
    .home-wr-stats-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .home-wr-container {
        padding: 0 50px;
    }
}



@media (max-width: 768px) {
    .home-wr-header-grid {
        display: block;
        /* or display: flex;
           flex-direction: column; */
        margin-bottom: 40px;
    }
}








/* about-hero-section-start */
.about-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: main;
    background-image: url(https://images.unsplash.com/photo-1462826303086-329426d1aef5?q=80&w=1470);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
}

.about-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-hero-cont {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-hero-heading {
    font-size: 3.3rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: #fff;
}

.about-hero-para {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 1000px;
    text-align: center;
    margin: 0;
    color: #fff;
    font-weight: 500;
}

.about-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.about-hero-btn-primary {
    padding: 15px 20px;
    text-decoration: none;
    color: #ffbe0b;
    border: 1px solid #ffbe0b;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
}

.about-hero-btn-primary:hover {
    background-color: #ffbe0b;
    color: #000;
}

.about-hero-btn-secondary {
    padding: 15px 40px;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
}

.about-hero-btn-secondary:hover {
    background-color: #000;
}

/* about-hero-section-end   */







/* abput-hook-section-start */
.about-hook-section {
    padding: 100px 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    background: #141414;
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture for depth */
.about-hook-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.about-hook-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    position: relative;
    z-index: 1;
}

/* Rule row */
.about-hook-rule-row {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.about-hook-rule-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.about-hook-rule-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, #ccc, transparent);
}

/* Headline block */
.about-hook-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-hook-heading {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

.about-hook-heading-2 {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

/* Accent highlight brush strokes */
.about-hook-accent {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.about-hook-accent::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0px;
    height: 90%;
    z-index: -1;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
}

.about-hook-accent--gold::before {
    background: #ffbe0b85;
}

.about-hook-accent--sage::before {
    background: #C0392B;
}

/* Triggered by JS when heading animates in */
.about-hook-accent--gold.about-hook-accent--revealed::before,
.about-hook-accent--sage.about-hook-accent--revealed::before {
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bottom grid: side col + 2 paras */
.about-hook-bottom {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Side accent column */
.about-hook-side-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
}

.about-hook-side-rule {
    width: 28px;
    height: 2px;
    background: #C5A355;
}

.about-hook-side-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-hook-stat-num {
    font-family: main;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: -1px;
    line-height: 1;
}

.about-hook-stat-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.5;
}

/* Paragraphs */
.about-hook-para {
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: #dcdcdc;
    font-family: main;
    opacity: 0;
    transform: translateY(24px);
    text-align: justify;
}

/* Para 2 + button wrapper */
.about-hook-para-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.about-hook-btn {
    padding: 13px 36px;
    border: 1.5px solid #ffffff;
    text-decoration: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.about-hook-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-hook-container {
        padding: 0 48px;
    }

    .about-hook-bottom {
        grid-template-columns: 140px 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .about-hook-container {
        padding: 0 32px;
        gap: 40px;
    }

    .about-hook-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .about-hook-side-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .about-hook-side-rule {
        width: 1px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .about-hook-section {
        padding: 72px 0 72px;
    }

    .about-hook-container {
        padding: 0 24px;
        gap: 32px;
    }

    .about-hook-heading,
    .about-hook-heading-2 {
        letter-spacing: -1px;
    }

    .about-hook-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-hook-side-col {
        grid-column: auto;
    }
}

/* about-hook-section-end */







/* amv-section-start */
.amv-section {
    /* background-color: #333; */
    padding: 80px 0px;
    position: relative;
    z-index: 10;
    font-family: main;
    background-image: url(https://images.unsplash.com/photo-1462899006636-339e08d1844e?q=80&w=1470);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.amv-container {
    padding: 0px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 50px;
}

.amv-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    padding: 50px;
    background-color: #fff;
    border-radius: 24px;
}

.amv-card:nth-child(1) {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.amv-card:nth-child(2) {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.amv-card-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.amv-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: #ffbe0b;
}

.amv-tag div {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50px;
}

.amv-card-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.amv-card-top img {
    width: 20%;
}

.amv-card-top h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.amv-card-top h3 span {
    color: #c0392b;
}

.amv-card-bottom {
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* amv-section-end   */










/* about-counter-section-start */
.about-counter-section {
    font-family: main;
    /* background-color: #f0f2f5; */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 100px;
}

.about-counter-card {
    /* background: #ffffff; */
    background-color: #f0f2f5;
    padding: 60px 64px;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 34px;
}

/* ─── Top Row ────────────────────────────────────────────── */
.about-counter-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
}

.about-counter-headline {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
}

.about-counter-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 40px;
}

.about-counter-description {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

.about-counter-cta {
    display: inline-block;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.about-counter-cta:hover {
    background: #333333;
}

/* ─── Divider ────────────────────────────────────────────── */
.about-counter-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 40px 0;
}

/* ─── Stats Row ──────────────────────────────────────────── */
.about-counter-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-counter-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-counter-stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888888;
}

.about-counter-stat-value {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    color: #111111;
    letter-spacing: -0.02em;
}

/* about-counter-section-end   */








/* about-cta-section-start */
/* .about-cta-section {
    font-family: main;
    background-color: #ffffff;
    padding: 200px 100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.about-cta-container{
    background-color: #fff1ad;
    padding: 100px;
}

.about-cta-top {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    margin-bottom: 80px;
}

.about-cta-eyebrow {
    font-size: 0.9rem;
    font-weight: 1000;
    letter-spacing: 0.04em;
    color: #000;
    margin: 0;
    padding-top: 8px;
}

.about-cta-content {
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 28px;
}

.about-cta-headline {
    font-family: main;
    font-size: 3rem;
    font-weight: 500;
    color: #000000;
    margin: 0;
}


.about-cta-body {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    color: #000;
    max-width: 620px;
    margin: 0;
}

.about-cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.about-cta-card {
    padding: 28px 28px 36px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-cta-card:last-child {
    border-right: none;
}

.about-cta-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.about-cta-card-number {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.04em;
}

.about-cta-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.about-cta-card-body {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    color: #000;
    margin: 0;
    flex: 1;
}

.about-cta-card-icon {
    margin-top: 36px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta-card-icon svg {
    width: 48px;
    height: 48px;
    fill: #000000;
    opacity: 0.9;
} */

/* about-cta-section-end   */










/* contact-hero-section-start */
.contact-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: main;
    background-image: url(https://images.unsplash.com/photo-1587560699334-bea93391dcef?q=80&w=1470);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
}

.contact-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.contact-hero-cont {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-hero-heading {
    font-size: 3.3rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    color: #fff;
}

.contact-hero-para {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 1000px;
    text-align: center;
    margin: 0;
    color: #fff;
    font-weight: 500;
}

.contact-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.contact-hero-btn-primary {
    padding: 15px 20px;
    text-decoration: none;
    color: #ffbe0b;
    border: 1px solid #ffbe0b;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
}

.contact-hero-btn-primary:hover {
    background-color: #ffbe0b;
    color: #000;
}

.contact-hero-btn-secondary {
    padding: 15px 40px;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    /* border-radius: 50px; */
    transition: all 0.3s ease;
}

.contact-hero-btn-secondary:hover {
    background-color: #000;
}

/* contact-hero-section-end   */





/* ═══════════════════════════════════════════════
       ██  INFO + FORM WRAPPER  ██
    ═══════════════════════════════════════════════ */
.contact-page-body {
    font-family: main;
    background-color: #F7F6F3;
    padding: 100px 80px;
}

.contact-page-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}

/* ═══════════════════════════════════════════════
       ██  INFO  ██
    ═══════════════════════════════════════════════ */
.contact-info-column {
    position: sticky;
    top: 40px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 16px 0;
}

.contact-info-heading {
    font-family: main;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    color: #141414;
    margin: 0 0 40px 0;
}

.contact-info-divider {
    border: none;
    border-top: 1px solid #E2E0DA;
    margin: 0 0 40px 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-item-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.contact-info-item-icon {
    width: 18px;
    height: 18px;
    color: #000000;
    flex-shrink: 0;
}

.contact-info-item-type {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555555;
}

.contact-info-item-value {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: #141414;
    margin: 0;
    padding-left: 28px;
}

.contact-info-item-value a {
    color: #141414;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-item-value a:hover {
    color: #000;
}

.contact-info-hours-badge {
    display: inline-block;
    margin-top: 40px;
    background: #000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 12px 20px;
    line-height: 1.6;
}

.contact-info-hours-day {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ═══════════════════════════════════════════════
       ██  FORM  ██
    ═══════════════════════════════════════════════ */
.contact-form-panel {
    background: #FFFFFF;
    padding: 56px 56px 60px;
    border: 1px solid #E2E0DA;
}

.contact-form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 14px 0;
}

.contact-form-heading {
    font-family: main;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    color: #141414;
    margin: 0 0 16px 0;
}

.contact-form-subheading {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
    color: #323232;
    margin: 0 0 48px 0;
    /* max-width: 480px; */
}

.contact-form-divider {
    border: none;
    border-top: 1px solid #E2E0DA;
    margin: 0 0 48px 0;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-field-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4A4A4A;
}

.contact-form-field-label span {
    color: #ffbe0b;
    margin-left: 2px;
}

.contact-form-input {
    font-family: main;
    font-size: 14px;
    font-weight: 400;
    color: #141414;
    background: #F7F6F3;
    border: 1px solid #E2E0DA;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
}

.contact-form-input::placeholder {
    color: #AAAAAA;
    font-weight: 300;
}

.contact-form-input:focus {
    border-color: #000;
    background: #FFFFFF;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.contact-form-submit-btn {
    font-family: main;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #000;
    border: none;
    padding: 18px 40px;
    cursor: pointer;
    transition: background 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-form-submit-btn:hover {
    background: #0f2219;
}

.contact-form-submit-note {
    font-size: 12px;
    font-weight: 300;
    color: #AAAAAA;
}

/* ═══════════════════════════════════════════════
       ██  LOADER  ██
    ═══════════════════════════════════════════════ */
.contact-form-loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.55);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}

.contact-form-loader-spinner {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(200, 169, 110, 0.25);
    border-top-color: #ffbe0b;
    border-radius: 50%;
    animation: contact-form-spin 0.75s linear infinite;
}

@keyframes contact-form-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ═══════════════════════════════════════════════
       ██  POPUP  ██
    ═══════════════════════════════════════════════ */
.contact-form-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.contact-form-popup-card {
    background: #FFFFFF;
    padding: 48px 52px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    border-top: 3px solid #ffbe0b;
}

.contact-form-popup-message {
    font-family: main;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #141414;
    margin: 0 0 32px 0;
}

.contact-form-popup-close {
    font-family: main;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #000;
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form-popup-close:hover {
    background: #0f2219;
}

/* ═══════════════════════════════════════════════
       ██  RESPONSIVE  ██
    ═══════════════════════════════════════════════ */
@media (max-width: 900px) {

    .contact-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-body {
        padding: 64px 32px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .contact-info-column {
        position: static;
    }

    .contact-form-panel {
        padding: 40px 32px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
}






/* business-hero-section-start */
.business-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: start;
    background-image: url(https://images.unsplash.com/photo-1431540015161-0bf868a2d407?q=80&w=1470);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.business-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005a;
}

.business-hero-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.bussiness-heading {
    font-family: main;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    padding-left: 200px;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.bussiness-heading span {
    color: #ffbe0b;
}

/* business-hero-section-end   */








/* business-section-start */
.business-section {
    /* background-color: #333; */
    padding: 80px 0px;
    position: relative;
    z-index: 10;
    font-family: main;
    /* background-image: url(https://images.unsplash.com/photo-1462899006636-339e08d1844e?q=80&w=1470);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

.business-container {
    padding: 0px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 50px;
}

.business-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 400px;
    padding: 50px;
    background-color: #f0f2f5;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

/* .business-card:nth-child(1) {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.business-card:nth-child(2) {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
} */

.business-card-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.business-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: #ffbe0b;
}

.business-tag div {
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50px;
}

.business-card-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.business-card-top img {
    width: 20%;
    opacity: 0.5;
}

.business-card-top h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.business-card-top h3 span {
    color: #c0392b;
}

.business-card-bottom p {
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.business-btn {
    padding: 10px 30px;
    text-decoration: none;
    color: #fff;
    background-color: #555;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.business-btn:hover {
    background-color: #000;
}

/* business-section-end   */











/* sc-creation-start */
.sc-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-family: main;
}

/* Video Background */
.sc-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.sc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

/* Content */
.sc-hero-content {
    position: relative;
    z-index: 3;
    /* max-width: 700px; */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sc-hero-label {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ccbe7a;
    /* Using your established gold or use #1a2a3a if preferred */
}

.sc-hero-heading {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    text-align: center;
}

.sc-hero-paragraph {
    font-size: 19px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    text-align: center;
}

/* Buttons */
.sc-hero-buttons {
    display: flex;
    gap: 20px;
}

.sc-hero-btn-primary {
    background-color: #1a2a3a;
    /* Premium Navy Accent */
    color: #ffffff;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #1a2a3a;
    transition: all 0.3s ease;
}

.sc-hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.sc-hero-btn-primary:hover {
    background-color: #2c4a66;
    border-color: #2c4a66;
}

.sc-hero-btn-secondary:hover {
    background-color: #ffffff;
    color: #1a2a3a;
}

/* Responsive */
@media (max-width: 768px) {
    .sc-hero-section {
        padding-left: 30px;
    }

    .sc-hero-heading {
        font-size: 3.2rem;
    }

    .sc-hero-buttons {
        flex-direction: column;
    }
}

/* sc-creation-end   */




/* sc-hook-section-start */
.sc-hook-section {
    padding: 100px 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    background: #141414;
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture for depth */
.sc-hook-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.sc-hook-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    position: relative;
    z-index: 1;
}

/* Rule row */
.sc-hook-rule-row {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.sc-hook-rule-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.sc-hook-rule-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, #ccc, transparent);
}

/* Headline block */
.sc-hook-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sc-hook-heading {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

.sc-hook-heading-2 {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

/* Accent highlight brush strokes */
.sc-hook-accent {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.sc-hook-accent::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0px;
    height: 90%;
    z-index: -1;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
}

.sc-hook-accent--gold::before {
    background: #ffbe0b9c;
}

.sc-hook-accent--sage::before {
    background: rgb(28, 75, 111);
}

/* Triggered by JS when heading animates in */
.sc-hook-accent--gold.sc-hook-accent--revealed::before,
.sc-hook-accent--sage.sc-hook-accent--revealed::before {
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bottom grid: side col + 2 paras */
.sc-hook-bottom {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Side accent column */
.sc-hook-side-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
}

.sc-hook-side-rule {
    width: 28px;
    height: 2px;
    background: #C5A355;
}

.sc-hook-side-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-hook-stat-num {
    font-family: main;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: -1px;
    line-height: 1;
}

.sc-hook-stat-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.5;
}

/* Paragraphs */
.sc-hook-para {
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: #dcdcdc;
    font-family: main;
    opacity: 0;
    transform: translateY(24px);
    text-align: justify;
}

/* Para 2 + button wrapper */
.sc-hook-para-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.sc-hook-btn {
    padding: 13px 36px;
    border: 1.5px solid #ffffff;
    text-decoration: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.sc-hook-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 1100px) {
    .sc-hook-container {
        padding: 0 48px;
    }

    .sc-hook-bottom {
        grid-template-columns: 140px 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .sc-hook-container {
        padding: 0 32px;
        gap: 40px;
    }

    .sc-hook-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .sc-hook-side-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .sc-hook-side-rule {
        width: 1px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .sc-hook-section {
        padding: 72px 0 72px;
    }

    .sc-hook-container {
        padding: 0 24px;
        gap: 32px;
    }

    .sc-hook-heading,
    .sc-hook-heading-2 {
        letter-spacing: -1px;
    }

    .sc-hook-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sc-hook-side-col {
        grid-column: auto;
    }
}

/* sc-hook-section-end */




/* sc-property-section-start */
.sc-property-showcase {
    width: 100%;
    padding: 100px 0;
    /* Vertical padding */
    box-sizing: border-box;
    font-family: main;
}

.sc-property-header {
    padding: 0 100px;
    margin-bottom: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sc-property-heading {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.sc-property-para {
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    font-size: 1.5rem;
    color: #444444;
    max-width: 1000px;

}

/* Immersive Carousel Container */
.sc-property-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 95vh;
    /* Massive immersive feel */
    min-height: 600px;
    overflow: hidden;
}

/* Slick Slide Overrides */
.sc-property-slide {
    position: relative;
    height: 85vh;
    min-height: 600px;
    width: 100vw;
    outline: none;
}

.sc-property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Inner Container for aligning the card using the 200px padding rule */
.sc-property-card-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 200px;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass through empty areas */
}

/* The Premium #1a2a3a Glass Card (Positioned bottom right) */
.sc-property-card {
    position: absolute;
    bottom: 5%;
    right: 3%;
    /* Aligns perfectly with the padding */
    width: 500px;
    background: rgba(26, 42, 58, 0.85);
    /* #1a2a3a with opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: auto;
    /* Re-enable clicks for this card */
    box-sizing: border-box;
    border-radius: 24px;
}

.sc-property-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0aec0;
    display: block;
    margin-bottom: 16px;
}

.sc-property-name {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.sc-property-meta {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.sc-property-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 48px 0;
    font-weight: 300;
}

/* Card Footer: Counter and Arrows */
.sc-property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
}

.sc-property-counter {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
}

.sc-property-controls {
    display: flex;
    gap: 16px;
}

/* Elegant Thin Circle Arrows matching the image */
.sc-property-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sc-property-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.sc-property-btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Remove default slick arrows */
.slick-prev,
.slick-next {
    display: none !important;
}

@media(max-width: 1550px) {
    .sc-property-heading {
        font-size: 2.8rem;
    }
}

/* Responsive scaling */
@media (max-width: 1200px) {

    .sc-property-header,
    .sc-property-card-container {
        padding: 0 100px;
    }

    .sc-property-card {
        right: 100px;
        width: 450px;
    }
}

@media (max-width: 768px) {

    .sc-property-header,
    .sc-property-card-container {
        padding: 0 24px;
    }

    .sc-property-card {
        right: 24px;
        left: 24px;
        bottom: 24px;
        width: auto;
        padding: 32px;
    }

    .sc-property-heading {
        font-size: 2.5rem;
    }
}

/* sc-property-section-end   */




/* sc-invest-section-start */
.sc-invest-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: main;
}

/* Strict Container Constraints (No Max-Width) */
.sc-invest-container {
    width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
}

/* Header Architecture */
.sc-invest-header {
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* max-width: 900px; */
}

.sc-invest-heading {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.sc-invest-para {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #5a6573;
    margin: 0;
    max-width: 600px;
}

/* Institutional 3-Column Display Grid */
.sc-invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Premium #1a2a3a Glassmorphism Cards */
.sc-invest-card {
    background: rgba(26, 42, 58, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: 开;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.sc-invest-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Top Pill Badges matching Reference Image */
.sc-invest-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.sc-invest-badge {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Metric Typographic Hierarchy */
.sc-invest-metric {
    font-size: 4.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.sc-invest-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.sc-invest-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #a0aec0;
    margin: 0;
    font-weight: 300;
    max-width: 90%;
    z-index: 2;
}

/* Embedded Dynamic Canvas Graphics Area */
.sc-invest-graph-zone {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 160px;
    pointer-events: none;
    z-index: 1;
}

.sc-invest-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Media Viewport Adaptations */
@media (max-width: 1600px) {
    .sc-invest-container {
        padding: 0 100px;
    }

    .sc-invest-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .sc-invest-container {
        padding: 0 50px;
    }

    .sc-invest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sc-invest-container {
        padding: 0 24px;
    }

    .sc-invest-grid {
        grid-template-columns: 1fr;
    }

    .sc-invest-heading {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .sc-invest-card {
        height: 440px;
        padding: 32px;
    }

    

}


@media (max-width:1024px){
    .sc-invest-section{
        padding: 0px;
    }
    .sc-invest-header {
        margin-bottom: 70px;
        display: block !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}
/* sc-invest-section-end   */



/* sc-cta-section-start */
.sc-cta-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a2a3a;
    font-family: main;
}

/* High-End Background Asset Layer */
.sc-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1471039497385-b6d6ba609f9c?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium depth */
    z-index: 1;
}

/* Multi-stage Luxury Vignette Overlay */
.sc-cta-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.65));
    z-index: 2;
}

/* Inner Structural Content Area alignment */
.sc-cta-container {
    position: relative;
    width: 100%;
    padding: 0 200px;
    /* Standardized layout rule constraints */
    box-sizing: border-box;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Reference Matching Tag Layout Row */
.sc-cta-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.sc-cta-badge {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

/* Large Centered Micro-editorial Typography */
.sc-cta-heading {
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    max-width: 1000px;
}

/* Refined Paragraph Context Block */
.sc-cta-para {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(241, 245, 249, 0.85);
    max-width: 760px;
    margin: 0 0 48px 0;
    font-weight: 600;
}

/* Action Row Segment */
.sc-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Premium Interface Controls */
.sc-cta-btn {
    font-family: 'main', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 38px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Solid Light Primary Trigger */
.sc-cta-btn-primary {
    background-color: #ffffff;
    color: #1a2a3a;
    border: 1px solid #ffffff;
}

.sc-cta-btn-primary:hover {
    transform: scale(1.03);
    background-color: #f8fafc;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

/* Glassmorphic Secondary Route Trigger */
.sc-cta-btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sc-cta-btn-secondary:hover {
    transform: scale(1.03);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Screen Responsive Configurations */
@media (max-width: 1400px) {
    .sc-cta-container {
        padding: 0 100px;
    }

    .sc-cta-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .sc-cta-container {
        padding: 0 24px;
    }

    .sc-cta-heading {
        font-size: 2.5rem;
    }

    .sc-cta-para {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .sc-cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .sc-cta-btn {
        width: 100%;
        padding: 16px 28px;
    }
}

/* sc-cta-section-end   */





/* pharma-hero-section-start */
.pharma-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-family: main;
}

/* Video Background */
.pharma-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.pharma-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.448) 0%, rgba(0, 0, 0, 0.448) 100%);
    z-index: 2;
}

/* Content */
.pharma-hero-content {
    position: relative;
    z-index: 3;
    /* max-width: 700px; */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.pharma-hero-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.pharma-hero-tag-wrapper div {
    width: 3px;
    height: 3px;
    background: #ffffff85;
}

.pharma-hero-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #ffffff;
    padding: 5px 10px;
    border: 1px solid #ffffff62;
    background-color: #ffffff02;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    /* Using your established gold or use #1a2a3a if preferred */
}

.pharma-hero-heading {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.pharma-hero-paragraph {
    font-size: 19px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 900px;
    text-align: center;
}

/* Buttons */
.pharma-hero-buttons {
    display: flex;
    gap: 20px;
}

.pharma-hero-btn-primary {
    background-color: #1a3a29;
    /* Premium Navy Accent */
    color: #ffffff;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #1a3a29;
    transition: all 0.3s ease;
}

.pharma-hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.pharma-hero-btn-primary:hover {
    background-color: #2c6643;
    border-color: #2c6643;
}

.pharma-hero-btn-secondary:hover {
    background-color: #ffffff;
    color: #1a2a3a;
}

/* Responsive */
@media (max-width: 768px) {
    .pharma-hero-section {
        /* padding-left: 10px;
        padding-right: 10px; */
        /* padding: 0 24px; */
        margin: auto;
    }
    .pharma-hero-content{
        margin-top: 20px;

    }
    .pharma-hero-heading {
        font-size: 3.2rem;
    }

    .pharma-hero-buttons {
        flex-direction: column;
    }
    .pharma-hero-content{
        margin-top: 40px;
    }
}

/* pharma-hero-section-end   */









.pharma-why {
    padding: 140px 0;
    font-family: main;
    background: #f8f9f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pharma-why-container {
    width: 100%;
    padding: 0px 100px;
    margin: auto;
}

.pharma-why-heading {
    max-width: 760px;
    margin: 0 auto 80px;
    text-align: center;
}

.pharma-why-tag {
    display: inline-flex;
    padding: 12px 22px;
    border-radius: 100px;
    background: #edf4ef;
    color: #1a3a29;
    letter-spacing: 2px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.pharma-why-title {
    font-size: 4.2rem;
    line-height: 1.05;
    color: #111;
    margin-bottom: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.pharma-why-description {
    font-size: 1.1rem;
    color: #6a6a6a;
    line-height: 1.9;
    max-width: 1000px;
    margin: auto;
    font-weight: 600;
}

.pharma-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.pharma-why-card {
    position: relative;
    background: white;
    border: 1px solid #ececec;
    border-radius: 34px;
    padding: 30px;
    overflow: hidden;
    transition: .45s;
}

.pharma-why-card-overlay {
    width: 100%;
    height: 100%;
    background-color: #000000a7;
    top: 0;
    left: 0;
    position: absolute;
}

.pharma-why-card:nth-child(1) {
    background-image: url(https://images.unsplash.com/photo-1698466632366-09fa1d925de6?q=80&w=735);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pharma-why-card:nth-child(2) {
    background-image: url(https://images.unsplash.com/photo-1642055513912-43d865ccc91e?q=80&w=735);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pharma-why-card:nth-child(3) {
    background-image: url(https://images.unsplash.com/photo-1748404493914-c9443dac6234?q=80&w=687);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pharma-why-card:nth-child(4) {
    background-image: url(https://images.unsplash.com/photo-1593538312756-4e01c72f9bd1?q=80&w=687);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pharma-why-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(26, 58, 41, .035);
    right: -120px;
    top: -120px;
    transition: .6s;
}

.pharma-why-card:hover {
    transform: translateY(-10px);
    border-color: #1a3a29;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .06);
}

.pharma-why-card:hover::before {
    transform: scale(1.3);
}

.pharma-why-number {
    font-size: 5rem;
    font-weight: 700;
    color: #eef1ef;
    line-height: 1;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
}

.pharma-why-card i {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #1a3a29;
    color: white;
    font-size: 30px;
    margin-bottom: 35px;
    position: relative;
    z-index: 10;
}

.pharma-why-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.pharma-why-card p {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.9;
    position: relative;
    z-index: 10;
}

@media(max-width:900px) {
    .pharma-why-grid {
        grid-template-columns: 1fr;
    }

    .pharma-why-title {
        font-size: 3rem;
    }
}

@media(max-width:600px) {
    .pharma-why {
        padding: 90px 0;
    }

    .pharma-why-title {
        font-size: 2.3rem;
    }

    .pharma-why-card {
        padding: 35px;
    }
}





.pharma-ecosystem {
    padding: 140px 0;
    font-family: main;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pharma-ecosystem-container {
    width: 100%;
    padding: 0px 100px;
    margin: auto;
}

.pharma-ecosystem-heading {
    text-align: center;
    margin-bottom: 90px;
}

.pharma-ecosystem-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 100px;
    background: #edf4ef;
    color: #1a3a29;
    font-size: .85rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 28px;
}

.pharma-ecosystem-title {
    font-size: 4rem;
    line-height: 1.08;
    color: #111;
    margin-bottom: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.pharma-ecosystem-description {
    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.pharma-ecosystem-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.pharma-ecosystem-step {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: .4s;
}

.pharma-ecosystem-step:hover {
    transform: translateY(-10px);
    border-color: #1a3a29;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
}

/* .pharma-ecosystem-highlight {
    background: #ace9c1;
} */

.pharma-ecosystem-highlight h3 {
    color: #fff;
}

.pharma-ecosystem-highlight p {
    color: rgba(255, 255, 255, .75);
}

/* .pharma-ecosystem-highlight .pharma-ecosystem-icon {
    background: rgba(255, 255, 255, .12);
    color: #fff;
} */

.pharma-ecosystem-icon {
    width: 82px;
    height: 82px;
    margin: auto;
    border-radius: 24px;
    background: #edf4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a29;
    font-size: 34px;
    margin-bottom: 28px;
}

.pharma-ecosystem-step h3 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 15px;
}

.pharma-ecosystem-step p {
    color: #666;
    line-height: 1.8;
    font-size: .95rem;
}

.pharma-ecosystem-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, #1a3a29, #d9e5dd);
    position: relative;
}

.pharma-ecosystem-line::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a3a29;
}

@media(max-width:1200px) {
    .pharma-ecosystem-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pharma-ecosystem-line {
        width: 2px;
        height: 50px;
        margin: auto;
        background: linear-gradient(to bottom, #1a3a29, #d9e5dd);
    }

    .pharma-ecosystem-line::after {
        right: 50%;
        top: auto;
        bottom: -2px;
        transform: translateX(50%);
    }
}

@media(max-width:768px) {
    .pharma-ecosystem {
        padding: 90px 0;
    }

    .pharma-ecosystem-title {
        font-size: 2.6rem;
    }
}










.pharma-market {
    padding: 80px 0;
    font-family: main;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(https://images.unsplash.com/photo-1745420052704-f70b1d30c8b7?q=80&w=1470);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.pharma-market-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000007c;
}

.pharma-market-container {
    padding: 0px 200px;
    position: relative;
    z-index: 10;
}

.pharma-market-heading {
    margin-bottom: 50px;
    text-align: center;
}

.pharma-market-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #edf4ef;
    color: #1a3a29;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.pharma-market-title {
    font-size: 4rem;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    margin-top: 10px;
}

.pharma-market-description {
    max-width: 1050px;
    margin: auto;
    line-height: 1.9;
    color: #e7e7e7;
    font-weight: 600;
}

.pharma-market-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

.pharma-market-column {
    position: relative;
}

.pharma-market-column:first-child {
    padding-right: 35px;
    border-right: 1px solid #e7e7e7;
}

.pharma-market-column-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
}

.pharma-market-column-header span {
    width: 45px;
    height: 2px;
    background: #C9FCDB;
}

.pharma-market-column-header h3 {
    font-size: 2rem;
    color: #fff;
}

.pharma-market-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pharma-market-item {
    display: flex;
    gap: 22px;
    background-color: #00221a;
    border-radius: 14px;
    padding: 30px;
}

.pharma-market-check {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: #b8d9c4;
    color: #00221a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.pharma-market-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
    margin-top: 0px;
}

.pharma-market-item p {
    color: #AAAAAA;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 0px;
}

.pharma-market-highlight {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pharma-market-highlight-item {
    padding: 30px;
    background: white;
    border-radius: 24px;
    border: 1px solid #ececec;
    transition: .35s;
}

.pharma-market-highlight-item:hover {
    transform: translateX(10px);
    border-color: #1a3a29;
}

.pharma-market-highlight-item small {
    display: inline-block;
    margin-bottom: 15px;
    color: #1a3a29;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pharma-market-highlight-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #111;
}

.pharma-market-highlight-item p {
    line-height: 1.8;
    color: #666;
}

@media(max-width:991px) {
    .pharma-market-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pharma-market-column:first-child {
        border-right: none;
        border-bottom: 1px solid #ececec;
        padding-right: 0;
        padding-bottom: 50px;
    }
}

@media(max-width:768px) {
    .pharma-market {
        padding: 90px 0;
    }

    .pharma-market-title {
        font-size: 2.6rem;
    }
}









/* pharma-invest-section-start */
.pharma-invest-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f0f7f4;
    box-sizing: border-box;
    font-family: main;
}

.pharma-invest-container {
    width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
}

.pharma-invest-header {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
}

.pharma-invest-heading {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.15;
    color: #0d2b1e;
    width: 50%;
    flex-shrink: 0;
    font-family: main;
}

.pharma-invest-para {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a6b5c;
    margin: 0;
    padding-top: 8px;
    font-family: main;
    width: 50%;
    font-weight: 600;
}

.pharma-invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Cards */
.pharma-invest-card {
    background: #0d2b1e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 36px 36px 0 36px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 460px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease;
    font-family: main;
}

.pharma-invest-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.16);
}

/* Subtle inner highlight top edge */
.pharma-invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.pharma-invest-badges {
    display: flex;
    gap: 7px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pharma-invest-badge {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(160, 220, 190, 0.85);
    background: rgba(160, 220, 190, 0.1);
    border: 1px solid rgba(160, 220, 190, 0.2);
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: main;
}

.pharma-invest-metric {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    font-family: main;
}

.pharma-invest-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-family: main;
}

.pharma-invest-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(160, 200, 180, 0.6);
    margin: 0;
    font-weight: 400;
    font-family: main;
}

.pharma-invest-graph-zone {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.pharma-invest-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1600px) {
    .pharma-invest-container {
        padding: 0 100px;
    }

    .pharma-invest-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 1200px) {
    .pharma-invest-container {
        padding: 0 50px;
    }

    .pharma-invest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pharma-invest-header {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pharma-invest-container {
        padding: 0 24px;
    }

    .pharma-invest-grid {
        grid-template-columns: 1fr;
    }

    .pharma-invest-heading {
        font-size: 2.2rem;
    }

    .pharma-invest-card {
        height: 420px;
        padding: 28px 28px 0 28px;
    }
}

/* pharma-invest-section-end */




/* pharma-cta-section-start */
.pharma-cta-section {
    position: relative;
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    font-family: main;
    background: #061424;
}

/* ── LEFT IMAGE HALF ── */
.pharma-cta-image-half {
    position: relative;
    width: 52%;
    flex-shrink: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.pharma-cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.55) brightness(0.7);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.pharma-cta-section:hover .pharma-cta-bg-img {
    transform: scale(1.0);
}

.pharma-cta-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 20, 36, 0.78) 0%, rgba(6, 20, 36, 0.35) 60%, transparent 100%),
        linear-gradient(to right, rgba(6, 20, 36, 0.6) 0%, transparent 70%),
        linear-gradient(to top, rgba(6, 20, 36, 0.85) 0%, transparent 50%);
    z-index: 1;
}

.pharma-cta-image-content {
    position: relative;
    z-index: 2;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px 48px 60px 64px;
}

.pharma-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: main;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 236, 227, 0.55);
}

.pharma-cta-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2dd4a0;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(45, 212, 160, 0.7);
}

.pharma-cta-image-stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pharma-cta-stat-number {
    font-family: main;
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    font-weight: 700;
    color: #f0ece3;
    letter-spacing: -2px;
    line-height: 1;
}

.pharma-cta-stat-desc {
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(45, 212, 160, 0.85);
    line-height: 1.6;
}

/* Thin teal accent bar along the diagonal edge */
.pharma-cta-diagonal-edge {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #2dd4a0 35%, #2dd4a0 65%, transparent 100%);
    z-index: 3;
    opacity: 0.6;
    transform: skewX(-8deg) translateX(1px);
}

/* ── RIGHT PANEL ── */
.pharma-cta-panel {
    flex: 1;
    background: #061424;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 72px 60px 60px;
    position: relative;
}

/* Subtle teal glow bleed from left edge */
.pharma-cta-panel::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -80px;
    width: 200px;
    height: 60%;
    background: radial-gradient(ellipse at left center, rgba(45, 212, 160, 0.07), transparent 70%);
    pointer-events: none;
}

/* Dot grid texture */
.pharma-cta-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.pharma-cta-panel-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 600px;
    width: 100%;
}

.pharma-cta-panel-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pharma-cta-kicker {
    font-family: main;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #2dd4a0;
    margin: 0;
}

.pharma-cta-heading {
    font-family: main;
    font-size: clamp(2.2rem, 3.2vw, 3.4rem);
    font-weight: 600;
    color: #f0ece3;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.pharma-cta-heading-accent {
    color: #2dd4a0;
    position: relative;
    display: inline-block;
}

/* Underline accent beneath CAGR number */
.pharma-cta-heading-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2dd4a0;
    opacity: 0.45;
    border-radius: 2px;
}

.pharma-cta-descriptor {
    font-family: main;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(240, 236, 227, 0.48);
    margin: 0;
    font-weight: 400;
}

/* ── ACTIONS ── */
.pharma-cta-actions {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.pharma-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #2dd4a0;
    color: #061424;
    font-family: main;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid #2dd4a0;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.pharma-cta-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.pharma-cta-btn-primary:hover::before {
    transform: translateX(0);
}

.pharma-cta-btn-primary:hover {
    box-shadow: 0 0 28px rgba(45, 212, 160, 0.35);
}

.pharma-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: transparent;
    color: rgba(240, 236, 227, 0.65);
    font-family: main;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 6px;
    border: 1.5px solid rgba(240, 236, 227, 0.15);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.pharma-cta-btn-secondary:hover {
    border-color: rgba(240, 236, 227, 0.38);
    color: #f0ece3;
}

/* ── TRUST ROW ── */
.pharma-cta-trust-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(240, 236, 227, 0.08);
}

.pharma-cta-trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.pharma-cta-trust-num {
    font-family: main;
    font-size: 1.45rem;
    font-weight: 700;
    color: #f0ece3;
    letter-spacing: -0.5px;
    line-height: 1;
}

.pharma-cta-trust-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(240, 236, 227, 0.35);
}

.pharma-cta-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(240, 236, 227, 0.1);
    margin: 0 24px;
    flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .pharma-cta-section {
        flex-direction: column;
        min-height: auto;
    }

    .pharma-cta-image-half {
        width: 100%;
        height: 340px;
        clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    }

    .pharma-cta-diagonal-edge {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        transform: none;
        background: linear-gradient(to right, transparent, #2dd4a0 35%, #2dd4a0 65%, transparent);
    }

    .pharma-cta-image-content {
        padding: 40px 40px 48px;
    }

    .pharma-cta-panel {
        padding: 56px 40px;
    }

    .pharma-cta-panel-inner {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .pharma-cta-image-half {
        height: 280px;
    }

    .pharma-cta-image-content {
        padding: 28px 24px 40px;
    }

    .pharma-cta-panel {
        padding: 48px 24px;
    }

    .pharma-cta-panel-inner {
        gap: 36px;
    }

    .pharma-cta-trust-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pharma-cta-trust-divider {
        display: none;
    }

    .pharma-cta-trust-item {
        flex: 0 0 calc(50% - 10px);
    }

    .pharma-cta-actions {
        width: 100%;
    }

    .pharma-cta-btn-primary,
    .pharma-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* pharma-cta-section-end */














/* lf-hero-section-start */
.lf-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/banner/flims-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    font-family: main;
    /* Fallback */
}

/* Overlay for text readability */
.lf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

/* Content Container */
.lf-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
}

.lf-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ccbe7a;
    /* Darker version of #fff1ad */
    margin-bottom: 24px;
}

.lf-hero-heading {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.lf-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #dddddd;
    margin: 32px auto 48px auto;
    max-width: 700px;
}

/* Buttons */
.lf-hero-button-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.lf-hero-btn-primary {
    background-color: #ccbe7a;
    color: #1a1a1a;
    padding: 18px 36px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.lf-hero-btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 18px 36px;
    border: 1px solid #ccbe7a;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lf-hero-btn-primary:hover {
    background-color: #bfae62;
    transform: translateY(-2px);
}

.lf-hero-btn-secondary:hover {
    background-color: #ccbe7a;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lf-hero-heading {
        font-size: 2.5rem;
    }

    .lf-hero-button-wrapper {
        flex-direction: column;
    }

    .lf-hero-btn-primary,
    .lf-hero-btn-secondary {
        width: 80%;
        justify-content: center;
    }
}

/* lf-hero-section-end   */







/* lf-hook-section-start */
.lf-hook-section {
    padding: 100px 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    background: #141414;
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture for depth */
.lf-hook-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.lf-hook-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    position: relative;
    z-index: 1;
}

/* Rule row */
.lf-hook-rule-row {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.lf-hook-rule-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.lf-hook-rule-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, #ccc, transparent);
}

/* Headline block */
.lf-hook-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lf-hook-heading {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

.lf-hook-heading-2 {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

/* Accent highlight brush strokes */
.lf-hook-accent {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.lf-hook-accent::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0px;
    height: 90%;
    z-index: -1;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
}

.lf-hook-accent--gold::before {
    background: #ffbe0b85;
}

.lf-hook-accent--sage::before {
    background: #2c6643;
}

/* Triggered by JS when heading animates in */
.lf-hook-accent--gold.lf-hook-accent--revealed::before,
.lf-hook-accent--sage.lf-hook-accent--revealed::before {
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bottom grid: side col + 2 paras */
.lf-hook-bottom {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Side accent column */
.lf-hook-side-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
}

.lf-hook-side-rule {
    width: 28px;
    height: 2px;
    background: #C5A355;
}

.lf-hook-side-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lf-hook-stat-num {
    font-family: main;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: -1px;
    line-height: 1;
}

.lf-hook-stat-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.5;
}

/* Paragraphs */
.lf-hook-para {
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: #dcdcdc;
    font-family: main;
    opacity: 0;
    transform: translateY(24px);
    text-align: justify;
}

/* Para 2 + button wrapper */
.lf-hook-para-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.lf-hook-btn {
    padding: 13px 36px;
    border: 1.5px solid #ffffff;
    text-decoration: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.lf-hook-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 1100px) {
    .lf-hook-container {
        padding: 0 48px;
    }

    .lf-hook-bottom {
        grid-template-columns: 140px 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .lf-hook-container {
        padding: 0 32px;
        gap: 40px;
    }

    .lf-hook-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .lf-hook-side-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .lf-hook-side-rule {
        width: 1px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .lf-hook-section {
        padding: 72px 0 72px;
    }

    .lf-hook-container {
        padding: 0 24px;
        gap: 32px;
    }

    .lf-hook-heading,
    .lf-hook-heading-2 {
        letter-spacing: -1px;
    }

    .lf-hook-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lf-hook-side-col {
        grid-column: auto;
    }
}

/* lf-hook-section-end */




/* lf-pillar-section-start */
.lf-pillars-section {
    width: 100%;
    padding: 120px 0;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: main;
}

.lf-pillars-container {
    width: 100%;
    padding: 0 150px;
    box-sizing: border-box;
}

/* Section Header */
.lf-pillars-header {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-pillars-heading {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    color: #000000;
}

/* Grid Layout */
.lf-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

/* Individual Card */
.lf-pillars-card {
    display: flex;
    flex-direction: column;
    group: hover;
}

.lf-pillars-image-wrapper {
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 32px;
    background-color: #f4f4f4;
    border-radius: 16px;
}

.lf-pillars-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.lf-pillars-card:hover .lf-pillars-image {
    transform: scale(1.05);
}

.lf-pillars-content {
    display: flex;
    flex-direction: column;
}

.lf-pillars-accent-line {
    width: 50px;
    height: 2px;
    background-color: #ccbe7a;
    /* Darker version of #fff1ad */
    margin-bottom: 20px;
    transition: width 0.4s ease;
}

.lf-pillars-card:hover .lf-pillars-accent-line {
    width: 80px;
}

.lf-pillars-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

.lf-pillars-description {
    font-size: 17px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    /* max-width: 90%; */
}

/* Responsive Breakpoints */
@media (max-width: 1550px) {
    .lf-pillars-container {
        padding: 0 100px;
    }

    .lf-pillars-image-wrapper {
        height: 400px;
    }

    .lf-pillars-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .lf-pillars-container {
        padding: 0 50px;
    }

    .lf-pillars-grid {
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .lf-pillars-image-wrapper {
        height: 450px;
    }

    .lf-pillars-heading {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .lf-pillars-image-wrapper {
        height: 300px;
    }
}

/* lf-pillar-section-end   */










/* lf-production-section-start */
.lf-featured-section {
    width: 100%;
    padding: 120px 0;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: main;
}

.lf-featured-container {
    width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
}

/* Header Area */
.lf-featured-header {
    margin-bottom: 80px;
    max-width: 850px;
}

.lf-featured-heading {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0 0 24px 0;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.lf-featured-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Grid Layout */
.lf-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 100px;
}

/* Individual Production Card */
.lf-featured-card {
    display: flex;
    flex-direction: column;
}

.lf-featured-image-wrapper {
    width: 100%;
    aspect-ratio: 7 / 9;
    /* Cinematic ratio */
    background-color: #f4f4f4;
    /* Placeholder color */
    overflow: hidden;
    margin-bottom: 32px;
    position: relative;
}

.lf-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lf-featured-card:hover .lf-featured-image {
    transform: scale(1.03);
}

/* Card Content */
.lf-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lf-featured-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ccbe7a;
    /* Accent Color */
}

.lf-featured-dot {
    color: #d1d1d1;
    font-size: 12px;
}

.lf-featured-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    line-height: 1.2;
}

.lf-featured-plot {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 24px 0;
}

/* Credits Area */
.lf-featured-credits {
    border-left: 3px solid #ccbe7a;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lf-featured-credit-item {
    margin: 0;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.lf-featured-credit-label {
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 4px;
}

/* Responsive Breakpoints */
@media (max-width: 1550px) {
    .lf-featured-container {
        padding: 0 100px;
    }

    .lf-featured-grid {
        column-gap: 50px;
    }
}

@media (max-width: 1024px) {
    .lf-featured-container {
        padding: 0 50px;
    }

    .lf-featured-grid {
        grid-template-columns: 1fr;
        row-gap: 80px;
    }

    .lf-featured-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .lf-featured-container {
        padding: 0 30px;
    }

    .lf-featured-heading {
        font-size: 2.4rem;
    }
}

/* lf-production-section-end   */


/* lf-counter-section-start */
.lf-counter-section {
    width: 100%;
    padding: 120px 0;
    background-color: #141414;
    /* Exclusive dark bg as requested */
    box-sizing: border-box;
    font-family: main;
}

.lf-counter-container {
    width: 100%;
    padding: 0 200px;
    box-sizing: border-box;
}

/* Header Area */
.lf-counter-header {
    margin-bottom: 70px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lf-counter-heading {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0 0 24px 0;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.lf-counter-description {
    font-size: 18px;
    line-height: 1.6;
    color: #a0a0a0;
    margin: 0;
}

/* Grid Layout */
.lf-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Glassmorphism Card */
.lf-counter-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    /* Subtle top highlight */
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, background 0.4s ease;
}

.lf-counter-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

/* Counter Values */
.lf-counter-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 16px;
    color: #ccbe7a;
    /* Sophisticated darker gold accent */
}

.lf-counter-num,
.lf-counter-prefix,
.lf-counter-suffix {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.lf-counter-suffix-text {
    font-size: 1.8rem;
    font-weight: 500;
    margin-left: 8px;
    color: #ccbe7a;
}

/* Counter Label */
.lf-counter-label {
    font-size: 16px;
    line-height: 1.5;
    color: #e0e0e0;
    font-weight: 400;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1550px) {
    .lf-counter-container {
        padding: 0 100px;
    }
}

@media (max-width: 1100px) {
    .lf-counter-container {
        padding: 0 50px;
    }

    .lf-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .lf-counter-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .lf-counter-grid {
        grid-template-columns: 1fr;
    }

    .lf-counter-container {
        padding: 0 30px;
    }

    .lf-counter-heading {
        font-size: 2.4rem;
    }
}

/* lf-counter-section-end   */



/* lf-cta-section-start */
.lf-cta-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Full viewport height like the image */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1485846234645-a62644f84728?q=80&w=2059&auto=format&fit=crop');
    /* Cinematic film set background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax scroll effect */
    box-sizing: border-box;
    padding: 100px 20px;
    font-family: main;
}

/* Dark Overlay for text readability */
.lf-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.65);
    /* Dark cinematic overlay */
    z-index: 1;
}

/* Content Container */
.lf-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glassmorphic Pill Badges */
.lf-cta-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.lf-cta-badge {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 10px 24px;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.lf-cta-badge:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Typography */
.lf-cta-heading {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.lf-cta-description {
    font-size: 19px;
    line-height: 1.6;
    color: #dcdcdc;
    margin: 0 auto 48px auto;
    max-width: 800px;
    font-weight: 400;
}

/* Pill Buttons */
.lf-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lf-cta-btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lf-cta-btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 18px 42px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lf-cta-btn-primary:hover {
    background-color: #e6e6e6;
    transform: scale(1.02);
}

.lf-cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: scale(1.02);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .lf-cta-heading {
        font-size: 3.5rem;
    }

    .lf-cta-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .lf-cta-heading {
        font-size: 2.8rem;
    }

    .lf-cta-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .lf-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .lf-cta-btn-primary,
    .lf-cta-btn-secondary {
        /* width: 100%; */
        text-align: center;
        padding: 18px 20px;
    }
}

/* lf-cta-section-end   */













.farm-hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: main;
    box-sizing: border-box;
}

.farm-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.farm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
}

.farm-hero-content {
    position: relative;
    z-index: 3;
    max-width: 840px;
    text-align: center;
    padding: 0 24px;
    color: #ffffff;
}

.farm-hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff1ad;
    /* Premium highlight color */
    margin-bottom: 24px;
    font-family: main;
}

.farm-hero-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    font-family: main;
}

.farm-hero-para {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 720px;
    margin: 0 auto 40px auto;
    font-family: main;
}

.farm-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.farm-hero-button-primary {
    font-family: main;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    /* Dark text for optimal contrast against the bright highlight */
    background-color: #fff1ad;
    /* Premium highlight color */
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.farm-hero-button-primary:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.farm-hero-button-secondary {
    font-family: main;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    padding: 16px 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.farm-hero-button-secondary:hover {
    border-color: #fff1ad;
    color: #fff1ad;
    background-color: rgba(255, 241, 173, 0.05);
    transform: translateY(-2px);
}









/* farm-hook-section-start */
.farm-hook-section {
    padding: 100px 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: main;
    background: #141414;
    position: relative;
    overflow: hidden;
}

/* Subtle noise texture for depth */
.farm-hook-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.farm-hook-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    position: relative;
    z-index: 1;
}

/* Rule row */
.farm-hook-rule-row {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
}

.farm-hook-rule-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
}

.farm-hook-rule-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, #ccc, transparent);
}

/* Headline block */
.farm-hook-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.farm-hook-heading {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

.farm-hook-heading-2 {
    font-size: clamp(3rem, 4vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.0;
    margin: 0;
    color: #ffffff;
    font-family: main;
    opacity: 0;
    transform: translateY(40px);
}

/* Accent highlight brush strokes */
.farm-hook-accent {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.farm-hook-accent::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 0px;
    height: 90%;
    z-index: -1;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
}

.farm-hook-accent--gold::before {
    background: #ffbe0b;
}

.farm-hook-accent--sage::before {
    background: #064e3b;
}

/* Triggered by JS when heading animates in */
.farm-hook-accent--gold.farm-hook-accent--revealed::before,
.farm-hook-accent--sage.farm-hook-accent--revealed::before {
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Bottom grid: side col + 2 paras */
.farm-hook-bottom {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Side accent column */
.farm-hook-side-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(24px);
}

.farm-hook-side-rule {
    width: 28px;
    height: 2px;
    background: #C5A355;
}

.farm-hook-side-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.farm-hook-stat-num {
    font-family: main;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: -1px;
    line-height: 1;
}

.farm-hook-stat-label {
    font-family: main;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.5;
}

/* Paragraphs */
.farm-hook-para {
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: #dcdcdc;
    font-family: main;
    opacity: 0;
    transform: translateY(24px);
    text-align: justify;
}

/* Para 2 + button wrapper */
.farm-hook-para-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.farm-hook-btn {
    padding: 13px 36px;
    border: 1.5px solid #ffffff;
    text-decoration: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: main;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.farm-hook-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 1100px) {
    .farm-hook-container {
        padding: 0 48px;
    }

    .farm-hook-bottom {
        grid-template-columns: 140px 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .farm-hook-container {
        padding: 0 32px;
        gap: 40px;
    }

    .farm-hook-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .farm-hook-side-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .farm-hook-side-rule {
        width: 1px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .farm-hook-section {
        padding: 72px 0 72px;
    }

    .farm-hook-container {
        padding: 0 24px;
        gap: 32px;
    }

    .farm-hook-heading,
    .farm-hook-heading-2 {
        letter-spacing: -1px;
    }

    .farm-hook-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .farm-hook-side-col {
        grid-column: auto;
    }
}

/* farm-hook-section-end */


/* ==========================================================================
   GLOBAL & COMPREHENSIVE MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
    /* ── Preloader ────────────────────────────────────── */
    .main-preloader-graph-label-top {
        font-size: 2rem;
    }
    .main-preloader-svg {
        height: 200px;
    }

    /* ── Hero / Carousel Slide Structure ──────────────── */
    .slide__inner {
        grid-template-columns: 1fr !important;
        padding: 100px 24px 80px 24px !important;
        gap: 40px !important;
        height: auto !important;
        margin:auto
    }
    .slide__left {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .slide__right {
        padding-right: 0 !important;
        justify-content: transform !important;
    }
    .chart-card {
        width: 100% !important;
        max-height: none !important;
        height: auto !important;
    }

    /* ── Business Section ─────────────────────────────── */
    .main-business-top {
        padding: 0 24px !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px;
    }
    .main-business-heading, 
    .main-business-para {
        width: 100% !important;
    }

    /* ── Finance Home Section ─────────────────────────── */
    .home-fin-container {
        padding: 0 24px !important;
    }
    .home-fin-top {
        flex-direction: column;
        gap: 40px !important;
    }
    .home-fin-left, 
    .home-fin-right {
        width: 100% !important;
    }
    .home-fin-cont {
        gap: 40px !important;
    }
    .home-fin-video {
        height: 400px !important;
    }
    .home-fin-asset {
        display: none; /* Prevents extreme layout horizontal overflow breaking window bounds */
    }

    /* ── About Section ────────────────────────────────── */
    .home-about-top {
        /* width: 100% !important; */
        padding: 0 24px;
        align-items: flex-start !important;
    }
    .home-about-head-btn {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }
    .home-about-paras {
        grid-template-columns: 1fr !important;
        transform: none !important;
        gap: 20px !important;
    }
    .home-about-bottom img {
        height: 350px !important;
    }

    /* ── Commitment Section ───────────────────────────── */
    .home-commit-container {
        padding: 0 24px !important;
    }
    .home-commit-top {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }
    .home-commit-bottom {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .home-commit-img-wrapper img {
        height: 380px !important;
    }

    /* ── Stats Counter Section ────────────────────────── */
    .main-counter-container {
        padding: 0 24px !important;
        gap: 40px !important;
    }
    .main-counter-header-group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px;
    }
    .main-counter-primary-heading, 
    .main-counter-sub-description {
        width: 100% !important;
        text-align: left !important;
    }

    /* ── Highlight & Showcase (Horizontal Scroll sections) ── */
    .wr-highlight-container {
        padding: 0 24px !important;
    }
    .wr-showcase-head-wrap {
        padding: 0 24px !important;
        margin-bottom: 40px !important;
    }
    .wr-showcase-track {
        padding-left: 24px !important;
        gap: 20px !important;
    }
    .wr-showcase-card {
        width: 290px !important;
    }
    .wr-showcase-image-wrap {
        height: 380px !important;
    }

    /* ── Workplace/Sub Hero ────────────────────────────── */
    .wr-hero-content {
        padding: 0 24px;
    }
}

@media (max-width: 991px) {
    /* ── About Hero ───────────────────────────────────── */
    .about-hero-heading {
        font-size: 2.4rem !important;
    }
    .about-hero-para {
        font-size: 1rem !important;
        padding: 0 24px;
    }
    .about-hero-container {
        gap: 30px !important;
    }
    .about-hero-btn {
        gap: 16px !important;
    }
    .about-hero-btn-primary,
    .about-hero-btn-secondary {
        padding: 12px 18px !important;
        font-size: 0.9rem;
    }

    /* ── AMV (Mission/Vision cards) ───────────────────── */
    .amv-container {
        padding: 0 24px !important;
    }
    .amv-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 !important;
    }
    .amv-card {
        height: auto !important;
        padding: 32px !important;
    }
    .amv-card-top h3 {
        font-size: 1.5rem !important;
    }

    /* ── About Counter ────────────────────────────────── */
    .about-counter-section {
        padding: 60px 24px !important;
    }
    .about-counter-card {
        padding: 32px 28px !important;
        height: auto !important;
    }
    .about-counter-top {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 32px !important;
    }
    .about-counter-headline {
        font-size: 2rem !important;
    }
    .about-counter-right {
        padding-left: 0 !important;
    }
    .about-counter-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 16px !important;
    }
    .about-counter-stat-value {
        font-size: 2.4rem !important;
    }

    /* ── Contact Hero ─────────────────────────────────── */
    .contact-hero-heading {
        font-size: 2.4rem !important;
    }
    .contact-hero-para {
        font-size: 1rem !important;
        padding: 0 24px;
    }
    .contact-hero-container {
        gap: 30px !important;
    }
    .contact-hero-btn {
        gap: 16px !important;
    }
    .contact-hero-btn-primary,
    .contact-hero-btn-secondary {
        padding: 12px 18px !important;
        font-size: 0.9rem;
    }

    /* ── Business Hero ────────────────────────────────── */
    .bussiness-heading {
        font-size: 2.2rem !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    /* ── Business (cards) ─────────────────────────────── */
    .business-container {
        padding: 0 24px !important;
    }
    .business-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 !important;
    }
    .business-card {
        height: auto !important;
        padding: 32px !important;
    }
    .business-card-top h3 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    /* ── About Counter: single column stats on very small screens ── */
    .about-counter-stats {
        grid-template-columns: 1fr !important;
    }

    /* Headings Scaledown globally for micro-screens */
    .main-business-heading,
    .home-fin-heading,
    .home-about-heading,
    .home-commit-heading,
    .wr-hero-heading,
    .wr-showcase-heading {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .main-cta_main-heading {
        font-size: 2.6rem !important;
    }

    .main-counter-value-row {
        font-size: 46px !important;
    }

    /* Layout tweaks */
    .hero__nav {
        left: 24px !important;
        bottom: 20px !important;
    }
    .hero__counter {
        right: 24px !important;
        bottom: 24px !important;
    }
    .slide__btn {
        width: 100%;
        justify-content: center;
    }
    .slide__cta {
        /* flex-direction: column; */
        width: 100%;
    }
    .cc-stats {
        grid-template-columns: 1fr !important;
    }
    .ph-kpis {
        grid-template-columns: 1fr !important;
    }
    .wr-hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        text-align: center;
    }
    .wr-hero-btn-primary {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   Vcare Pharma Mobile Responsiveness Additions
   ========================================================================== */

@media (max-width: 1024px) {
    /* --- Pharma Hero Section --- */
    .pharma-hero-section {
        height: auto;
        min-height: 80vh;
        padding: 120px 24px 60px;
        display: flex;
        align-items: center;
    }
    .pharma-hero-content {
        max-width: 100%;
        text-align: center;
    }
    .pharma-hero-tag-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .pharma-hero-tag-wrapper div {
        display: none; /* Hide bullets on wrap */
    }
    .pharma-hero-heading {
        font-size: clamp(2rem, 5vw, 3.5rem);
        line-height: 1.2;
    }
    .pharma-hero-buttons {
        justify-content: center;
    }

    /* --- Pharma Invest Grid --- */
    .pharma-invest-container {
        padding: 60px 24px;
    }
    .pharma-invest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* --- Pharma Why Section --- */
    .pharma-why-container {
        padding: 60px 24px;
        flex-direction: column;
        gap: 40px;
    }
    .pharma-why-heading {
        max-width: 100%;
        text-align: center;
    }
    .pharma-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* --- Pharma Market Section --- */
    .pharma-market-container {
        padding: 60px 24px;
    }
    .pharma-market-heading {
        text-align: center;
        margin-bottom: 40px;
    }
    .pharma-market-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* --- Pharma Ecosystem Section --- */
    .pharma-ecosystem-container {
        padding: 60px 24px;
    }
    .pharma-ecosystem-heading {
        text-align: center;
    }
    .pharma-ecosystem-flow {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .pharma-ecosystem-line {
        width: 2px;
        height: 32px;
        background: rgba(100, 210, 160, 0.3);
    }
    .pharma-ecosystem-step {
        /* width: 100%; */
        max-width: 400px;
        text-align: center;
    }

    /* --- Pharma CTA Section --- */
    .pharma-cta-section {
        flex-direction: column;
        height: auto;
    }
    .pharma-cta-image-half {
        width: 100%;
        height: 350px;
    }
    .pharma-cta-panel {
        /* width: 100%; */
        padding: 60px 24px;
    }
    .pharma-cta-diagonal-edge {
        display: none; /* Remove diagonal split on layout stack */
    }
    .pharma-cta-trust-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .pharma-cta-trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    /* --- Grids downgrade to Single Column stack --- */
    .pharma-invest-grid,
    .pharma-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pharma-hero-heading {
        font-size: 1.85rem;
    }
    
    .pharma-hero-paragraph {
        font-size: 1rem;
    }

    .pharma-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .pharma-hero-btn-primary,
    .pharma-hero-btn-secondary {
      
        text-align: center;
    }

    /* --- Market Section Lists --- */
    .pharma-market-list {
        gap: 16px;
    }
    .pharma-market-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .pharma-market-highlight {
        grid-template-columns: 1fr;
    }

    /* --- CTA Adjustments --- */
    .pharma-cta-heading {
        font-size: 2rem;
    }
    .pharma-cta-actions {
        flex-direction: column;
        width: 80%;
    }
    .pharma-cta-btn-primary,
    .pharma-cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
    .pharma-cta-trust-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pharma-invest-para {
        margin-bottom: 60px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 80px;
        width: 100%;
    }

    .pharma-invest-heading {
        font-size: 3.2rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin: 0;
        line-height: 1.15;
        color: #0d2b1e;
        width: 100%;
        flex-shrink: 0;
        font-family: main;
    }

    /* .pharma-ecosystem-step{
        width: 100%;
    } */
}