/* Styling for About Us page */
:root {
    --bg-greycolor: rgb(26 43 60 / 10%);
    --redcolor: #B83445;
    --blackpara: #1A2B3C;
    --orange: #F89F32;
    --text-100: 5.2vw;
}

header {
    z-index: 9999;
}

.about-us-page {
    background-color: var(--bg-greycolor);
    padding-top: 4.5vw;
    padding-bottom: 4.5vw;
}

.about-us-left {
    padding-right: 2vw;
}

.about-badge {
    color: var(--redcolor);
    font-size: var(--text-25);
    font-weight: 400;
    /* regular */
}

.about-heading {
    color: var(--blackpara);
    font-size: var(--text-50);
    font-weight: 700;
    /* bold */
    line-height: 100%;
    margin-bottom: 0px;
    /* leading-100 */
}

.about-us-right {
    padding-left: 1vw;
}

.about-para {
    color: var(--blackpara);
    font-size: var(--text-25);
    line-height: 140%;
    /* leading-140 */
    font-weight: 400;
    /* regular */
}

.fullpara {
    color: var(--blackpara);
    font-size: var(--text-25);
    line-height: 140%;
    font-weight: 400;
}

/* Cards (box) styles */
.about-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    padding: 8%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(26, 43, 60, 0.1);
}

.about-card .card-heading {
    color: var(--blackpara);
    font-size: var(--text-25);
    font-weight: 700;
    line-height: 120%;
}

.card-para {
    color: var(--blackpara);
    font-size: var(--text-20);
    font-weight: 400;
    /* regular */
    line-height: 120%;
    /* leading-120 */
}

.about-sec-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}



/* Responsive adjustments */
@media only screen and (max-width: 991.5px) {
    .about-us-page {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-us-left {
        padding-right: 0;
    }

    .about-us-right {
        padding-left: 0;
        margin-top: 0rem;
    }

    .about-card {
        padding: 1.5rem 1.25rem;
        border-radius: 5px;
        box-shadow: 0px 10px 20px #0000001A;
        padding: 15px;
    }
}

/* Responsive adjustments */
@media only screen and (max-width: 991.5px) {
    .about-badge {
        font-size: var(--text-20);
    }
}

/* Sticky Secondary Header (Sub-Header) */
.about-sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #EBEBEB;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0 !important;
    pointer-events: none;
}

.about-sticky-nav.show {
    top: var(--main-header-height, 74px);
    opacity: 1 !important;
    pointer-events: auto;
}

.sticky-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.75vw;
    padding: 0.5rem 0;

}

