:root {
    --white: #ffffff;
    --black: #000000;
    --black2: #0f0f0f;
    --black3: #404040;
    --black4: #4a5565;
    --black6: #667085;
    --yellow: #D2A858;
    --text-80: 4.167vw;
    --text-75: 3.906vw;
    --text-65: 3.385vw;
    --text-60: 3.125vw;
    --text-45: 2.344vw;
    --text-40: 2.083vw;
    --text-38: 1.979vw;
    --text-34: 1.771vw;
    --text-32: 1.667vw;
    --text-30: 1.563vw;
    --text-28: 1.458vw;
    --text-26: 1.354vw;
    --text-25: 1.302vw;
    --text-24: 1.25vw;
    --text-22: 1.146vw;
    --text-20: 1.042vw;
    --text-18: 0.938vw;
    --text-16: 0.833vw;
    --text-14: 0.729vw;

    --spacing-100: 6.25vw;
    --navy: #12182B;
    --gold: #D2A858;
    --glass-bg: rgba(10, 17, 33, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Mobile first (<=767px) */
@media (max-width: 767px) {
    :root {
        --text-80: 3rem;
        --text-75: 2.75rem;
        --text-65: 2.4rem;
        --text-60: 2.2rem;
        --text-45: 1.9rem;
        --text-40: 1.7rem;
        --text-38: 1.6rem;
        --text-34: 1.5rem;
        --text-32: 1.4rem;
        --text-30: 1.3rem;
        --text-28: 1.2rem;
        --text-26: 1.1rem;
        --text-25: 1.1rem;
        --text-24: 1rem;
        --text-22: 0.95rem;
        --text-20: 0.9rem;
        --text-18: 0.85rem;
        --text-16: 0.8rem;
        --text-14: 0.75rem;
        --spacing-100: 60px;
    }
}

/* Tablet (768pxÃ¢â‚¬â€œ991px) */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --text-80: 4rem;
        --text-75: 3.6rem;
        --text-65: 3.1rem;
        --text-60: 2.8rem;
        --text-45: 2.2rem;
        --text-40: 2rem;
        --text-38: 1.85rem;
        --text-34: 1.75rem;
        --text-32: 1.6rem;
        --text-30: 1.5rem;
        --text-28: 1.4rem;
        --text-26: 1.3rem;
        --text-25: 1.3rem;
        --text-24: 1.2rem;
        --text-22: 1.15rem;
        --text-20: 1.1rem;
        --text-18: 1rem;
        --text-16: 0.9rem;
        --text-14: 0.8rem;
        --spacing-100: 80px;
    }
}

/* Small desktop (992pxÃ¢â‚¬â€œ1199px) */
@media (min-width: 992px) and (max-width: 1200px) {
    :root {
        --text-80: 4.5rem;
        --text-75: 4.2rem;
        --text-65: 3.6rem;
        --text-60: 2.8rem;
        --text-45: 2.5rem;
        --text-40: 2.25rem;
        --text-38: 2.1rem;
        --text-34: 1.95rem;
        --text-32: 1.85rem;
        --text-30: 1.7rem;
        --text-28: 1.6rem;
        --text-26: 1.5rem;
        --text-25: 1.3rem;
        --text-24: 1.4rem;
        --text-22: 1.3rem;
        --text-20: 1.2rem;
        --text-18: 1.05rem;
        --text-16: 0.9rem;
        --text-14: 0.85rem;
    }
}



.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.badge {
    font-size: var(--text-14);
    font-weight: 600;
    border-radius: 4px;
}

/*font sizes*/
.text-80 {
    font-size: var(--text-80);
}

.text-75 {
    font-size: var(--text-75);
}

.text-65 {
    font-size: var(--text-65);
}

.text-60 {
    font-size: var(--text-60);
}

.text-38 {
    font-size: var(--text-38);
}

.text-28 {
    font-size: var(--text-28);
}

.text-45 {
    font-size: var(--text-45);
}

.text-40 {
    font-size: var(--text-40);
}

.text-34 {
    font-size: var(--text-34);
}

.text-32 {
    font-size: var(--text-32);
}

.text-30 {
    font-size: var(--text-30);
}

.text-25 {
    font-size: var(--text-25);
}

.text-26 {
    font-size: var(--text-26);
}

