@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    font-size: 1.025vw;
    line-height: 1.15;
}

body {
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.custom-container {
    max-width: 100%;
    width: 80rem;
    margin-right: auto;
    margin-left: auto;
}

/* header css starts */
header {
    width: 100%;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 99;
    padding: .75rem 0;
    transition: background-color 0.1s ease, transform 0.3s ease;
}

.header.scrolled {
    background-color: #fff;
}

#siteHeader.hide {
    transform: translateY(-100%);
}

.nav-wrapper {
    justify-content: space-between;
    align-items: center;
}

.nav-wrapper .logo img {
    height: 3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 5rem;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    color: #28324A;
}

.nav-links li a:hover,
.site-footer .footer-links li a:hover {
    color: #3689FF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: .3125rem;
}

.bar {
    width: 1.5625rem;
    height: .1875rem;
    background-color: #28324A;
    transition: all 0.3s ease;
}

/* Toggle hamburger to X */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

section.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 3rem 0;
}

.hero-section .section-background {
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.hero-section h1 {
    font-size: 6.5rem;
    line-height: 5.5rem;
    letter-spacing: -0.4rem;
    color: #28324A;
    font-weight: 600;
}

.hero-section .hero-content {
    display: flex;
    align-items: flex-end;
}

.hero-content ul {
    flex-wrap: wrap;
    width: 70%;
    gap: .625rem;
    margin-left: -5rem;
    margin-bottom: 0.5rem;
}

.hero-content ul li {
    margin: 0 1rem;
    position: relative;
}

.hero-content ul li a{
    font-size: 1.5rem;
}

.hero-content ul li::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 1rem;
    width: .4375rem;
    height: .4375rem;
    background-color: #C0C6D6;
    border-radius: 50%;
}

.hero-content ul li:last-child {
    margin-right: 0;
}

.hero-content ul li:last-child::after {
    display: none;
}

.about-section {
    position: relative;
    background-color: #000;
    overflow: hidden;
    padding-bottom: 15rem !important;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: url('/wp-content/uploads/2025/05/home-about-background.webp') center top / cover no-repeat;
    z-index: 0;
}

.about-section .about-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5rem;
}

.about-content .about-title h2 {
    font-size: 4rem;
    font-weight: 250;
    color: #FFFFFF;
    line-height: 4.5rem;
    width: 90%;
}

.about-content .about-card-wrapper {
    margin-top: 3rem;
}

.about-content .about-card-wrapper .about-card {
    padding: 2.5rem;
    background: rgba(183, 183, 183, 0.25);
    backdrop-filter: blur(2.5rem);
    -webkit-backdrop-filter: blur(2.5rem);
    border: 0;
    border-radius: 1.25rem;
    min-height: 21rem;
}

.about-content .about-card-wrapper .about-card h5 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-content .about-card-wrapper .about-card p {
    font-size: .9375rem;
    line-height: 1.375rem;
    font-weight: 400;
    color: #fff;
}

.about-content .about-card-wrapper .about-card img {
    width: 6.5rem;
    height: 6.5rem;
}

.invest-vision {
    background: linear-gradient(360deg, #D1E5FF 0%, #F5F1EE 92.08%);
}

.invest-vision .invest-title {
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 300;
    color: #28324A;
}

/* ---- */

.invest-vision .section {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 6.25rem 0;
}

.invest-vision .left {
    flex: 1;
    position: sticky;
    top: 6.25rem;
}

.invest-vision .title {
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 1.875rem;
    color: #28324A;
    line-height: 5.5rem;
    letter-spacing: -0.2rem;
}

.invest-vision .images {
    width: 31.875rem;
    height: 25rem;
}

.invest-vision .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
    display: none;
    transition: opacity 0.3s ease;
}

.invest-vision .images img.active {
    display: block;
}

.invest-vision .cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.invest-vision .card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 0;
}

.invest-vision .card img {
    width: 3rem;
    height: 3rem;
    margin-bottom: 2rem;
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #28324A;
    margin-bottom: 1.5rem;
}

.vision-card p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #677184;
}



/* ====== */

.footer {
    background-image: url('/wp-content/uploads/2025/05/footer-background-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lets-build {
    padding: 5rem 0;
}

.lets-build .description-wrapper {
    margin: 2rem 0;
}

.lets-build h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 4rem;
    color: #28324A;
    text-align: center;
}