.sticky-nav-inner .nav-item-link {
    color: #1E1E1E;
    font-size: var(--text-15);
    font-weight: 500;
    /* semibold */
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.sticky-nav-inner .nav-item-link:hover {
    color: var(--redcolor, #B83445);
}

.sticky-nav-inner .nav-item-link.active {
    color: var(--redcolor, #B83445);
}

/* Slide line active indicator */


.sticky-nav-inner .nav-item-link.active::after {
    width: 100%;
}

@media only screen and (max-width:991.5px) {
    .sticky-nav-inner .nav-item-link {
        font-size: 13px;
    }
}

/* Placeholder styling for dummy sections to test scrolling & ScrollSpy */
.about-dummy-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* .about-dummy-section:nth-of-type(even) {
    background-color: #ffffff;
} */

.about-dummy-section:nth-of-type(odd) {
    background-color: #f7f9fa;
}

.dummy-heading {
    color: var(--blackpara);
    font-size: var(--text-40, 32px);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.dummy-text {
    color: var(--blackpara);
    font-size: var(--text-20, 18px);
    line-height: 150%;
    max-width: 800px;
}

@media only screen and (max-width: 991.5px) {
    .sticky-nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        gap: 1.5rem;
        padding: 0.75rem 15px;
        -webkit-overflow-scrolling: touch;
        overflow-anchor: none;
        scroll-behavior: smooth;
    }

    .sticky-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .sticky-nav-inner {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* Vision, Mission & Values Section Styling */
.vision-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
}

.vision-mission-section {
    background-color: rgba(26, 43, 60, 0.7);
    padding-top: 6vw;
    padding-bottom: 6vw;
    overflow: hidden;
}

.vision-badge {
    color: var(--orange);
    font-size: var(--text-25);
    font-weight: 400;
}

.vision-title {
    color: var(--white, );
    font-size: var(--text-50);
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 4vw;
}

/* Cards styles for Vision and Mission */
.vision-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 6% 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
}

.vision-card.first-card {
    box-shadow: inset 0 8px 0 0 var(--orange), 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.vision-card.second-card {
    box-shadow: inset 0 8px 0 0 var(--redcolor), 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.vision-card .vision-card-title {
    color: var(--blackpara);
    font-size: var(--text-30);
    font-weight: 700;
}

.vision-card .vision-card-text {
    color: var(--blackpara);
    font-size: var(--text-25);
    line-height: 120%;
    margin-bottom: 0px;
}

/* Values Container */
.values-container {
    margin-top: 3vw;
}

.values-title {
    color: var(--white);
    font-size: var(--text-30);
    font-weight: 700;
}

.values-text {
    color: var(--white);
    font-size: var(--text-25);
    line-height: 170%;
}

/* Acronym list */
.acronym-list {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 3vw;
}

.acronym-item {
    font-size: var(--text-20);
    line-height: 140%;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.acronym-item:last-child {
    margin-bottom: 0;
}

.acronym-letter {
    color: var(--orange);
    font-size: var(--text-30);
    font-weight: 700;
}

/* Responsive adjustments */
@media only screen and (max-width: 991.5px) {
    .vision-mission-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .vision-card {
        padding: 30px 20px;
    }

    .values-container {
        margin-top: 1.5rem;
    }

    .acronym-item {
        margin-bottom: 0.75rem;
    }
}

@media only screen and (max-width:767.5px) {

    .vision-badge,
    .vision-card .vision-card-text,
    .values-text {
        font-size: var(--text-20);
    }

    .values-text {
        line-height: 150%;
    }

    .vision-title {
        margin-bottom: 1.5rem;
    }

    .acronym-list {
        padding-left: 0px;
        margin-top: 1rem;
    }
}


/* Milestones Section */
.milestone-section {
    background-color: #ffffff;
    padding-top: 5vw;
    padding-bottom: 4vw;
    overflow: hidden;
}

.milestone-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.milestone-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-section .inner-container-fluid {
    position: relative;
    z-index: 1;
}

.milestone-header {
    margin-bottom: 3.5vw;
}

.milestone-label {
    display: block;
    color: var(--redcolor);
    font-size: var(--text-25);
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.milestone-title {
    color: var(--blackpara);
    font-size: var(--text-50);
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 0;
}

.milestone-slider {
    position: relative;
    width: 100%;
}

/* Desktop: 3 cards visible */
.milestone-slider.milestone-slider--desktop .milestone-slider-viewport {
    --milestone-visible-count: 3;
}

.milestone-slider.milestone-slider--desktop .milestone-card.is-active .milestone-year {
    color: var(--orange);
}

/* Mobile: 1 card visible, centered */
.milestone-slider.milestone-slider--mobile .milestone-slider-viewport {
    overflow: hidden;
    --milestone-visible-count: 1;
}

.milestone-slider.milestone-slider--mobile .milestone-card.is-active {
    background: #EBEDEE 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 20px #0000001A;
    border: 1px solid #DBDDDF;
}

.milestone-slider-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    touch-action: pan-x;
    -webkit-user-select: none;
    user-select: none;
    --milestone-gap: 1.25vw;
    --milestone-visible-count: 3;
    --milestone-card-width: calc((100% - ((var(--milestone-visible-count) - 1) * var(--milestone-gap))) / var(--milestone-visible-count));
}

.milestone-slider-viewport.is-dragging {
    cursor: grabbing;
}

.milestone-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    gap: var(--milestone-gap);
    padding: 0;
    margin: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    margin-bottom: 20px;
}

.milestone-track.no-transition {
    transition: none;
}

.milestone-card {
    position: relative;
    flex: 0 0 var(--milestone-card-width);
    width: var(--milestone-card-width);
    min-width: var(--milestone-card-width);
    max-width: var(--milestone-card-width);
    box-sizing: border-box;
    flex-shrink: 0;
    align-self: stretch;
    background-color: #F8F8F9;
    border-radius: 30px;
    padding: 2.2vw 1.75vw 1.75vw;
    min-height: 30vw;
    height: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(26, 43, 60, 0.04);
}

.milestone-card.is-active {
    background: #EBEDEE 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 20px #0000001A;
    border: 1px solid #DBDDDF;
}

.milestone-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    height: 100%;
}

/* Side cards: list top, year bottom (red) */
.milestone-card:not(.is-active) .milestone-list {
    order: 1;
    flex: 0 1 auto;
}

.milestone-card:not(.is-active) .milestone-year {
    order: 2;
    margin-top: auto;
    padding-top: 1.25vw;
}

/* Center card: year top (orange), list bottom */
.milestone-card.is-active .milestone-year {
    order: 1;
    flex-shrink: 0;
}

.milestone-card.is-active .milestone-list {
    order: 2;
    margin-top: auto;
    padding-top: 3.5vw;
}

.milestone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--blackpara);
}

.milestone-list li {
    position: relative;
    padding-left: 1.1em;
    margin-bottom: 0.25em;
    line-height: 140%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.milestone-list li:last-child {
    margin-bottom: 0;
}

.milestone-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.35em;
    height: 0.35em;
    border-radius: 50%;
    background-color: var(--redcolor);
}

.milestone-year {
    color: var(--redcolor);
    font-size: var(--text-100);
    line-height: 0.95;
    margin: 0;
    letter-spacing: -0.02em;
}

.milestone-card.is-active .milestone-year {
    color: var(--orange);
}

.milestone-drag-btn {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%) scale(0.88);
    width: 7.5vw;
    height: 7.5vw;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--blackpara);
    font-size: var(--text-20);
    font-weight: 500;
    box-shadow: 0px 10px 20px #0000001A;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0.45s;
    cursor: grab;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    pointer-events: none;
}

