@font-face {
    font-family: 'Myriad Pro';
    src: url('./MYRIADPRO-REGULAR.OTF') format('opentype');
    font-style: normal;
    font-display:swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #bbc3ca;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: "Myriad Pro", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.overflow-hidden {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

section {
    width: 100%;
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    padding: 10px 0 0px 0px;
    background: rgba(0, 0, 0, .7);
    transition: transform 0.3s ease, background 0.3s ease;
}

.site-header.hide {
    transform: translateY(-100%);
}

.main-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}


.main-nav li a {
    color: #fff;
    font-size: 14px;
     position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 8px 5px;
    transition: color 0.35s ease;

}

.main-nav li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ffffff; /* Corporate gold */
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(.4,0,.2,1);
}

.main-nav ul li a:hover {
    color: #ffffff;
}

.main-nav ul li a:hover::after,
.main-nav ul li a:focus-visible::after {
    width: 100%;
}
.main-nav ul li a {
    transition:
        color .35s ease,
        transform .35s cubic-bezier(.4,0,.2,1);
}

.main-nav ul li a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-btn {
    background: #cb5827;
    padding: 12px 20px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    display: none;
}

.item-alignment {
    align-items: flex-end;
}

nav ul {
    margin-bottom: 0px;
}

.footer {
    background-color: #2e2c7a;
    text-align: center;
}

.footer p {
    text-align: center;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 92px;
}

.position-relative {
    position: relative;
}

.hero-section.banner1 {
    background: url("../images/banner_bg1.webp") center center/cover no-repeat;
}

.hero-section.banner2 {
    background: url("../images/banner_bg2.webp") center center/cover no-repeat;
}

.hero-section.banner3 {
    background: url("../images/banner_bg3.webp") center center/cover no-repeat;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.btns a {
    width: 130px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: #cb5827;
}

.btns a:nth-child(2) {
    background: rgba(255, 255, 255, 0.25);
}

.headline-box {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    width: fit-content;
    float: right;
}

.headline-box h1 {
    color: #cb5827;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    transform: translateY(-22px);
    -webkit-transform: translateY(-22px);
    -moz-transform: translateY(-22px);
    -ms-transform: translateY(-22px);
    -o-transform: translateY(-22px);
}

.headline-box p {
    color: #fff;
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
}

.headline-box em {
    font-style: italic;
}

.service-card {
    background: rgba(45, 44, 118, .75);
    padding: 40px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.8;
}

.service-card .line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 1);
    margin: 25px 0;
}

.service-card span {
    color: #cb5827;
}

.insightsSwiper .slider-navigation {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.insightsSwiper .swiper-horizontal>.swiper-pagination-bullets,
.insightsSwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.insightsSwiper .swiper-pagination-custom,
.insightsSwiper .swiper-pagination-fraction {
    position: absolute;
    bottom: 370px;
    right: 100px;
    left: auto;
    width: fit-content;
}

.swiper-pagination-bullet {
    width: 7px;
    height: 6px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    width: 25px;
}

.banner-pagination {
    position: absolute;
    bottom: 20px !important;
    z-index: 10;
}

.mob-bottom-subheading {
    display: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    padding-left: 15px;
}

.ban_wrap {
    position: absolute;
    bottom: 60px;
    left: 0;
    color: #fff;
    z-index: 1;
}

.ban_wrap h3 {
    color: rgba(255, 255, 255, .9);
    font-size: 24px;
    font-family: "Open Sans";
    font-weight: 400;
    margin-bottom: 7px;
}

.ban_wrap p {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    font-family: "Open Sans";
    font-weight: 400;
}

.intro-section {
    min-height: 100vh;
    background: url("../images/ocean.webp") center center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.intro-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 34px;
    margin-bottom: 60px;
    font-weight: 300;
}

.stats-wrapper {
    align-items: stretch;
}

.intro-card {
    background: rgba(19, 53, 105, .9);
    backdrop-filter: blur(4px);
    padding: 50px;
    height: 100%;
    align-content: center;
    clip-path: polygon(0 0,
            58% 0,
            63% 9%,
            100% 9%,
            100% 100%,
            0 100%);
}

.intro-card h2 {
    color: #cb5827;
    margin-bottom: 20px;
    font-family: "Myriad Pro", sans-serif;
}

.intro-card p {
    line-height: 2;
    margin-bottom: 30px;
    color: #fff;
}

.intro-card a {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .15);
    color: white;
    position: absolute;
    bottom: 0;
    left: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px);
    padding: 35px;
    height: 100%;
}