.lets-build .description-wrapper .description {
    font-size: 1rem;
    color: #677184;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: center;
}

.lets-build .description-wrapper .description-2 {
    font-size: 1.25rem;
    color: #28324A;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: center;
}

.site-footer {
    padding: 4rem 0;
}

.site-footer .footer-logo img {
    height: 4rem;
}

.site-footer .footer-links li {
    margin: 1.5rem 0;
}

.site-footer .footer-links li:first-child {
    margin-top: 0;
}

.site-footer .footer-links li:last-child {
    margin-bottom: 0;
}

.site-footer .footer-links li a {
    color: #28324A;
    font-weight: 400;
    font-size: .9375rem;
    line-height: 1.5rem;
}

.site-footer .address-wrapper p {
    margin-bottom: .5rem;
}

.site-footer .address-wrapper p.headqtrs {
    color: #64657D;
    font-weight: 400;
    font-size: .9375rem;
    line-height: 1.5rem;
}

.site-footer .address-wrapper h5.company-name {
    color: #28324A;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 100%;
}

.site-footer .address-wrapper p.address {
    color: #28324A;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.site-footer .address-wrapper .contact a {
    color: #28324A;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

section.copyright {
    padding: 4rem 0;
}

section.copyright p.copyright-text,
section.copyright p.site-by {
    font-size: .8125rem;
    color: #6778A2;
    font-weight: 400;
}

.btn {
    color: #fff;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    background: #3689FF;
    border: 0;
    border-radius: 3.5rem;
}

/* our-story */

.our-story-banner {
    background: #28324A;
    padding: 5rem 0;
    padding-top: 11rem;
}

.tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #C0C6D6;
    vertical-align: top;
    letter-spacing: normal !important;
    margin-right: 2rem;
    position: relative;
    top: 1rem;
}

.hero-title h1 {
    font-size: 5.5rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.2rem;
}

.our-story-banner p {
    font-size: 1.125rem;
    color: #D9D9D9;
    line-height: 1.6875rem;
}

.our-story-banner .desc-wrapper {
    margin-top: 3rem;
}

.founder-section {
    background: linear-gradient(180deg, #FBF6F2 18.76%, #D1E5FF 92.08%);
    position: relative;
    padding: 5rem 0;
}

.founder-image-wrapper {
    position: absolute;
    width: 51.25rem;
    height: 51.25rem;
    top: -16rem;
    left: 5rem;
}

.founder-image-wrapper img {
    width: auto;
    height: 47.5rem;
}


.founder-section .founder-name {
    color: #28324A;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
}

.founder-section .founder-name span {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75rem;
}

.founder-section .founder-details p {
    color: #28324A;
    font-size: 1.125rem;
    line-height: 1.6875rem;
    font-weight: 400;
}

.founder-section .cards-wrapper {
    margin-top: 13rem;
}

.custom-card {
    border-radius: 3.125rem;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    width: 21rem;
    padding: 5rem 3rem;
    padding-bottom: 2.5rem;
    min-height: 19.5rem;
    backdrop-filter: blur(1.25rem);
    box-shadow: -20px 18px 15px 0px #0000000D;
}

.custom-card .card-img-wrapper {
    position: absolute;
    top: -3.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7.5rem;
    height: 7.5rem;
    background: #FFFFFF;
    box-shadow: 8px 8px 15px 0px #0000000D;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.custom-card .card-img-wrapper img {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
}

.custom-card p {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: #28324A;
}

.investors-banner {
    position: relative;
    padding: 5rem 0;
    padding-top: 11rem;
}

.investors-banner .section-background {
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
}


.investors-banner .hero-title h1 {
    color: #28324A;
}

.investors-banner .hero-title h1 span {
    color: #677184
}

.investors-banner {
    font-size: 1.125rem;
    font-weight: 400;
    color: #28324A;
    line-height: 1.6875rem;
}

.investors-banner .desc-wrapper {
    margin-top: 3rem;
}

.investors-card-wrapper {
    margin: 5rem 0 3rem 0;
}

.investors-card-wrapper .row:first-child {
    margin-bottom: 4rem;
}

.investors-card {
    width: 16.125rem;
    min-height: 15rem;
    padding: 2rem;
    border-radius: 1.25rem;
    background: #ffffff;
    color: #111827;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    margin: auto;
    border: 0;
}

.investors-card .image {
    width: 4rem;
    height: 4rem;
    border-radius: .8rem;
    margin: 1rem 0;
    transition: opacity 0.4s ease;
}

.investors-card .title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: .75rem;
    color: #000000;
}