.milestone-card:hover .milestone-drag-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    box-shadow: 0px 12px 24px #00000024;
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0s;
}

.milestone-drag-btn:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.96);
    transition-duration: 0.15s;
}

@media only screen and (max-width: 991.5px) {
    :root {
        --text-100: 3.5rem;
    }

    .milestone-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .milestone-header {
        margin-bottom: 1.75rem;
        padding: 0 15px;
    }

    .milestone-slider {
        padding: 0 15px;
    }

    .milestone-slider-viewport {
        --milestone-gap: 12px;
        --milestone-visible-count: 1;
        --milestone-card-width: calc(100% - 8px);
    }

    .milestone-track {
        align-items: stretch;
    }

    .milestone-card {
        border-radius: 20px;
        padding: 24px 18px 20px;
        min-height: 380px;
    }

    /* Only active slide uses highlighted card on mobile */
    .milestone-card:not(.is-active) {
        background-color: #F8F8F9;
        box-shadow: 0 4px 24px rgba(26, 43, 60, 0.04);
        border: none;
    }

    /* Mobile: single active card — list top, year bottom (like design) */
    .milestone-card.is-active .milestone-list {
        order: 1;
        margin-top: 0;
        padding-top: 0;
        flex: 0 1 auto;
    }

    .milestone-card.is-active .milestone-year {
        order: 2;
        margin-top: auto;
        padding-top: 2rem;
        color: var(--redcolor);
        font-size: 60px;
        text-align: center;
    }

    .milestone-year {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .milestone-drag-btn {
        width: 88px;
        height: 88px;
        min-width: 88px;
        min-height: 88px;
        font-size: 11px;
        gap: 0.15rem;
        top: 50%;
    }
}

@media only screen and (max-width: 767.5px) {
    .milestone-card {
        min-height: 360px;
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    .milestone-year {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }
}

/* Desktop only: center card layout (year top, list bottom) */
@media only screen and (min-width: 992px) {
    .milestone-card.is-active .milestone-year {
        order: 1;
        color: var(--orange);
    }

    .milestone-card.is-active .milestone-list {
        order: 2;
        margin-top: auto;
        padding-top: 3.5vw;
    }

    .milestone-card:not(.is-active) .milestone-list {
        order: 1;
    }

    .milestone-card:not(.is-active) .milestone-year {
        order: 2;
        margin-top: auto;
        color: var(--redcolor);
    }
}

/* Founder & Leadership Section Styling */
.founder-section {
    background-color: #E7E9EB;
    padding-top: 6vw;
    padding-bottom: 6vw;
}

.founder-quote-box {
    background-color: var(--orange);
    border-radius: 30px;
    padding: 7% 3.75%;
    height: 100%;
}

.founder-quote-text {
    color: var(--blackpara);
    font-size: var(--text-40);
    font-weight: 700;
    /* bold */
    line-height: 120%;
    margin-bottom: 2.2rem;
}

.founder-quote-box p {
    color: var(--blackpara);
    font-size: var(--text-20);
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 1rem;
}

.founder-quote-box p:last-child {
    margin-bottom: 0;
}

/* Founder Profile Card */
.founder-card {
    background-color: var(--white, #ffffff);
    border-radius: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.founder-img-box {
    width: 100%;
    overflow: hidden;
    padding-top: 2vw;
}

.founder-img-box img {
    transition: transform 0.5s ease;
    object-fit: cover;
}

.founder-card:hover .founder-img-box img {
    transform: scale(1.03);
}

.founder-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 8%;
}

.founder-card-name {
    color: var(--blackpara);
    font-size: var(--text-50);
    font-weight: 700;
    /* bold */
    margin-bottom: 0.5rem;
    line-height: 110%;
}

.founder-card-title {
    color: var(--blackpara);
    font-size: var(--text-30);
    font-weight: 500;
    /* medium */
    margin-bottom: 0;
    line-height: 120%;
}

/* Responsive adjustments */
@media only screen and (max-width: 991.5px) {
    .founder-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .founder-quote-box {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .founder-quote-text {
        margin-bottom: 1.5rem;
    }

    .founder-card {
        border-radius: 20px;
        margin-top: 0rem;
    }

    .founder-card-info {
        padding: 20px 15px;
        flex-grow: unset;
    }
}

.long-term-capital {
    background-color: #E7E9EB;
    padding: 6rem 0rem 6vw;
}

/* --- INVESTOR SLIDER SECTION --- */
.investor-slider-container {
    position: relative;
    width: 100%;
    margin-top: 3vw;
    margin-left: 10vw;
}

.investor-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.investor-slider {
    width: 100%;
}

/* Ensure Uniform Heights for Slider Cards */
.investor-slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.investor-slider .slick-slide {
    height: auto !important;
    display: flex !important;
}

.investor-slider .investor-slide {
    height: auto !important;
    display: flex !important;
    margin-right: 10vw;
    /* Gap between slides */
}

.investor-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 2.5vw;
    padding: 0.5vw 0.5vw 2vw 0.5vw;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    height: 100%;
    width: 60vw;
}

.investor-card-header {
    background-color: #EAECEF;
    border-radius: 2vw;
    padding: 1.2vw 2vw;
    width: 100%;
}

.investor-card-header h4 {
    font-weight: 700;
}

.investor-card-body {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2vw;
}

.investor-card-content-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding-left: 1vw;
}

.investor-card-content-left p {
    line-height: 1.3 !important;
    margin-bottom: 0;
    text-align: justify;
    text-justify: inter-word;
}

.investor-card-content-right {
    width: 30%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.investor-photo {
    width: 100%;
    height: auto;
    border-radius: 1.5vw;
    object-fit: cover;
}

.investor-slider .slick-prev,
.investor-slider .slick-next {
    position: absolute;
    left: 63.25vw;
    /* Perfectly centered inside the 10vw gap */
    width: 3.5vw;
    height: 3.5vw;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
    cursor: pointer;
    border: none;
    background-color: transparent;
    outline: none;
}

.investor-slider .slick-prev {
    top: calc(50% - 2.2vw);
    /* Stacked vertically on top */
    background-image: url(../images/about/investor-slider-left-arrow.svg);
}

.investor-slider .slick-next {
    top: calc(50% + 1.8vw);
    /* Stacked vertically on bottom */
    background-image: url(../images/about/investor-slider-right-arrow.svg);
}

/* Hide slick default text arrows */
.investor-slider .slick-prev:before,
.investor-slider .slick-next:before {
    font-size: 0px !important;
    display: none !important;
}

/* Indicators */
.investor-slider-wrapper .slick-dots {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8vw;
    list-style: none;
    padding: 0;
    margin-top: 3vw;
    margin-bottom: 0;
    bottom: -3vw;
    left: -8vw;
    right: 0vw;
    margin: 0px auto;
    display: table;
}

.investor-slider-wrapper .slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0vw 0.4vw !important;
    padding: 0 !important;
}

.investor-slider-wrapper .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 2vw;
    height: 0.35vw;
    padding: 0;
    border: none;
    border-radius: 4px;
    background-color: #D1D5DB;
    /* Grey line */
    cursor: pointer;
    transition: all 0.3s ease;
}

.investor-slider-wrapper .slick-dots li button:before {
    font-size: 0px;
}

.investor-slider-wrapper .slick-dots li.slick-active button {
    width: 2.7vw;
    /* Long line */
    background-color: #F89F32;
    /* Orange color */
}

/* Mobile responsive */
@media only screen and (max-width: 991px) {
    .investor-slider-container {
        margin-top: 25px;
        margin-left: 0;
        padding: 0 15px;
    }

    .investor-slider .slick-track {
        display: block !important;
    }

    .investor-slider .slick-slide {
        display: block !important;
        height: auto !important;
    }

    .investor-slide {
        margin-right: 0;
    }

    .investor-card {
        border-radius: 15px;
        padding: 16px;
        gap: 16px;
        width: 100%;
        height: auto !important;
    }

    .investor-card-header {
        border-radius: 10px 10px 0px 0px;
        padding: 10px 16px;
    }

    .investor-card-header h4 {
        font-size: 20px !important;
    }

    .investor-card-body {
        flex-direction: column-reverse;
        /* Put photo on top/middle, text on bottom */
        gap: 16px;
    }

    .investor-card-content-left {
        width: 100%;
        gap: 12px;
        padding-left: 0;
    }

    .investor-card-content-left p {
        font-size: 15px !important;
        line-height: 1.4 !important;
        text-align: justify;
        text-justify: inter-word;
    }

    .investor-card-content-right {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .investor-photo {
        border-radius: 12px;
        max-width: 250px;
    }

    /* Arrows horizontally stacked under the slider on mobile */
    .investor-slider .slick-prev,
    .investor-slider .slick-next {
        position: absolute;
        top: auto;
        bottom: -80px;
        width: 40px;
        height: 40px;
        left: auto;
        transform: none;
    }

    .investor-slider .slick-prev {
        left: calc(50% - 45px);
        background-image: url(../images/about/investor-slider-left-arrow.svg);
    }

    .investor-slider .slick-next {
        left: calc(50% + 5px);
        background-image: url(../images/about/investor-slider-right-arrow.svg);
    }

    .investor-slider-wrapper .slick-dots {
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
        bottom: -4vw;
        left: 0vw;
    }

    .investor-slider-wrapper .slick-dots li button {
        width: 20px;
        height: 4px;
    }

    .investor-slider-wrapper .slick-dots li.slick-active button {
        width: 40px;
    }

    .long-term-capital {
        padding: 3rem 0rem 10vw;
    }

    .investor-slider .investor-slide {
        margin-right: 0vw;
    }
}

@media only screen and (max-width: 767px) {
    .long-term-capital {
        padding: 3rem 0rem 30vw;
    }

    .investor-slider .slick-prev,
    .investor-slider .slick-next {
        bottom: -30vw;
    }

    .investor-slider-wrapper .slick-dots {
        bottom: -12vw;
        margin-top: 0px;
    }
}

.bod-oversight-bgg {
    background-image: url(../images/about/bod-about-bgg.png);
}

.h-bod-padd {
    padding: 5vw 0vw 6vw 0vw;
}

/* --- BOARD OF DIRECTORS SLIDER SECTION --- */
.bod-slider-container {
    position: relative;
    width: 100%;
    margin-left: 10vw;
    margin-top: 3.5vw;
}

.bod-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.bod-slider {
    width: 100%;
}

/* Ensure Uniform Heights for BOD Slides */
.bod-slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.bod-slider .slick-slide {
    height: auto !important;
    display: flex !important;
}

.bod-slider .bod-slide {
    height: auto !important;
    display: flex !important;
    margin-right: 2vw;
    /* Slide gap */
}

.bod-card {
    position: relative;
    width: 23vw;
    border-radius: 1vw;
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.04);
}

.bod-card-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.bod-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bod-card:hover .bod-photo {
    transform: scale(1.03);
}

/* Orange circular up-right arrow button */
.bod-top-arrow {
    position: absolute;
    top: 0.5vw;
    right: 0.5vw;
    width: 3.5vw;
    height: 3.5vw;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bod-card:hover .bod-top-arrow {
    transform: scale(1.1);
}

.bod-top-arrow img {
    width: 100%;
    height: auto;
}

/* Text overlay with dark gradient at the bottom */
.bod-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3vw 1.3vw 1vw 1.3vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    gap: 0.1vw;
    z-index: 3;
}

.bod-card-overlay h4 {
    margin-bottom: 0;
}

.bod-card-overlay p {
    margin-bottom: 0;
    min-height: 2.8vw;
    /* Reserve height for exactly 2 lines of text to ensure horizontal alignment across all cards */
    display: flex;
    align-items: flex-start;
    line-height: 1.2vw;
}

.bod-slider .slick-prev,
.bod-slider .slick-next {
    display: none !important;
}

/* Shared section heading arrows (Board of Directors + Team Veritas) */
.section-slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2vw;
}