.stat-card:hover {
    cursor: pointer;
    background: rgba(46, 44, 122, .7);
}

.stat-card h3 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 13px;
    line-height: 1.6;
}

.stat-card h3 sup {
    line-height: 0;
    display: inline-block;
    top: -.3em;
}

.services-section {
    min-height: 100vh;
    padding: 40px 0;
    background: url("../images/services-bg.webp") no-repeat;
    background-size: 100% 65%;
    background-position: bottom center;
    display: flex;
    align-items: center;
}

.section-label {
    display: block;
    color: #2e2c7a;
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 300;
    
}

.section-label.orange {
    color: #cb5827;
}

.services-heading h2 {
    color: #cb5827;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    font-family: "Open Sans";
}

.services-heading p {
    color: #555;
    line-height: 1.8;
}

.service-cards {
    margin-top: 80px;
    padding-bottom: 40px;
}

.service-box {
    background: rgba(255, 255, 255, .85);
    padding: 40px;
    min-height: 400px;
    position: relative;
}

.service-box .icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.service-box h3 {
    color: #cb5827;
    margin-bottom: 20px;
    font-size: 1.3rem;
    min-height: 60px;
    font-family: "Open Sans";
    font-weight: 500;
}

.service-box p {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

.service-box a {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background: rgba(46, 44, 122, .7);
    color: white;
    position: absolute;
    bottom: 0;
    left: 50px;
}

a.about-read {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background: rgba(46, 44, 122, .7);
    color: white;
}

.about-section {
    min-height: 100vh;
    background: #e3e1e1;
}

.about-image img {
    width: 100%;
    display: block;
}

.promise-block {
    margin-bottom: 60px;
}

.promise-block h3 {
    color: #cb5827;
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 1.5rem;
}

.promise-block h4 {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 20px;
}

.who-we-are {
    background: rgba(255, 255, 255, .85);
    padding: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-top: 80px;
    margin-bottom: -80px;
}

.who-we-are h3 {
    color: #2e2c7a;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 300;
}

.who-we-are p {
    color: #333333;
    line-height: 1.8;
    font-size: 14px;
}

.approach-section {
    padding: 40px 0;
}

.approach-section h2 {
    color: #cb5827;
    font-weight: 300;
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-family: "Open Sans";
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.approach-item p {
    color: #333333;
    line-height: 1.6;
    max-width: 250px;
}

.approach-item span {
    width: 50;
    height: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.approach-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.about-section .bg-wrap {
    background: url(../images/promise-bg.webp) no-repeat left;
    padding: 60px;
    background-size: cover;
}

.capital-section {
    min-height: 100vh;
    padding: 120px 0;
    background: #fff;
    display: flex;
    align-items: center;
}

.capital-heading {
    margin-bottom: 60px;
}

.capital-title {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.1;
    color: #ea7b42;
    display: inline-block;
    font-family: "Open Sans";
}

.capital-desc {
    color: #333;
    line-height: 1.8;
}

.capital-image {
    height: 100%;
}

.capital-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.capital-card {
    background: #e3e1e1;
    padding: 70px 25px 45px 25px;
    min-height: 290px;
    position: relative;
}

.card-line {
    width: 4px;
    height: 60px;
    background: #cb5827;
    margin-bottom: 25px;
    position: absolute;
    top: -7px;
    left: 20px;
}

.capital-card h3 {
    font-family: "Open Sans";
    color: #2e2c7a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.capital-card p {
    color: #1c1c1c;
    line-height: 1.8;
    font-size: 16px;
}

.founder-section {
    background: url(../images/leadership.webp) no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.founder-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65%;
    height: 35%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(5px);
    display: none;
}

.founder-section .row {
    position: relative;
    z-index: 2;
}

.founder-image {
    display: flex;
    justify-content: center;
}

.founder-image img {
    max-width: 600px;
    display: block;
}

.founder-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 50px 40px;
    margin-bottom: 0px;
    width: 510px;
}




.founder-content h2 {
    font-family: "Myriad Pro", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.designation {
    display: block;
    color: #cb5827;
    margin-bottom: 35px;
    font-size: 1.2rem;
}

.founder-content p {
    font-family: "Open Sans", sans-serif;
    line-height: 1.5;
    color: rgba(255, 255, 255, .9);
    max-width: 420px;
    margin-bottom: 35px;
    font-size: 16px;
}

.founder-btn {
    display: inline-block;
    background: #454480;
    color: white;
    padding: 8px 24px;
    text-decoration: none;
    transition: .3s;
}

.founder-btn:hover {
    background: rgba(255, 255, 255, .3);
}

.expertise-grid {
    position: relative;
    width: 360px;
    height: 360px;
    margin: auto;
    transform: translateY(-35px) translateX(-125px);
    -webkit-transform: translateY(-35px) translateX(-125px);
    -moz-transform: translateY(-35px) translateX(-125px);
    -ms-transform: translateY(-35px) translateX(-125px);
    -o-transform: translateY(-35px) translateX(-125px);
}

.box {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.4;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
}

.fiduciary {
    width: 95px;
    height: 95px;
    background: rgba(203, 88, 39, .45);
    top: -25px;
    right: 34px;
}

.board {
    width: 95px;
    height: 95px;
    background: rgba(255, 255, 255, .12);
    top: 70px;
    left: 135px;
}

.capital {
    width: 95px;
    height: 95px;
    top: 70px;
    right: 35px;
}

.cross {
    width: 95px;
    height: 95px;
    background: rgba(203, 88, 39, .75);
    top: 165px;
    left: 40px;
}

.startup {
    width: 95px;
    height: 95px;
    top: 165px;
    left: 135px;
}

.sm.orange:nth-child(1) {
    width: 95px;
    height: 95px;
    top: -25px;
    left: 40px;
    background: rgba(203, 88, 39, .6);
}

.sm.orange:nth-child(7) {
    width: 50px;
    height: 50px;
    top: 166px;
    right: 79px;
    background: rgba(203, 88, 39, .5);
}

.sm.purple {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, .15);
    top: 260px;
    left: 135px;
}

.map {
    position: relative;
}

.map h2 {
    position: absolute;
    left: 0;
    bottom: 100px;
    color: #fff;
    background: rgba(203, 88, 39, .5);
    padding: 20px 20px 20px 150px;
    font-family: "Open Sans";
    font-size: 34px;
    font-weight: 300;
}

.insights-section {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: url("../images/insights-bg.webp") center center/cover no-repeat;
}

.insights-section .container {
    position: relative;
    z-index: 2;
}

.insights-content {
    max-width: 320px;
}

.coming-soon {
    display: inline-block;
    background: rgba(255, 255, 255, .65);
    color: #1c1c1c;
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 25px;
}

.insights-content h2 {
    font-family: "Open Sans";
    color: #2e2c7a;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
}

.insights-content p {
    color: #1c1c1c;
    line-height: 1.5;
    font-size: 16px;
}

.insights-slider-wrapper {
    position: relative;
}

.insightsSwiper {
    overflow: visible;
    padding-top: 200px;
}

.insight-card {
    background: rgba(255, 255, 255, .92);
    padding: 30px;
    min-height: 370px;
    padding-bottom: 90px;
    position: relative;
    box-shadow: 0 0px 10px rgba(0, 0, 0, .2);
}

@media screen and (max-width: 1400.5px) {
    .insight-card {
    min-height: 410px;
}

}

.category {
    display: block;
    color: #cb5827;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.reading-time {
    display: block;
    color: #333333;
    font-size: 10px;
    margin-bottom: 20px;
}

.insight-card h3 {
    font-family: "Open Sans";
    color: rgba(46, 44, 122, 1);
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.insight-card p {
    color: #1c1c1c;
    font-size: .9rem;
    line-height: 1.4;
    margin-bottom: 0px;
}

.insight-card a {
    display: inline-block;
    background: rgba(46, 44, 122, .7);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    position: absolute;
    bottom: 30px;
}

.slider-navigation {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.insightsSwiper .swiper-horizontal>.swiper-pagination-bullets,
.insightsSwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.insightsSwiper .swiper-pagination-custom,
.insightsSwiper .swiper-pagination-fraction {
    position: absolute;
    bottom: 370px;
    right: 100px;
    left: auto;
    width: fit-content;
}

.swiper-pagination-bullet {
    width: 7px;
    height: 6px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    width: 25px;
}

.service-cards .swiper-horizontal>.swiper-pagination-bullets,
.service-cards .swiper-pagination-bullets.swiper-pagination-horizontal,
.service-cards .swiper-pagination-custom,
.service-cards .swiper-pagination-fraction {
    position: absolute;
    bottom: 0;
    left: 0;
}

.service-cards .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
    opacity: .6;
}

.service-cards .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
    width: 20px;
}

.contact-section {
    min-height: 100vh;
    background: url("../images/contact-bg.webp") left no-repeat,
        url("../images/contact-bg-2.webp") right no-repeat,
        #fff;
    background-size: 60% auto, 20% auto;
}

.contact-section .row:first-child {
    min-height: 100vh;
}

.contact-section .row:first-child .col-lg-7 {
    background: #fff;
}

.contact-image {
    height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-top {
    padding: 40px 60px;
    flex: 1;
}

.contact-top .section-label {
    font-size: 34px;
    color: #2e2c7a;
    margin-bottom: 60px;
    display: block;
}

.contact-top h2 {
    font-family: "Open Sans";
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.15;
    color: #cb5827;
}

.contact-description {
    color: #1c1c1c;
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(45, 44, 118, .9);
    padding: 40px 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.contact-icon img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.contact-item .title {
    color: #cb5827;
    font-size: .9rem;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a {
    color: #fff;
    font-size: .9rem;
    text-decoration: none;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, .45);
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-divider {
    width: 1px;
    height: 80px;
    background: #d4d4d4;
}

.contact-icon {
    flex: none;
}

.global-reach {
    background: #f1f1f1;
    padding: 60px 70px;
}

.global-reach h3 {
    font-family: "Open Sans";
    color: #2e2c7a;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.global-reach p {
    color: #1c1c1c;
    margin-bottom: 25px;
    font-size: 14px;
}

.global-reach ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.global-reach li {
    color: #2e2c7a;
    font-size: 1.2rem;
    position: relative;
    font-weight: 600;
}

.global-reach li:not(:last-child)::after {
    content: "|";
    margin-left: 17px;
    color: #2e2c7a;
}

.custom-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.custom-popup.active {
    display: block;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(10px);
}

.popup-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1200px, 90vw);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 60px;
    max-height: 80vh;
    overflow: hidden;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0;
    background: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #292d8f;
}

.popup-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 30px;
}

.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(203, 88, 39, .45);
}

.popup-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(203, 88, 39, 1), rgba(203, 88, 39, 1));
    border-radius: 20px;
    height: 30px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(203, 88, 39, 1), rgba(203, 88, 39, 1));
}

