    :root {
        --primary-purple: #7c3aed;
        --dark-purple: #5b21b6;
        --light-purple: #a78bfa;
        --accent-pink: #ec4899;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden;
    }

    /* Hero Section */
    .hero-section {
        color: white;
        padding: 120px 0 100px;
        position: relative;
        overflow: hidden;
        background: #1f1540;
        /* fallback while image loads */
    }

    .hero-section .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: .55;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(124, 58, 237, .85), rgba(91, 33, 182, .85));
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    /* Section Styling */
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        /* color: var(--dark-purple); */
        margin-bottom: 3rem;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        /* background: var(--primary-purple); */
    }

    /* Stats Section */
    .stats-section {
        /* background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%); */
        background: ;
        color: white;
        padding: 60px 0;
        margin: 60px auto;
        /* center the bar */
        width: 88%;
        /* reduced width */
        border-radius: 24px;
        /* rounded corners */
        overflow: hidden;
        /* clip background at corners */
        box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    }

    @media (max-width: 768px) {
        .stats-section {
            width: 94%;
            border-radius: 16px;
        }
    }

    .stat-card {
        text-align: center;
        padding: 20px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    /* Values Section */
    .values-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(124, 58, 237, 0.1);
        height: 100%;
        transition: transform 0.3s;
    }

    .values-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    }

    .values-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        margin-bottom: 20px;
    }

    /* Management Team */
    .section-title {
        text-align: center;
        font-weight: 700;
        color: #1f2340;
    }

    /* Featured Leader Section */
    .featured-leader {
        background: white;
        border-radius: 15px;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .featured-content {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .featured-photo {
        flex-shrink: 0;
    }

    .featured-photo img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
    }

    .featured-info h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1f2340;
    }

    .featured-role {
        font-size: 1.1rem;
        color: var(--primary-purple);
        font-weight: 600;
        margin-bottom: 15px;
    }

    .featured-desc {
        font-size: 1rem;
        line-height: 1.6;
        color: #4b5563;
    }

    /* Management Team Cards */
    .team-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        height: 100%;
        transition: transform 0.3s;
        position: relative;
        z-index: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .team-card:hover {
        z-index: 100;
        transform: translateY(-10px);
    }

    .team-card h3 {
        color: #1f2340;
        font-weight: 700;
    }

    .team-member {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(31, 35, 64, 0.1);
        position: relative;
    }

    .team-member:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .member-photo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-right: 20px;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .member-photo img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

    .member-info h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: #1f2340;
    }

    .member-role {
        font-size: 0.9rem;
        color: var(--primary-purple);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .member-desc {
        font-size: 0.85rem;
        color: #6b7280;
        line-height: 1.5;
    }

    /* Team hover popup */
    .member-popup {
        position: absolute;
        /* left: 90px; */
        top: 50%;
        transform: translateY(-50%) translateX(10px);
        width: 40vw;
        max-width: calc(100vw - 20vw);
        background: #ffffff;
        color: #1f2340;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 1000;
    }

    .member-popup img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .member-popup .popup-img {
        min-height: 200px;
        background: #eee;
    }

    .member-popup .popup-body {
        padding: 18px 20px;
    }

    .member-popup .popup-title {
        font-size: 1rem;
        font-weight: 700;
        margin: 0 0 4px;
    }

    .member-popup .popup-role {
        font-size: 0.9rem;
        color: #5b21b6;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .member-popup .popup-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    .team-member:hover {
        z-index: 200;
    }

    .team-member:hover .member-popup {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }

    @media(max-width: 768px) {
        .featured-content {
            flex-direction: column;
            text-align: center;
        }

        .featured-photo img {
            width: 120px;
            height: 120px;
        }

        .featured-info h3 {
            font-size: 1.5rem;
        }

        .member-popup {
            display: none;
        }
    }

    @media(max-width: 992px) {
        .member-popup {
            display: none;
        }
    }




    /* Projects Grid */
    .project-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        height: 100%;
    }


    .project-image {
        width: 100%;
        height: 400px;
        /* background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%); */
        background: white;
        position: relative;
    }

    .project-content {
        padding: 20px;
        background: white;
        /* background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%); */
        /* color: white; */
    }

    .project-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .project-location {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 15px;
    }

    .project-details {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Project Details Modal (new) */
    .project-modal .modal-content {
        border: none;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
    }

    .project-modal .modal-body {
        padding: 0;
        background: #f7f7fb;
    }

    .project-modal .pm-layout {
        display: grid;
        grid-template-columns: 42% 58%;
        min-height: 520px;
    }

    .project-modal .pm-left {
        position: relative;
        padding: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .project-modal .pm-image {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
        background: rgba(0, 0, 0, .15);
    }

    .project-modal .pm-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(1.05);
    }

    .project-modal .pm-right {
        padding: 26px 26px 22px 26px;
        background: #ffffff;
    }

    .project-modal .pm-title {
        font-size: 1.6rem;
        font-weight: 800;
        color: #1f2340;
        margin: 4px 0 8px 0;
    }

    .project-modal .pm-address {
        font-size: .95rem;
        color: #4b5563;
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

    .project-modal .pm-badge {
        display: inline-block;
        padding: 6px 12px;
        background: #e9e1ff;
        color: #5b21b6;
        border-radius: 999px;
        font-weight: 700;
        font-size: .85rem;
    }

    .project-modal .pm-list {
        margin: 14px 0 8px 0;
        border-top: 1px solid #eef0f5;
        border-bottom: 1px solid #eef0f5;
        padding: 12px 0;
    }

    .project-modal .pm-row {
        display: grid;
        grid-template-columns: 160px 1fr;
        gap: 8px;
        padding: 8px 0;
        font-size: .95rem;
    }

    .project-modal .pm-row .label {
        color: #6b7280;
        font-weight: 600;
    }

    .project-modal .pm-row .value {
        color: #111827;
    }

    .project-modal .pm-about {
        background: #f7f7fb;
        border: 1px solid #eef0f5;
        border-radius: 12px;
        padding: 14px 16px;
        margin-top: 12px;
    }

    .project-modal .pm-actions {
        margin-top: 16px;
        display: flex;
        justify-content: flex-start;
    }

    .project-modal .pm-btn {
        color: #fff;
        border: none;
        padding: 12px 18px;
        border-radius: 10px;
        font-weight: 700;
    }

    @media (max-width: 992px) {
        .project-modal .pm-layout {
            grid-template-columns: 1fr;
            min-height: 0;
        }

        .project-modal .pm-left {
            min-height: 260px;
        }
    }





    /* CSR Section */
    .csr-section {
        background: #f8f9fa;
        padding: 80px 0;
    }

    .csr-image {
        border-radius: 15px;
        overflow: hidden;
        height: 100%;
        min-height: 300px;
        /* background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%); */
        background: #F4F4F4;

    }

    /* CSR and Celebrations Gallery */
    .gallery-wrap {
        margin-top: 10px;
    }

    .gallery-tabs {
        display: inline-flex;
        gap: 12px;
        background: #fff;
        padding: 6px;
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(31, 33, 64, .08);
    }

    .gallery-tab {
        border: none;
        background: transparent;
        padding: 8px 14px;
        border-radius: 10px;
        font-weight: 700;
        /* color: var(--dark-purple); */
        cursor: pointer;
    }

    .gallery-tab.active {
        /* background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));  */
        background: #F4F4F4;

        /* color: #fff;  */
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 18px;
    }

    @media (min-width: 992px) {
        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .gallery-item {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 18px 44px rgba(31, 33, 64, .12);
        aspect-ratio: 4/3;
        background: #eee;
    }

    .gallery-item.size-tall {
        grid-row: span 2;
        aspect-ratio: 4/5;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gallery-item .label {
        position: absolute;
        left: 12px;
        top: 12px;
        background: rgba(31, 21, 64, .8);
        color: #fff;
        padding: 6px 10px;
        border-radius: 10px;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    }

    .gallery-item .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .5));
        opacity: 0;
        transition: opacity .2s ease;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    /* Partners Section */
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .partner-logo {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        transition: transform 0.3s;
    }

    .partner-logo:hover {
        transform: scale(1.05);
    }

    /* Partners continuous marquee */
    .partners-marquee {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: rgba(255, 255, 255, .6);
        box-shadow: 0 6px 20px rgba(31, 33, 64, .08);
    }

    .partners-marquee .track {
        display: flex;
        gap: 24px;
        padding: 16px 0;
        will-change: transform;
        width: max-content;
    }

    .partners-marquee .item {
        flex: 0 0 auto;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 22px;
        min-width: 180px;
        height: 80px;
        font-weight: 700;
        /* color: var(--primary-purple);  */
    }

    .partners-marquee .item img {
        width: full;
        height: inherit;
    }

    @keyframes scroll-rtl {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @keyframes scroll-ltr {
        from {
            transform: translateX(-50%);
        }

        to {
            transform: translateX(0);
        }
    }

    .marquee-rtl .track {
        animation: scroll-rtl var(--duration, 20s) linear infinite;
    }

    .marquee-ltr .track {
        animation: scroll-ltr var(--duration, 20s) linear infinite;
    }

    /* Why BP Infra */
    .why-section {
        /* background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%); */
        background: #F4F4F4;
        color: black;
        padding: 80px 0;
    }

    .why-card {
        /* background: rgba(255,255,255,0.1); */
        background: white;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 20px;
    }

    .why-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    /* Why - Image overlay values panel */
    .why-image-wrap {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 18px 50px rgba(31, 33, 64, .25);
    }

    .why-image-wrap img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        display: block;
    }

    .values-panel {
        position: absolute;
        top: 5%;
        left: 5%;
        background: rgba(31, 21, 64, .6);
        color: black;
        border-radius: 14px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
        border: 1px solid rgba(255, 255, 255, .2);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        padding: 18px 20px 18px 66px;
        /* space for vertical label */
        width: 62%;
        max-width: 560px;
    }

    .values-label {
        position: absolute;
        left: 14px;
        top: 14px;
        bottom: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        letter-spacing: .06em;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        background: rgba(255, 255, 255, .12);
        border-radius: 10px;
        padding: 10px 6px;
    }

    .values-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
    }

    .values-list li {
        position: relative;
        padding: 8px 0 8px 16px;
        border-bottom: 1px dashed rgba(255, 255, 255, .15);
    }

    .values-list li:last-child {
        border-bottom: 0;
    }

    .values-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 14px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #fff;
        opacity: .9;
    }

    .values-text {
        font-weight: 600;
        letter-spacing: .2px;
    }

    @media (max-width: 992px) {
        .why-image-wrap {
            border-radius: 12px;
        }

        .why-image-wrap img {
            height: 340px;
        }

        .values-panel {
            position: static;
            width: 100%;
            margin-top: 14px;
            padding-left: 16px;
            border: none;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .values-list {
            grid-template-columns: 1fr;
        }

        .values-label {
            position: static;
            writing-mode: horizontal-tb;
            transform: none;
            margin-bottom: 10px;
            align-self: flex-start;
            background: transparent;
            padding: 0;
        }

        .why-image-wrap {
            position: static;
        }
    }

    @media (min-width: 1400px) {
        .why-image-wrap img {
            height: 580px;
        }
    }

    /* Mission & Vision */
    .mv-section {
        padding: 20px 0 60px;
        background: #FFFFFF;

    }

    .mv-card {
        /* background: linear-gradient(90deg, #3f37c9 0%, #6d38c9 40%, #8b3ac9 100%); */
        background: #FFFFFF;
        /* color: #fff; */
        border-radius: 14px;
        overflow: hidden;
        margin: 20px auto;
        box-shadow: 0 10px 30px rgba(63, 55, 201, .25);
    }

    .mv-inner {
        display: grid;
        grid-template-columns: 140px 8px 1fr;
        align-items: stretch;
    }

    .mv-label {
        background: rgba(0, 0, 0, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 10px;
        font-weight: 800;
        letter-spacing: .06em;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 22px;
        text-transform: uppercase;
    }

    .mv-divider {
        background: #FFFFFF;
        opacity: .9;
        width: 8px;
    }

    .mv-content {
        padding: 26px 28px;
    }

    .mv-content p {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .mv-content a {
        /* color:#fff; */
        text-decoration: underline;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .mv-inner {
            grid-template-columns: 100px 6px 1fr;
        }

        .mv-label {
            font-size: 18px;
        }

        .mv-content {
            padding: 20px;
        }
    }