.section-slider-head-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.section-slider-nav {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    flex: 0 0 auto;
    margin-bottom: 0.4vw;
}

.section-slider-arrow {
    width: 3.5vw;
    height: 3.5vw;
    padding: 0;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    outline: none;
}

.section-slider-prev {
    background-image: url(../images/about/bod-arrow-left.svg);
}

.section-slider-next {
    background-image: url(../images/about/bod-arrow-right.svg);
}

/* Team Veritas: white circle + black arrow + soft shadow (design match) */
#team-veritas .section-slider-nav {
    gap: 1vw;
}

#team-veritas .section-slider-arrow {
    width: 3.2vw;
    height: 3.2vw;
    border-radius: 50%;
    background-color: #ffffff;
    background-image: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    position: relative;
}

#team-veritas .section-slider-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.15vw;
    height: 1.15vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#team-veritas .section-slider-prev::before {
    transform: translate(-35%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 12H5M5 12L11 6M5 12L11 18' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#team-veritas .section-slider-next::before {
    transform: translate(-65%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12H19M19 12L13 6M19 12L13 18' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* BOD Progress Dots styling */
.bod-slider-wrapper .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4vw;
    list-style: none;
    padding: 0;
    margin-top: 3vw;
    margin-bottom: 0;
    bottom: -3vw;
    left: -27vw;
    right: 0;
    margin: 0px auto;
}

.bod-slider-wrapper .slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0vw 0.4vw !important;
    padding: 0 !important;
}