.founder-pop h2 {
    color: #292d8f;
    font-size: 35px;
    margin-bottom: 10px;
    font-family: "Open Sans";
    font-weight: 400;
}

.founder-pop h4 {
    color: #cb5827;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: "Open Sans";
    font-weight: 500;
    display: block;
}

.founder-pop p {
    font-size: 16px;
    margin: 25px 0;
    color: #1c1c1c;
}

.founder-pop ul {
    list-style: disc;
    padding-left: 20px;
}

.founder-pop ul li {
    color: #1c1c1c;
}

.quote-box {
    padding: 20px;
    border: 1px solid #cb5827;
    font-style: italic;
    color: #1c1c1c;
    font-weight: 600;
}

footer {
    background: #231F20;
    color: rgba(255, 255, 255, .45);
    padding: 4rem 0 2rem;
    font-size: .82rem;
    text-align: center;
}

footer::before {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: #C95427;
    margin: 0 auto 3rem;
}

footer .footer-logo img {
    width: auto;
    margin-bottom: 1.5rem;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

footer .footer-links a {
    color: rgba(255, 255, 255, .8);
    font-size: .78rem;
    letter-spacing: .08em;
    transition: color .2s;
    text-decoration: none;
    transition: 0.5s all ease;
}
footer .footer-links a:hover{
    color: rgba(255, 255, 255, 1);
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .5);
    padding-top: 2rem;
    margin-top: 1rem;
    font-size: .76rem;
    color: rgba(255, 255, 255, .8);
}

