section#about-us-banner {
    height: 80svh !important;
    min-height: 80svh !important;
}
.container{
    position:unset !important;
}
.tab-content>.active{
    opacity:1;
}
#about-us-nav {
    background-color: #f6f6f6;
    position: relative;
    overflow: hidden;
}

.about-us-nav-list {
    max-width: 80%;
    margin: auto;
    padding: 1rem;
}

.about-us-nav-list ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.about-us-nav-list ul li {
    flex: 1;
}

.about-us-nav-list ul li a {
    display: block;
    text-decoration: none;
    width: 100%;
    padding: 0.9rem;
    text-align: center;
    font: 400 clamp(1.1rem, 2.2vw, 1.1rem) / 1.4 var(--font-helvetica);
    color: var(--white-color);
    border-radius: 29px;
    background-image: -moz-linear-gradient(-180deg, rgb(71, 39, 162) 0%, rgb(36, 137, 208) 85%, rgb(0, 234, 254) 100%);
    background-image: -webkit-linear-gradient(-180deg, rgb(71, 39, 162) 0%, rgb(36, 137, 208) 85%, rgb(0, 234, 254) 100%);
    background-image: -ms-linear-gradient(-180deg, rgb(71, 39, 162) 0%, rgb(36, 137, 208) 85%, rgb(0, 234, 254) 100%);
}

#about-us {
    padding-top: 3rem;
    padding-bottom: 0;
}

#about-us .about-us-content p {
    margin-bottom: 0;
}

#about-us .about-us-content p span {
    color: #2780cc;
    font-weight: 600;
}

#our-existence {
    position: relative;
    overflow: hidden;
    margin-top: 4%;
    padding-bottom: 0;
}

.our-existence-content {
    position: absolute;
    top: 30%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-existence-content h1,
.our-existence-content h2 {
	font:var(--heading-font);
    color: var(--white-color);
    margin-bottom: 0;
    margin-top: 17%;
    font-weight: 500;
}

.our-existence-content p {
    color: var(--white-color);
    margin-bottom: 20px;
    max-width: 80%;
    font: var(--body-font);
}

.our-existence-content h3 {
    max-width: 80%;
    font: 600 clamp(1.1rem, 2.2vw, 1.3rem) / 1.2 var(--font-helvetica);
    color: var(--white-color);
    margin-bottom: 20px;
}

#what-we-want-to-do {
    padding-top: 3rem;
    padding-bottom: 0;
    position: relative;
}

#what-we-want-to-do::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 85%;
    background-color: rgb(229, 229, 229);
    z-index: -1;
}

#what-we-want-to-do .what-we-want-to-do-content .section-title {
    margin-bottom: 0rem;
}

#what-we-want-to-do .what-we-want-to-do-content p {
    margin-bottom: 0rem;
    font: 400 clamp(1.1rem, 2.2vw, 1rem) / 1.2 var(--font-helvetica);
}

.what-we-want-to-do-content {
    padding-top: 3rem;
}

/* ==========================================================
How We
========================================================== */
#how-we {
    padding: 0rem 0 5rem;
    position: relative;
    overflow: hidden;
}

#how-we .section-title h2 {
    color: var(--black-color);
}

#how-we .section-content p {
    color: var(--black-color);
    padding: 1rem 0 0;
    margin-bottom: 0;
}