.bod-slider-wrapper .slick-dots li button:before {
    font-size: 0px;
}

.bod-slider-wrapper .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 2vw;
    height: 0.35vw;
    padding: 0;
    border: none;
    border-radius: 4px;
    background-color: #B83445;
    border: 1px solid #B83445;
    /* Grey line */
    cursor: pointer;
    transition: all 0.3s ease;
}

.bod-slider-wrapper .slick-dots li.slick-active button {
    width: 2.7vw;
    /* Long line */
    background-color: transparent;
    border: 1px solid #B83445;
    /* Dark red/pink active indicator */
}

/* BOD Mobile Responsive Styles */
@media only screen and (max-width: 991px) {
    .bod-slider-container {
        margin-left: 0;
        padding: 0 0 0 15px !important;
        margin-right: -30px !important;
    }

    .bod-slider .bod-slide {
        margin-right: 4vw;
    }

    .bod-card {
        width: 60vw;
        border-radius: 25px;
        height: 100% !important;
    }

    .bod-photo {
        border-radius: 15px;
    }

    .bod-top-arrow {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .bod-card-overlay {
        padding: 24px 20px 25px 20px;
        gap: 1vw;
    }

    .bod-card-overlay p {
        min-height: auto;
    }

    .bod-slider-wrapper .slick-dots {
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
        bottom: -4vw;
        left: 0vw;
    }

    .bod-slider-wrapper .slick-dots li button {
        width: 20px;
        height: 4px;
    }

    .bod-slider-wrapper .slick-dots li.slick-active button {
        width: 40px;
    }

    #board-of-directors .h-bod-padd .content-visible .row:nth-child(2) .col-12 {
        padding-right: 0px;
    }
}