.investors-card .descrip {
    display: none;
    font-size: 1.125rem;
    line-height: 1.6875rem;
    color: #E7E7FF;
    font-weight: 400;
}

.investors-card .icon {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    font-size: 1.3rem;
    color: #0070f3;
    transition: all 0.4s ease;
}

.investors-card:hover {
    background: #28324A;
}

.investors-card:hover .title,
.investors-card:hover .descrip {
    color: #E7E7FF;
}

.investors-card:hover .descrip {
    display: block;
}

.investors-card:hover .image {
    opacity: 0;
    height: 0;
    margin: 0;
}

.investors-card:hover .icon {
    left: auto;
    right: 1.25rem;
    color: #cbd5e1;
}

.investors-card i.fa-arrow-right {
    display: inline;
}

.investors-card:hover i.fa-arrow-right {
    display: none;
}

.investors-card i.fa-arrow-left {
    display: none;
}

.investors-card:hover i.fa-arrow-left {
    display: inline;
}

.partner-section {
    background: linear-gradient(180deg, #CAE4FF 0%, #FBF6F2 40%, #FBF6F2 75%, #D1E5FF 100%);
    position: relative;
    z-index: 1;
}

.partner-section .partner-vector {
    position: absolute;
    right: 0;
    width: 52rem;
    height: 52rem;
    z-index: -1;
}

.partner-section .partner-title {
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: -0.2rem;
    color: #28324A;
    margin-bottom: 2.5rem;
}

.partner-title-wrapper {
    margin-bottom: 4rem;
}

.partner-title-wrapper p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6875rem;
    color: #28324A;
    width: 55%;
}

.partner-card .icon-wrapper img {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 1.4rem;
}

.partner-card .section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #28324A;
}

.partner-card .section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #28324A;
    width: 80%;
}

.partner-card .section-description {
    font-size: 1.125rem;
    color: #28324A;
    font-weight: 400;
    line-height: 1.6875rem;
    width: 90%;
}

.partner-card .list-heading {
    font-size: 1.375rem;
    font-weight: 500;
    color: #28324A;
    margin-bottom: 2rem;
}

.partner-card .custom-list {
    padding-left: 0;
    width: 90%;
}

.partner-card .custom-list li {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2;
    color: #28324A;
    position: relative;
    padding-left: 1.875rem;
}

.partner-card .custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55rem;
    width: 1.125rem;
    height: 1.125rem;
    background: url('/wp-content/uploads/2025/05/list-tick.webp') no-repeat center center;
    background-size: contain;
}

.insights-banner {
    background: linear-gradient(180deg, #FBF6F2 18.76%, #D1E5FF 92.08%);
    padding: 5rem 0;
    padding-top: 11rem;
}

.insights-banner .tagline {
    color: #677184;
    display: block;
    margin-bottom: 2rem;
}

.insights-banner h1 {
    color: #28324A;
    font-size: 5.4rem;
}

.insights-banner .desc-wrapper p {
    color: #28324A;
    font-size: 1.125rem;
    line-height: 1.6875rem;
    font-weight: 400;
}

.insights-card-wrapper .row:first-child {
    margin-bottom: 2rem;
}

.insights-card {
    position: relative;
    width: 100%;
    max-width: 18rem;
    height: 22.5rem;
    border-radius: 1rem;
    overflow: hidden;
    color: #fff;
    margin: auto;
}

.insights-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insights-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(40, 50, 74, 0) 10%, rgba(40, 50, 74, 0.5) 32%, rgba(40, 50, 74, 0.8) 48%, rgba(40, 50, 74, 0.9) 100%);
    padding: 1.5rem;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    transform: translateY(6%);
    padding-top: 5rem;
}