/* ===============================
   FLIP CARD CORE
================================ */
.flip-card {
    perspective: 1600px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK COMMON */
.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* FRONT – heading side */
.flip-front {
    background: var(--white-color);
    z-index: 2;
}

/* border gradient remains */
.flip-front::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 44px;
    background: linear-gradient(180deg,
            rgb(71, 39, 162) 0%,
            rgb(36, 137, 208) 85%,
            rgb(0, 234, 254) 100%);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* BACK – gradient + content */
.flip-back {
    background: linear-gradient(180deg,
            rgb(71, 39, 162) 0%,
            rgb(36, 137, 208) 85%,
            rgb(0, 234, 254) 100%);
    transform: rotateY(180deg);
    text-align: left;
}

.flip-front h3 {
    font: 400 clamp(1rem, 2.2vw, 1.5rem) / 1.2 var(--font-helvetica);
    color: var(--black-color);
    text-align: center;
}

.flip-back p {
    font: 400 clamp(0.85rem, 1.1vw, 1rem) / 1.6 var(--font-helvetica);
    color: var(--white-color);
    margin: 0;
}

.how-we-list {
    margin-bottom: 20px;
}

.how-we-list h3 {
    font: 600 clamp(0.9rem, 2.2vw, 1.5rem) / 1.3 var(--font-helvetica);
    background: linear-gradient(180deg,
            rgb(71, 39, 162) 0%,
            rgb(36, 137, 208) 85%,
            rgb(0, 234, 254) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.how-we-box {
    height: 160px;
    /* adjust 150–180 as needed */
}

.flip-inner {
    height: 100%;
}

#focus-on-shareholder {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    /* background-color: var(--black-color); */
    background: url(../images/home/home-ai-native-platforms-bg.png);
    background-size: 100% 100%;
}

#focus-on-shareholder::before {
    content: "";
    display: block;
    background: #272727;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    bottom: 0;
}

#focus-on-shareholder h2,
#focus-on-shareholder p {
    color: var(--white-color);
}

#v-pills-investment-thesis-tab.nav-pills .nav-link {
    text-align: left;
    padding: 2rem 0;
    border-bottom: 2px solid;
    border-image-source: linear-gradient(180deg,
            rgb(71, 39, 162) 0%,
            rgb(36, 137, 208) 85%,
            rgb(0, 234, 254) 100%);
    border-image-slice: 1;
    color: var(--white-color);
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

#v-pills-investment-thesis-tab.nav-pills .nav-link.active,
#v-pills-investment-thesis-tab.nav-pills .show>.nav-link {
    background: unset;
}

#v-pills-investment-thesis-tab.nav-pills .nav-link span {
    width: 80%;
}

#v-pills-investment-thesis-tab.nav-pills .nav-link picture {
    flex: 1;
    text-align: end;
    height: 45px;
    width: 45px;
}

div#v-pills-investment-thesis-tab {
    flex: 0 0 40%;
    width: 40%;
}

.focus-on-shareholder-tab {
    gap: 5rem;
}

.investment-thesis-content {
    padding-top: 2rem;
}

.investment-thesis-content ul {
    padding: 1rem 0;
    margin-inline-start: 2rem;
    list-style: disc;
}

.investment-thesis-content ul li {
    color: var(--white-color);
    margin-bottom: 0.5rem;
	font: var(--para-font);
}

.focus-on-shareholder-tab {
    align-items: flex-start;
    /* ❗important */
}

.aligned-tab-content {
    position: relative;
    transition: transform 0.45s ease;
}

/* Content fade animation */
.investment-thesis-content {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* When tab is active */
.tab-pane.active .investment-thesis-content {
    opacity: 1;
    transform: translateY(0);
}

/* Hover + Active state */
#v-pills-investment-thesis-tab.nav-pills .nav-link:hover,
#v-pills-investment-thesis-tab.nav-pills .nav-link.active {
    background: linear-gradient(180deg,
            rgb(71, 39, 162) 0%,
            rgb(36, 137, 208) 85%,
            rgb(0, 234, 254) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* About Us nav */
#about-us-nav {
  background: #fff;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: top 0.3s;
  position: relative; /* default relative */
}

/* placeholder to prevent jump */
.sticky-placeholder {
  display: none;
  height: 0;
}
#focus-on-shareholder .aligned-tab-content {
  position: relative;
  overflow: hidden;
}