@media only screen and (max-width: 767px) {
    #board-of-directors {
        padding-bottom: 25vw !important;
    }

    .bod-slider-wrapper .slick-dots {
        bottom: -10vw;
        margin-top: 0px;
    }

    .bod-top-arrow {
        top: 10px;
        right: 10px;
    }

    .bod-card-overlay {
        padding: 19px 15px 20px 15px;
        gap: 2vw;
    }

    .bod-card-overlay h4 {
        font-size: 17px;
    }

    .bod-card-overlay p {
        font-size: 14px;
        line-height: 16px;
    }

}

/* --- TEAM VERITAS LEADERS SLIDER SECTION --- */
.custom-leaders-tabs {
    border: none;
    gap: 1vw;
    margin-bottom: 2vw;
    display: inline-flex;
    background: transparent;
    padding: 0;
}

.custom-leaders-tabs .nav-item {
    margin: 0;
}

.custom-leaders-tabs .nav-link {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 1vw;
    color: #1A2B3C;
    background-color: #E2E5E8;
    border: none;
    border-radius: 50px;
    padding: 0.6vw 3vw;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
    box-shadow: none;
}

.custom-leaders-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: #B83445 !important;
}

.custom-leaders-tabs .nav-link:hover:not(.active) {
    background-color: #D4D7DA;
    color: #1A2B3C;
    transform: translateY(-2px);
}