.founder-wrap {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.founder-wrap div {
    border-right: 1px solid rgba(255, 255, 255, .6);
    padding: 0 20px;
}

.founder-wrap div:first-child {
    padding-left: 0;
}

.founder-wrap div:last-child {
    border-right: none;
}

.founder-content p.founder-title {
    font-size: 16px;
    color: #cb5827;
    margin-bottom: 0;
}

.founder-content p.founder-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 0;
}

.information-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #2e2c7a;
    padding: 120px 0;
    position: relative;
}

.information-content {
    max-width: 480px;
}

.information-section .section-label {
    display: block;
    color: rgba(203, 88, 39, .9);
    font-family: "Open Sans";
    font-size: 34px;
    margin-bottom: 50px;
}

.information-content h2 {
    font-family: "Open Sans";
    color: rgba(255, 255, 255, .9);
    font-size: 34px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 40px;
}

.information-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

.information-content p a {
    color: rgba(255, 255, 255, .7);
    text-decoration: underline;
}

.formation-wrapper h3 {
    color: rgba(203, 88, 39, .9);
    font-family: "Open Sans";
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

.formation-card {
    background: rgba(203, 88, 39, .1);
    min-height: 180px;
    padding: 35px 30px;
    position: relative;
    height: 100%;
}

.formation-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #cb5827;
}