@media screen and (width: 3024px) and (height: 1964px) {
	.our-existence-content h2 {
    margin-top: 90%;
}
}
@media (max-width: 991px) {
	#focus-on-shareholder {
    background-size: cover;
}
	.what-we-want-to-do-image {
    padding-top: 3rem;
}

section#about-us {
    padding-bottom: 3rem;
}
    .about-us-nav-list {
        max-width: 90%;
        padding: 0;
    }

    .about-us-nav-list ul li {
        flex: 0 0 47%;
        flex-shrink: 0;
    }

    .about-us-nav-list ul {
        gap: 1rem 0;
        flex-direction: row;
    }

    #about-us-nav {
        padding-top: 2rem;
    }

    #our-existence {
        background: linear-gradient(90deg, #2067A1 0%, #3B3194 100%);
        margin: 0;
        padding: 1rem;
    }

    #our-existence .our-existence-bg-image {
        display: none;
    }

    .our-existence-content {
        position: unset;
    }

    .our-existence-content h2 {
        margin-top: 12%;
        margin-bottom: 2rem;
    }

    .our-existence-content h3 {
        line-height: 25px;
    }

    .our-existence-content h3,
    .our-existence-content p {
        max-width: 100%;
    }

    #what-we-want-to-do {
        padding-top: 0;
    }

    #what-we-want-to-do .what-we-want-to-do-content .section-title {
        margin-bottom: 2rem;
        max-width: 100%;
    }

    #how-we {
        padding-top: 4rem;
    }

    .how-we-box {
        padding: 0 2rem;
    }

    #focusShareholderAccordion .accordion-item,
    #focusShareholderAccordion .accordion-button {
        background: unset;
        color: var(--white-color);
        font-size: 15px;
        box-shadow: unset;
    }

    #focusShareholderAccordion .accordion-item {
        /* border: 2px solid; */
        border-image-source: linear-gradient(180deg,
                rgb(71, 39, 162) 0%,
                rgb(36, 137, 208) 85%,
                rgb(0, 234, 254) 100%);
        border-image-slice: 1;
        margin-bottom: 1rem;
        border-top: 2px solid !important;
    }

    #focusShareholderAccordion .accordion-button:not(.collapsed) {
        border-bottom: 2px solid;
        border-image-source: linear-gradient(180deg,
                rgb(71, 39, 162) 0%,
                rgb(36, 137, 208) 85%,
                rgb(0, 234, 254) 100%);
        border-image-slice: 1;
    }

    #focusShareholderAccordion .investment-thesis-content p,
    #focusShareholderAccordion .investment-thesis-content ul li {
        color: var(--white-color);
    }

    #focusShareholderAccordion .investment-thesis-content {
        opacity: 1;
        padding: 20px;
    }

    /* ================================
   ACCORDION PLUS / MINUS ICON
================================ */

    #focusShareholderAccordion .accordion-button {
        position: relative;
        padding-right: 48px;
        font-weight: 600;
    }

    /* Remove default bootstrap arrow */
    #focusShareholderAccordion .accordion-button::after {
        display: none;
    }

    /* PLUS icon */
    #focusShareholderAccordion .accordion-button::before {
        content: "+";
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 26px;
        font-weight: 400;
        transition: all 0.3s ease;
    }

    /* MINUS icon (when open) */
    #focusShareholderAccordion .accordion-button:not(.collapsed)::before {
        content: "–";
        font-size: 32px;
        transform: translateY(-50%) rotate(0);
        color: var(--white-color);
    }

    /* Accordion body spacing */
    #focusShareholderAccordion .accordion-body {
        padding-top: 10px;
    }

    #focusShareholderAccordion .accordion-button:not(.collapsed) {
        background: linear-gradient(90deg,
                #14E6F2 0%,
                #2F8CFF 48%,
                #3B4FE6 100%);
        background-size: 200% 200%;
        background-position: 0% 50%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
.inner-banner .inner-banner-image img {
    height: auto;
}

section#about-us-banner {
    height: auto !important;
    min-height: auto !important;
}
}