.leaders-slider-container {
    position: relative;
    width: 100%;
    margin-left: 10vw;
    margin-top: 0.5vw;
}

.leaders-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

/* Ensure Uniform Heights for Leaders Slides */
.leaders-slider-1 .slick-track,
.leaders-slider-2 .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.leaders-slider-1 .slick-slide,
.leaders-slider-2 .slick-slide {
    height: auto !important;
    display: flex !important;
}

.leaders-slider-1 .bod-slide,
.leaders-slider-2 .bod-slide {
    height: auto !important;
    display: flex !important;
    margin-right: 2vw;
    /* Slide gap */
}

/* DOTS STYLING */
.leaders-slider-wrapper .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4vw;
    list-style: none;
    padding: 0;
    margin-top: 3vw;
    margin-bottom: 0;
    bottom: -3vw;
    left: -27vw;
    right: 0;
    margin: 0px auto;
}

.leaders-slider-wrapper .slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0vw 0.4vw !important;
    padding: 0 !important;
}

.leaders-slider-wrapper .slick-dots li button:before {
    font-size: 0px;
}

.leaders-slider-wrapper .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 2vw;
    height: 0.35vw;
    padding: 0;
    border: none;
    border-radius: 4px;
    background-color: #B83445;
    border: 1px solid #B83445;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leaders-slider-wrapper .slick-dots li.slick-active button {
    width: 2.7vw;
    background-color: transparent;
    border: 1px solid #B83445;
}

.leaders-slider-1 .bod-card-overlay p,
.leaders-slider-2 .bod-card-overlay p {
    min-height: 2vw;
}

/* RESPONSIVE MEDIA QUERIES */
@media only screen and (max-width: 991px) {
    .custom-leaders-tabs {
        gap: 8px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .custom-leaders-tabs .nav-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .leaders-slider-container {
        margin-left: 0;
        padding: 0 0 0 15px !important;
        margin-right: -30px !important;
    }

    .leaders-slider-1 .bod-slide,
    .leaders-slider-2 .bod-slide {
        margin-right: 4vw;
    }

    .section-slider-head {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .section-slider-nav {
        width: 100%;
        justify-content: flex-end;
        gap: 10px;
        margin: 12px 0 0;
    }

    .section-slider-arrow {
        width: 40px;
        height: 40px;
    }

    #team-veritas .section-slider-arrow {
        width: 40px;
        height: 40px;
    }

    #team-veritas .section-slider-arrow::before {
        width: 14px;
        height: 14px;
    }

    #team-veritas .section-slider-nav {
        gap: 12px;
    }

    .leaders-slider-wrapper .slick-dots {
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
        bottom: -4vw;
        left: 0vw;
    }

    .leaders-slider-wrapper .slick-dots li button {
        width: 20px;
        height: 4px;
    }

    .leaders-slider-wrapper .slick-dots li.slick-active button {
        width: 40px;
    }
}

@media only screen and (max-width: 767px) {
    #team-veritas {
        padding-bottom: 25vw !important;
    }

    .leaders-slider-wrapper .slick-dots {
        bottom: -10vw;
        margin-top: 0px;
    }
}

/* --- REGULATORY UPDATES DROPDOWN OVERRIDES --- */
.reg-filter-box {
    width: 20vw !important;
}

.reg-year-dropdown .dropdown-menu {
    width: 20vw !important;
}

.reg-select-label {
    font-family: 'Geist', sans-serif;
    color: #1A2B3C;
    font-weight: 700;
    font-size: 1.3vw;
}