.formation-card p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    font-size: .9rem;
    margin: 0;
}

.formation-card strong {
    color: #fff;
    font-weight: 700;
}

#backToTop {
    position: fixed;
    right: 5px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #231F20;
    color: #fff;
    font-size: 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);

    transition:
        opacity .35s ease,
        transform .35s cubic-bezier(.22, 1, .36, 1),
        visibility .35s;

    z-index: 9999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#backToTop:hover {
    transform: translateY(-4px) scale(1.05);
}

/* leadership */

.legends {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-top: 30px;
}

.legends span {
    color: white;
    display: inline-block;
    border: 1px solid white;
    border-radius: 3px;
    font-size: 12px;
    padding: 5px;
    opacity: 0.5;
}

.slider {
    width: 100%;
    margin: 0;
    display: flex;
    overflow: hidden;
}

.slide {
    border-left: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    min-width: 275px;
    flex: 0 0 275px;
    transition-property: flex-grow, color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in;
    color: transparent;
    font-size: 20px;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}

.slide--expanded {
    flex: 1 0 0;
    width: 100%;
    min-width: 0;
}

.slide--expanded.slide {
    border-left: none;
    border-right: none;
    display: flex;
    align-items: flex-end;
}



.slide--expanded .slide-img-content {
    display: none;

}

.slide-img-content>img {
    width: 100%;
    max-width: 270px;
    height: auto;
}

.founder-image-new {
    padding-top: 100px;

}

.founder-image-new>img {
    width: 470px;
    height: auto;
}



.slide-content {
    display: none;
}

.slide-img-content {
    cursor: pointer;
}

.slide--expanded .slide-content {
    display: block;
}

.imgNames {
    position: absolute;
    bottom: 60px;
    color: rgba(255, 255, 255, .5);
    padding: 20px;
}

.imgNames h2 {
    font-weight: 400;
    margin-bottom: 15px;
}

.imgNames p {
    font-weight: 400;
    font-size: 14px;
}


.stat-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    transform-origin: center;
}

.stat-card:hover {
    transform: scale(1.01);
    box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
}


.service-box {
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    border-color: #000000; /* Gold accent */
}

.service-box .icon img {
    transition: all 0.4s ease,
}

.service-box:hover .icon img {
    transform: scale(1.1);
}

.btn {
    position: relative;
    overflow: hidden;
    transition: color .4s ease;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #cb5827;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn:hover {
    color: #fff;
}

.capital-card {
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-line {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.capital-card:hover .card-line {
    transform: scaleX(2);
}

.insightsSwiper .swiper-slide{
    padding-bottom: 10px;
}

.insight-card {
    transition:
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.45s ease;
    will-change: transform;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.2);
}

.formation-card{
     transition:background-color 0.5s ease;
}

.formation-card:hover {
    /* background-color: rgba(203, 88, 39, .9); */
    background: rgba(203, 88, 39, .8);
}





.founder-section-new {
    min-height: 700px;
    background: url(../images/leadership_bg.webp) no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
}

.founder-section-new::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65%;
    height: 35%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(5px);
}

.founder-section-new .row {
    position: relative;
    z-index: 2;
}



.founder-content-new {
    position: relative;
    z-index: 3;
    color: white;
    padding: 50px 40px;
    margin-bottom: 90px;
}

.founder-content-new h2 {
    font-family: "Myriad Pro", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 12px;
}


.founder-content-new p {
    font-family: "Open Sans", sans-serif;
    line-height: 2;
    color: rgba(255, 255, 255, .9);
    max-width: 420px;
    margin-bottom: 35px;
}

.founder-content-new p.founder-title {
    font-size: 16px;
    color: rgba(203, 88, 39, .6);
    margin-bottom: 0;
}

.founder-content-new p.founder-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 0;
}


.founder-image-single {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
}

.founder-image-single img {
    max-width: 600px;
    display: block;
}