.text-24 {
    font-size: var(--text-24);
}

.text-22 {
    font-size: var(--text-22);
}

.text-20 {
    font-size: var(--text-20);
}

.text-16 {
    font-size: var(--text-16);
}

.text-14 {
    font-size: var(--text-14);
}

.text-18 {
    font-size: var(--text-18);
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.italic {
    font-style: italic;
}

.leading-140 {
    line-height: 140% !important;
}

.leading-130 {
    line-height: 130% !important;
}


.leading-120 {
    line-height: 120% !important;
}

.leading-100 {
    line-height: 100% !important;
}

/*colors*/

.black {
    color: var(--black);
}

.yellow {
    color: var(--yellow);
}

.black2 {
    color: var(--black2);
}

.black3 {
    color: var(--black3);
}

.black4 {
    color: var(--black4);
}

.black5 {
    color: var(--bg-black-russian);
}

.black6 {
    color: var(--black6);
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-50 {
    opacity: 0.5;
}

.wrap-balance {
    text-wrap: balance;
}

.radius-8 {
    border-radius: 8px;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.form-container select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* SVG arrow as background */
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    /* adjust size */
    /* Adjust size of your arrow */
    padding-right: 40px;
    /* Give space for arrow */
}

/* For IE 10/11 hide default arrow */
select.form-control::-ms-expand {
    display: none;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section[id],
footer[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: var(--text-20);
    color: var(--black);
    overflow-x: hidden;
    font-weight: 400;
    text-rendering: optimizeSpeed;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1205px;
    margin: 0 auto;
}

.container-fluid {
    padding-left: 5vw;
    padding-right: 5vw;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 99999;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}


.btn {
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 12px;
    min-width: 200px;
    font-size: var(--text-25);
    justify-content: space-between;
    padding: 2px 5px 2px 25px;
    transition: all 0.3s ease;
}

.btn span:first-child {
    flex-grow: 1;
}

/* Custom Header Styles */
.navbar {
    padding: 0px;
}

.navbar-brand-item {
    height: 45px;
    width: auto;
}

.navbar-brand img {
    width: 14.167vw;
    height: auto;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 400;
    margin: 0 15px;
    font-size: var(--text-20);
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.navbar-collapse>ul {
    border-radius: 12px;
    padding: 5px 20px;
    margin: 0 20px;
    background: rgba(18, 24, 43, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 67px;
    display: flex;
    align-items: center;
}


.header-wrap {
    position: fixed;
    width: 100%;
    z-index: 1031;
    transition: all 0.3s ease;
    top: 40px;
    padding: 10px 0;
}

header.header-wrap.sticky:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    transition: background-image .08s linear, opacity .12s linear;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

header.header-wrap.sticky {
    top: 0px;
    background: var(--white);
    background-color: rgba(255, 255, 255, 0.3);
    border-bottom: thin solid rgba(4, 1, 14, 0.1);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}



.navbar-toggler {
    background: var(--grey-bg);
    display: flex;
    padding: 8px 14px;
    align-items: center;
    gap: 8px;
    font-size: var(--text-para);
    border-radius: 8px;
    border: none;
    color: var(--black);
    box-shadow: none !important;
    height: 40px;
    justify-content: center;
}

.navbar-toggler svg {
    color: var(--mid-blue);
}

.navbar-toggler:focus {
    border: 1px solid var(--grey3);
    box-shadow: 0 2px 1px rgb(0 0 0 / 5%);
    background: var(--grey-bg);
}

.noneblock {
    display: none !important;
}

.activeblock {
    display: block !important;
}

.opened .noneblock {
    display: block !important;
}

.opened .activeblock {
    display: none !important;
}



@media screen and (max-width: 991.5px) {
    .header-wrap {
        top: 20px;
    }

    .navbar-toggler {
        width: 43px;
        height: 43px;
        border-radius: 12px;
        border: 1px solid var(--black3);
        margin-left: 10px;
        background: var(--white);
    }

    .navbar-brand {
        margin-right: 5px;
    }


    /* Overlay – covers the rest of the screen behind the drawer */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1030;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: .5;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        background: white !important;
        height: 100dvh !important;
        overflow-y: auto;
        z-index: 1031;
        padding: 24px;
        padding-bottom: 10%;
        box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.12);
        /* slide-out by default */
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    /* Close button inside the drawer — same style as the hamburger toggler */
    .drawer-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        border: none;
        background: var(--grey-bg);
        color: var(--black);
        cursor: pointer;
        margin-bottom: 16px;
        margin-left: auto;
        flex-shrink: 0;
        transition: background 0.2s ease;
        border: 1px solid var(--black);
    }

    .nav-link {
        font-size: var(--text-24);
    }

    .drawer-close-btn:hover,
    .drawer-close-btn:focus {
        background: #e2e4df;
        outline: none;
    }

    .header-wrap .navbar-nav .nav-link {
        color: var(--black) !important;
    }

    .navbar-collapse>ul {
        height: auto !important;
        background: transparent !important;
        margin: 0;
    }
}

/* Hide close button on desktop */
@media (min-width: 992px) {
    .drawer-close-btn {
        display: none;
    }
}

/*header end*/

.btn-black {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
    padding: 10px 30px !important;
    border: none !important;
    font-weight: 500;
    font-size: var(--text-24);
    height: 67px;
    min-width: 180px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-section/hero-banner.webp') no-repeat center center;
    background-size: cover;
    padding: 120px 0 0 0;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 43, 0.1);
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text-card {
    padding: 4% 3% 5% 3%;
    width: 57%;
    position: relative;
    background: linear-gradient(135deg,
            rgba(14, 22, 44, 0.85),
            rgba(18, 24, 43, 0.85));
    backdrop-filter: blur(20px);
    background: url(../images/hero-section/hero-card-bg.png) no-repeat center center;
    background-size: cover;
}

.hero-text-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0px;
    background: linear-gradient(to top right,
            rgba(255, 255, 255, 0.06),
            transparent);
    pointer-events: none;
}


.hero-title {
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 400;
}

.hero-description {
    margin-bottom: 45px;
    max-width: 550px;
    line-height: 1.6;
    opacity: 1 !important;
}

.hero-bg-re {
    position: absolute;
    width: auto;
    z-index: 1;
    height: 100%;
    right: -0.5vw;
    top: -7.5vw;
    width: 19vw;
}

.hero-bg-re img {
    width: 100%;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btns>* {
    flex: 1;
    text-align: center;
    justify-content: center;
    min-width: 200px;
}

.btn-gold {
    background-color: var(--gold) !important;
    color: var(--white) !important;
    padding: 15px 16px !important;
    border-radius: 8px !important;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s !important;
    border: none !important;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-white {
    background: transparent !important;
    color: var(--white) !important;
    border: 1px solid var(--white) !important;
    padding: 15px 16px !important;
    border-radius: 8px !important;
    font-weight: 600;
    transition: background 0.3s, color 0.3s !important;
}

.btn-outline-white:hover {
    background: var(--white) !important;
    color: var(--navy) !important;
}

/* Financial Leadership Card */
.leadership-glass-card {
    border-radius: 8px;
    overflow: hidden;
    padding: 1.4vw;
    max-width: 400px;
    position: relative;
    margin-bottom: 100px;
    width: 24%;
    align-self: flex-end;
    background: url(../images/hero-section/rectangle-bg.png) no-repeat center center;
    background-size: cover;
    border: 0.5px solid #FFFFFF;
}

.leadership-text {
    font-size: var(--text-20);
}

.glass-card-link {
    text-decoration: none !important;
    display: block;
    width: 100%;
    height: 100%;
}

.glass-card-link:hover {
    opacity: 0.9;
}

.leadership-text {
    font-size: var(--text-20);
    color: var(--white);
    margin: 0;
    line-height: 1.5;
    padding-right: 30px;
    font-weight: 300;
}

.leader-name {
    display: block;
    font-size: var(--text-20);
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}


.leader-title {
    font-size: var(--text-20);
    font-weight: 700;
    color: var(--white);
}

.arrow-icon {
    position: absolute;
    top: 1px;
    right: 1px;
    opacity: 0.9;
}

.arrow-icon svg {
    width: 3.5vw;
    height: 3.5vw;
}

/* Custom for Logo */
.logo-text {
    font-family: 'Roboto', sans-serif;
    color: var(--white);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text .thin {
    font-weight: 300;
    letter-spacing: 2px;
}

.logo-text .bold {
    font-weight: 900;
    letter-spacing: 2px;
}

/* Responsive Adjustments */
@media (max-width: 1540px) {

    .navbar-collapse>ul,
    .btn-black {
        height: 58px;
    }

    .btn {
        height: 55px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.5px) {
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-wrap {
        padding: 10px 0;
    }

    .hero-text-card {
        width: 100%;
        padding: 16px;
    }

    .leadership-glass-card {
        width: 50%;
        padding: 16px;
    }

    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
        height: auto;
    }

    .navbar-brand img {
        width: 130px;
        height: auto;
    }

    .hero-text-card {
        padding: 40px 20px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }


    .btn,
    .btn-black {
        height: 43px;
        min-width: auto;
        padding: 8px 20px !important;
        width: 180px;
    }

    .btn-gold,
    .btn-outline-white {
        height: 43px;
        width: 100%;
        text-align: center;
        padding: 8px 20px !important;
        justify-content: center;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns>* {
        flex: 0 0 100%;
        width: 100%;
    }

}

@media (max-width: 767px) {
    .hero-btns {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline-white {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }

    .leadership-glass-card {
        width: 100%;
    }

    .arrow-icon svg {
        width: 30px;
        height: 30px;
    }

    .hero-description br,
    .hero-title br,
    .title-item h2 br {
        display: none;
    }

    .btn,
    .btn-black {
        height: 43px;
        min-width: auto;
        padding: 8px 20px !important;
        width: 125px;
    }

    .hero-description {
        margin-bottom: 40px;
    }
}

/* Who We Are Section */
.who-we-are {
    background-color: var(--navy);
    padding: var(--spacing-100) 0;
    overflow: hidden;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr;
    gap: 0px;
}

.who-we-are-grid .grid-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.who-we-are-grid .text-item p {
    margin-bottom: 0;
}

.who-we-are-grid .image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.who-we-are-grid .title-item h2 {
    margin-bottom: 0px;
    align-self: flex-start;
}

/* Grid logic items */
.who-we-are-grid .item-1 {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
}

/* Heading */
.who-we-are-grid .item-2 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
}

/* Text 28 */
.who-we-are-grid .item-3 {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
}

/* Image 1 */
.who-we-are-grid .item-4 {
    grid-column: 4;
    grid-row: 1;
    align-self: start;
}

/* Text 24a */
.who-we-are-grid .item-5 {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

/* Image 2 */
.who-we-are-grid .item-6 {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
}

/* Text 24b */
.who-we-are-grid .item-7 {
    grid-column: 4;
    grid-row: 2;
    align-self: start;
}

/* Who We Are Rotation */
.who-we-are-grid .grid-item {
    position: relative;
}

.wwa-slot-inner {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
}

.wwa-slot-inner.active {
    opacity: 1;
    z-index: 2;
}

/* Stack inactive items absolutely so they don't take space */
.wwa-slot-inner:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Adjusting padding/margin to match images */
.who-we-are-grid .text-28 {
    padding-bottom: 2vw;
}

.who-we-are-grid .text-24 {
    color: var(--white);
}

.grid-item.title-item h2 {
    padding-bottom: 2vw;
}

/* Responsive grid for tablets and mobile */
@media (max-width: 1199px) {
    .who-we-are-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .who-we-are-grid .item-1 {
        grid-column: span 2;
        grid-row: auto;
    }

    .who-we-are-grid .item-2,
    .who-we-are-grid .item-3,
    .who-we-are-grid .item-4,
    .who-we-are-grid .item-5,
    .who-we-are-grid .item-6,
    .who-we-are-grid .item-7 {
        grid-column: span 1;
        grid-row: auto;
        align-items: start !important;
    }
}

@media (max-width: 767px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        row-gap: 30px;
        column-gap: 0;
    }

    .who-we-are {
        padding: 60px 0;
    }

    .grid-item {
        align-items: flex-start !important;
    }

    .grid-item br {
        display: none;
    }

    .who-we-are-grid .item-2,
    .who-we-are-grid .item-3,
    .who-we-are-grid .item-4,
    .who-we-are-grid .item-5,
    .who-we-are-grid .item-6,
    .who-we-are-grid .item-7 {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Services Section */
.services-section {
    background-color: var(--navy);
    padding: var(--spacing-100) 0;
    padding-top: 0px;
}

.header-space {
    margin-bottom: 80px;
}

.header-space2 {
    margin-bottom: 50px;
}

.service-item:first-child {
    padding-top: 0px;
}

.service-item:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 2vw 0;
    border-bottom: 1px solid var(--white);
    gap: 40px;
}

.service-number {
    flex: 0 0 20%;
    padding-left: 2vw;
}

.service-title {
    flex: 0 0 35%;
    line-height: 1.2;
}

.service-para {
    flex: 1;
    line-height: 1.6;
}

/* Tablet adjustments for services */
@media (max-width: 1199px) {
    .service-item {
        padding: 40px 0;
        gap: 30px;
    }

    .service-number {
        flex: 0 0 12%;
    }

    .service-title {
        flex: 0 0 40%;
    }
}

/* Mobile adjustments for services */
@media (max-width: 767px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 30px 0;
    }

    .service-number {
        flex: none;
        padding-left: 0;
    }

    .service-title {
        flex: none;
    }

    .service-para {
        flex: none;
    }

    .service-title br,
    .service-para br {
        display: none;
    }

    .services-header {
        margin-bottom: 40px;
    }
}

/* Projects Section */
.projects-section {
    background-color: var(--navy);
    padding: var(--spacing-100) 0;
    position: relative;
    overflow: hidden;
    padding-top: 0px;
}

.projects-slider {
    margin: 0 -15px;
}

.project-slide {
    padding: 0 15px;
}

.project-card {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-card:before {
    content: "";
    background: white;
    position: absolute;
    width: 100%;
    height: 80%;
    z-index: -1;
    bottom: 0;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    /* Slanted top-left corner */
    /*clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 25%);*/
    border-top-right-radius: 25px;
}

.project-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /*clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 25%);*/
}

.project-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--yellow);
    color: var(--white);
    padding: 10px 20px;
    z-index: 2;
    min-width: 200px;
    text-align: center;
}

.project-content {
    padding: 2.5vw 2vw;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.project-content h3 {
    line-height: 1.2;
}

.project-content p {
    line-height: 1.3;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background: transparent;
    border: none;
    width: 2.24vw;
    height: 2.24vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0px;
}



.slider-prev img,
.slider-next img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .project-image-wrapper img {
        height: 30vw;
    }

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

    .leadership-glass-card {
        width: 33%;
    }
}

@media (max-width: 991px) {
    .project-image-wrapper img {
        height: 50vw;
    }

    .project-content {
        padding: 30px 20px;
    }

    .header-space {
        margin-bottom: 50px;
    }

    .slider-prev,
    .slider-next,
    .advisor-prev,
    .advisor-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {


    .slider-controls {
        justify-content: center;
        margin-top: 20px;
    }


}


/* Why Bluevolt Section */
.why-section {
    position: relative;
    padding: var(--spacing-100) 0;
    background-color: var(--navy);
}

.why-section::before {
    background: url('../images/why-bluevolt/why-bluevoltbg.jpg') no-repeat top center / cover;
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
}

.why-card {
    height: 100%;
    padding: 3vw 1vw 2vw 1vw;
    text-align: center;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card.bg-white {
    background-color: var(--white);
    color: #12182B;
}

.why-card.bg-gold {
    background-color: #D2A858;
    color: var(--white);
}

.why-icon-wrapper {
    height: 3.073vw;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon-wrapper img {
    height: 100%;
    width: auto;
}

.why-card .card-heading {
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-card.bg-white .card-heading {
    color: #12182B;
}

.why-card.bg-gold .card-heading {
    color: var(--white);
}

.why-card .card-para {
    line-height: 1.5;
    padding: 0 1vw;
}

@media (max-width: 1199px) {
    .why-icon-wrapper {
        height: 60px;
    }
}

@media (max-width: 991px) {
    .why-card {
        padding: 40px 20px;
        margin-bottom: 20px;
    }

    .why-icon-wrapper {
        height: 60px;
    }
}

/* ESG Section */
.esg-section {
    background-color: var(--navy);
    padding: var(--spacing-100) 0;
    position: relative;
    overflow: hidden;
    padding-top: 0px;
}

.esg-slider .slick-track {
    display: flex !important;
}

.esg-slider .slick-slide {
    height: inherit !important;
}

.esg-slide {
    padding: 0 15px;
    height: 100%;
}

.esg-card {
    background: url('../images/esg/bg-esg.png') no-repeat;
    background-size: cover;
    background-position: center;
    border: 0.5px solid rgba(255, 255, 255, 1);
    border-radius: 25px;
    padding: 3vw 0.5vw 2.5vw 2vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.esg-icon-wrapper {
    margin-bottom: 25px;
}

.esg-card p {
    padding-right: 3vw;
}

.esg-icon {
    width: auto;
    height: 4vw;
    max-height: 70px;
}

/* Slick Dots Styling */
.esg-slider .slick-dots {
    bottom: -60px;
}

.slick-dots li button {
    width: var(--text-20);
    height: var(--text-20);
    border-radius: 50%;
    background-color: #DDE0E4;
    opacity: 1;
}

.slick-dots li button {
    width: var(--text-20);
    height: var(--text-20);
    border-radius: 50%;
    background-color: #DDE0E4;
    opacity: 1;
}

.slick-dots li.slick-active button {
    background-color: var(--yellow);
}

.esg-slider .slick-dots li button:before {
    display: none;
}

.esg-slider .slick-dots li.slick-active button:before {
    color: var(--yellow);
    opacity: 1;
}

@media (max-width: 1199px) {
    .esg-card {
        padding: 40px 30px;
    }

    .esg-icon {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .esg-card {
        padding: 30px 20px;
    }

    .esg-icon {
        height: 50px;
    }

    .header-space {
        margin-bottom: 40px;
    }

    .esg-slider .slick-dots {
        bottom: -40px;
    }
}

/* Advisors Section */
.advisors-section {
    background-color: var(--navy);
    padding: var(--spacing-100) 0;
    position: relative;
    overflow: hidden;
    padding-top: 17vw;
    margin-top: -4vw;
}

.container-max {
    margin-top: -15vw;
}

.advisors-title-area {
    position: relative;
    z-index: 2;
    padding-left: 5vw;
    height: 76.198vw;
    padding-top: 42vw;
}

.advisors-title-area::before {
    content: "";
    position: absolute;
    top: 0vw;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/our-advisors/curve-bg.svg') no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

.advisors-slider-wrapper {
    position: relative;
    padding: 2vw 0;
    margin-left: 8vw;
    height: 76.198vw;
    margin-right: 6vw;
}

.advisors-section .row>.col-lg-5 {
    flex: 0 0 auto;
    width: 37.76vw;
}

.hand-graphic {
    text-align: end;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;

}

.hand-graphic img {
    width: 25vw;
}

.advisors-slider {
    position: relative;
    z-index: 2;
}

.advisor-slide {
    padding: 2px;
    padding-top: 30px;
    margin-bottom: 8vw;
}

.advisor-card {
    display: flex;
    align-items: flex-end;
    position: relative;
    gap: 0;
    padding-top: 30vw;
}

.advisor-image-box {
    width: 55%;
    border-radius: 33px;
    overflow: hidden;
    position: relative;
}

.advisor-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.advisor-info-card {
    width: 55%;
    background: url('../images/our-advisors/advisor-content-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2vw;
    margin-left: -10%;
    margin-bottom: -8vw;
    position: relative;
    z-index: 2;
}

.advisors-section .line-bg {
    position: absolute;
    top: 14.5vw;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.advisor-slider-controls {
    display: flex;
    justify-content: center;
    gap: 0;
    position: absolute;
    top: 60%;
    left: -5vw;
    right: -5vw;
    transform: translateY(-50%);
    z-index: 4;
    justify-content: space-between;
}

.advisor-prev,
.advisor-next {
    background: transparent;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.advisor-prev img,
.advisor-next img {
    width: 100%;
    height: auto;
}



@media (max-width: 991px) {
    .advisor-card {
        flex-direction: column;
        align-items: center;
    }

    .advisor-image-box {
        width: 100%;
    }

    .advisor-info-card {
        width: 90%;
        margin-left: 0;
        margin-top: -69%;
        padding: 16px;
    }

    .advisors-section .row>.col-lg-5 {
        width: 100%;

    }

    .advisors-section {
        padding-top: 67vw;
        margin-top: -4vw;
    }

    .hand-graphic img {
        width: 50vw;
    }

    .advisors-title-area {
        height: auto;
        padding-bottom: 8vw;
    }

    .hand-graphic {
        width: auto;
    }

    .advisors-slider-wrapper {
        position: relative;
        padding: 2vw 0;
        margin-left: 8vw;
        height: auto;
        margin-right: 6vw;
    }
}

/* Footer Styles */
.footer-wrap {
    background-color: var(--black);
    padding: var(--spacing-100) 0 40px;
}

.footer-label {
    margin-bottom: 1rem !important;
}

.footer-label br {
    display: none;
}

.footer-nav {
    display: flex;
    gap: 5vw;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link {
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-brand .footer-logo img {
    width: 14.167vw;
    height: auto;
}

.footer-socials .social-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.footer-socials .social-icon:hover {
    transform: translateY(-5px);
}

.footer-socials .social-icon img {
    height: var(--text-20);
    width: auto;
}

.fw-900 {
    font-weight: 900 !important;
}

@media (max-width: 991px) {
    .footer-nav {
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .footer-brand .footer-logo img {
        width: 130px;
    }

    .footer-socials .social-icon img {
        height: 24px;
    }
}

@media (max-width: 767px) {
    .footer-wrap {
        padding: 60px 0 30px;
    }

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

    .footer-wrap .row>.col-lg-5:empty {
        display: none;
    }
}

/* Ensure slick slider slides are equal height */
#projects-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

#projects-slider .slick-slide {
    height: auto !important;
    display: flex !important;
}

#projects-slider .project-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
    padding-bottom: 30px;
    /* Space for the shadow or overlap if any, but mainly for consistent spacing */
}

#projects-slider .project-card {
    height: 100%;
    flex: 1;
}

/* Partner Section Styles */
.partner-section {
    background-color: var(--navy);
    padding: var(--spacing-100) 0;
    overflow: hidden;
    padding-top: 0;
}

@media (min-width: 992px) {
    .partner-section .container-fluid {
        padding-right: 0;
    }
}



.btn-gold-square {
    background-color: var(--gold) !important;
    color: var(--white) !important;
    padding: 15px 30px !important;
    border-radius: 0 !important;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none !important;
    font-size: var(--text-18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold-square:hover {
    background-color: var(--white) !important;
    color: var(--gold) !important;
    transform: translateY(-3px);
}

.portfolio-accordion {
    display: flex;
    gap: 15px;
    height: 40vw;
    width: 100%;
}

.accordion-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border-radius: 0px !important;
    /* Added some slight rounding like in the project cards for consistency, or omit if strictly as per screenshot */
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.6s ease;
}

.accordion-item:hover {
    flex: 3;
}

/* .accordion-item:hover::before {
    background: linear-gradient(180deg,
            rgba(183, 183, 183, 0),
            rgba(0, 0, 0, 1));
} */

.accordion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5vw 3.5vw 2vw 2vw;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: linear-gradient(180deg,
            rgba(183, 183, 183, 0),
            rgba(0, 0, 0, 1));
}

.item-overlay p {
    line-height: 1.3;
}

.accordion-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .portfolio-accordion {
        height: 450px;
    }

    .item-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 16px;
    }
}



@media (max-width: 991px) {
    .portfolio-accordion {
        height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .accordion-item {
        flex: none;
        width: 100%;
        height: auto;
    }

    .accordion-item:hover {
        flex: 0 0 60%;
        width: 100%;
        height: auto;
    }

    .item-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 10px;
    }

    .accordion-item {
        flex: 0 0 60%;
        width: 100%;
        height: auto;
    }

    .partner-section br {
        display: none;
    }
}

@media (max-width: 1199px) {
    .portfolio-accordion {
        height: auto;
        flex-direction: row;
        gap: 20px;
        overflow-x: auto;
    }

    .accordion-item {
        flex: 0 0 50%;
        width: 100%;
        height: auto;
    }
}

/* Hides the dots if there is only one <li> child inside the dots <ul> */
.slick-dots:has(li:only-child) {
    display: none !important;
}

/* Fallback for older browsers: hide navigation if it only contains one dot */
.slick-dots li:only-child {
    display: none;
}