@media only screen and (max-width: 991px) {
    .reg-filter-box {
        width: 280px !important;
    }

    .reg-year-dropdown .dropdown-menu {
        width: 280px !important;
    }

    .reg-select-label {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.how-regulation {
    background-color: #e8e9eb;
}

.how-regul-padd {
    padding: 5vw 0vw;
}

/* --- REGULATORY CARDS SECTION --- */
.regul-card-grid {
    margin-top: 3vw;
}

.regulatory-card {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.04);
    border-radius: 1vw;
    padding: 4.5vw 2vw 1.3vw 2vw;
    margin-bottom: 1.5vw;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 10.5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    border: 1px solid transparent;
}

.regulatory-card:hover {
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
    border-color: rgba(184, 52, 69, 0.2);
}

.regulatory-card .pdf-icon-box {
    position: absolute;
    top: 1.5vw;
    right: 1.5vw;
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.regulatory-card:hover .pdf-icon-box {
    transform: scale(1.1);
}

.regulatory-card .pdf-icon-box img {
    width: 100%;
    height: auto;
}

.regulatory-card .regul-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
}

.regulatory-card .regul-card-text h4,
.regulatory-card .regul-card-text p {
    margin-bottom: 0;
    line-height: 1.2;
}

/* RESPONSIVE STYLES */
@media only screen and (max-width: 991px) {
    .regul-card-grid {
        margin-top: 30px;
    }

    .regulatory-card {
        border-radius: 15px;
        padding: 50px 20px 20px 20px;
        margin-bottom: 20px;
        min-height: 140px;
    }

    .regulatory-card .pdf-icon-box {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .regulatory-card .regul-card-text {
        gap: 4px;
    }

    .regulatory-card .regul-card-text h4,
    .regulatory-card .regul-card-text p {
        font-size: 16px;
    }

    .how-regulation .mediakit-head h3 span {
        display: inline;
    }
}

@media only screen and (max-width: 767px) {

    .regulatory-card {
        border-radius: 10px;
        padding: 15px 15px 15px 15px;
        margin-bottom: 20px;
        min-height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .regulatory-card .pdf-icon-box {
        position: unset;
        top: 15px;
        right: 15px;
        width: 25px;
        height: 25px;
    }

    .regulatory-card .regul-card-text {
        gap: 2px;
        width: 50%;
    }

    .regulatory-card .regul-card-text h4,
    .regulatory-card .regul-card-text p {
        font-size: 14px;
        line-height: 16px;
    }

    .about-us-right .about-para,
    .fullpara {
        font-size: 15px;
    }

    #founder .inner-container-fluid .row .col-lg-8 {
        order: 2;
    }
}

/*accordin*/
.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.custom-accordion-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 20px #0000001A;
    border: 1px solid #eaeaea;
}

.custom-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #ffffff;
}

.custom-accordion-title {
    font-size: var(--text-25);
    font-weight: 700;
    color: var(--blackpara);
    margin: 0;
}

.custom-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--blackpara);
}

.custom-accordion-header.active {
    background-color: var(--redcolor);
}

.custom-accordion-header.active .custom-accordion-title,
.custom-accordion-header.active .custom-accordion-icon {
    color: #ffffff;
}

.custom-accordion-header.active .custom-accordion-icon {
    transform: rotate(180deg);
}

.custom-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
}

.custom-accordion-content {
    padding: 20px 24px;
    border-top: 1px solid #eaeaea;
    color: var(--blackpara);
    font-size: var(--text-20);
    line-height: 1.6;

}

.custom-accordion-item .annual-return-card-wrap {
    margin-top: 0px;
}

.custom-accordion-item .custom-accordion-content>*:not(:last-child) {
    margin-bottom: 1vw;

}

.custom-accordion-item .announ-pdf-card {
    border: 1px solid rgba(0, 0, 0, 0.5) !important;
}

@media (min-width: 992px) {
    .custom-accordion-item .announ-pdf-card {
        padding: 1vw 1.5vw;
    }

    .custom-accordion-item .announ-pdf-card .announ-card-title {
        font-size: var(--text-20);
    }

    .custom-accordion-item .announ-pdf-card .pdf-icon-box {
        width: 1.5vw;
        height: 1.5vw;
    }
}

@media (max-width: 767px) {
    .custom-accordion-header {
        padding: 16px 20px;
    }

    .custom-accordion-item .announ-pdf-card {
        padding: 16px;
    }

    .custom-accordion-item .custom-accordion-content>*:not(:last-child) {
        margin-bottom: 16px;
    }

    .custom-accordion-item .annual-return-card-wrap {
        margin-bottom: 0px;
    }

    .custom-accordion-item .announ-pdf-card .pdf-icon-box {
        width: 25px;
        height: 25px;
    }

    .custom-accordion-content {
        padding: 16px 20px;
    }
}

/*accordion end */
/* FAQs page bullets to match live faqs.php */
.annual-return-singlepage-page .board-only-para ul.faqs-live-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.annual-return-singlepage-page .board-only-para ul.faqs-live-bullets li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.annual-return-singlepage-page .board-only-para ul.faqs-live-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #b72438;
  box-sizing: border-box;
  border: 2px solid #b72438;
  background-clip: content-box;
  background: transparent;
  /* filled center like fa-dot-circle */
  box-shadow: inset 0 0 0 2px #b72438;
  background: #b72438;
  border: none;
}