.insights-card .date {
    font-size: .875rem;
    color: #C0C6D6;
    margin-bottom: .25rem;
}

.insights-card .title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: #FFFFFF;
}

.insights-card .description {
    font-size: .875rem;
    color: #ccc;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.4s ease;
}

/* Hover effect */
.insights-card:hover .card-content {
    transform: translateY(0%);
}

.insights-card:hover .description {
    max-height: 12.5rem;
    /* adjust based on expected content height */
}

.insights-detail-banner {
    background: linear-gradient(180deg, #FBF6F2 18.76%, #D1E5FF 92.08%);
    padding: 5rem 0;
    padding-top: 11rem;
}

.insights-detail-banner h1 {
    font-size: 4rem;
    font-weight: 400;
    color: #28324A;
}

.insights-detail-banner .post-details span {
    font-size: 1rem;
    color: #28324A;
    font-weight: 400;
    line-height: 1.5rem;
    margin-top: 0.75rem;
}

.insights-detail-banner .hero-title {
    margin-bottom: 3rem;
}

.insights-detail-banner .insights-detail-wrapper {
    margin-bottom: 5rem;
}

.insights-detail-wrapper .insight-detail-image {
    height: 35rem;
    margin-bottom: 3rem;
}

.insights-detail-wrapper .insight-detail-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: .9375rem;
}

.insights-detail-wrapper .content-wrapper {
    margin: 2rem 0;
}

.insights-detail-wrapper .content-wrapper h6 {
    font-size: 1.25rem;
    line-height: 100%;
    color: #28324A;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.insights-detail-wrapper .content-wrapper p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    color: #28324A;
    font-weight: 400;
    margin-bottom: 3rem;
}

.insights-detail-banner .insights-card-wrapper h2 {
    margin-bottom: 2rem;
}

.contact-us-banner {
    background: linear-gradient(180deg, #FBF6F2 0%, #D1E5FF 92.08%);
    padding-bottom: 1rem;
    padding-top: 11rem;
}

.contact-us-banner .hero-title h1 {
    color: #28324A;
}

.contact-us-banner .hero-title h1 span {
    color: #677184
}

.form-section {
    padding: 3rem 0;
}

.form-section form {
    width: 50%;
    margin-left: 10%;
}

.form-section .form-label {
    color: #28324A;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
}

.form-section .form-control,
.form-section .form-select {
    font-size: 1rem;
    font-weight: 500;
    color: #6778A2;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none;
}

.form-section .form-control::placeholder {
    color: #a0aec0;
    opacity: 1;
}

.form-section .form-control:focus,
.form-section .form-select:focus {
    color: #2b3c5e;
    border-color: #679efc;
    outline: 0;
    box-shadow: none;
}

.form-section .form-select option {
    color: #1f2d3d;
}

.form-section textarea.form-control {
    height: calc(1.5rem + 0.75rem + 0.125rem);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    resize: none;
    overflow: hidden;
}

.form-section .text-start {
    margin-top: 2rem;
}

.form-section .btn {
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    background: #3689FF;
    border: none;
    border-radius: 3.5rem;
}

.btn:hover {
    background: #28324A;
    color: #fff;
}

/* homepage invest in vision mobile design */
.onlymobile,
.mobile.owl-carousel {
    display: none !important
}

.mobile.owl-carousel .slide {
    text-align: center;
}

.mobile .heading {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.mobile .slide-img {
    width: 100%;
    max-width: 25rem;
    border-radius: 1rem;
    margin: 0 auto 1.25rem;
    display: block;
}

.mobile .card {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 1.25rem;
    max-width: 25rem;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile .card .vision-img {
    width: 3rem;
    height: 3rem;
}

.mobile .card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .625rem;
}

.mobile .card p {
    font-size: 0.9rem;
    color: #555;
}

/* Optional: dots styling */
.mobile .owl-dots {
    text-align: center;
    margin-top: 2rem !important;
}

.mobile .owl-dot span {
    width: .625rem;
    height: .625rem;
    background: #28324A !important;
    display: inline-block;
    border-radius: 50%;
    margin: .3125rem;
    transition: all 0.3s ease;
}

.mobile .owl-dot.active span {
    background: #fff !important;
    border: 2px solid #28324A;
    transform: scale(1.5);
}