/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #20882E;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    --SecondaryColor: #002F6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
 font-family: "Inter", sans-serif;
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--SecondaryColor);
    font-size:2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}


.same-heading h2 .highlight-text{background: var(--PrimaryColor); color: var(--BlackColor); padding: 0.2rem 0.6rem;}


.same-heading h3 {
   
    color: #122939;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #000000B2;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}




.bg-gray {
    background: #F1F1F1;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center :is( .max-wid-50,  .max-wid-80) {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
    background: linear-gradient(90deg, var(--WhiteColor) 0%, var(--WhiteColor) 50%, var(--WhiteColor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: var(--PrimaryColor);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas,
.btn-white .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text,
.btn-white .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: #FFFFFF2E;
    color: var(--WhiteColor);
    border-color: var(--WhiteColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-secondary {
    background: var(--PrimaryColor);
    border: solid 1px var(--PrimaryColor);
    color: var(--BlackColor);
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important;
color: var(--WhiteColor) !important;
}



.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: var(--SecondaryColor);
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--SecondaryColor) !important;
border-color:var(--SecondaryColor) !important ;
color: var(--WhiteColor) !important;
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 99;
}

.header.headerfix {
    background: var(--WhiteColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 100;
    position: fixed;
    left: 0; right: 0;
    padding: 0.8rem 0;
    animation: slideDown 0.4s ease forwards;
}

/* Inner pages header */
.header.inner-header {
    background: var(--WhiteColor);
    border-bottom: 1px solid #EFEFEF;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header.inner-header .nav-links a:not(.btn) {
    color: var(--BlackColor);
}

.header.inner-header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}

.header.inner-header.headerfix {
    background: var(--WhiteColor);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;

}
.header .nav-content .logo img{max-height: 4rem;}
.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.header .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {
    /* font-weight: 300; */
    font-size: 0.9rem;
    color: var(--BlackColor);
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 1rem;}

/* .header .nav-actions{margin-left: auto;} */

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}



.hero-section {
position: relative;
padding: 10rem 0rem;
background: url(../images/banner-bg.jpg)no-repeat center top/cover;
overflow: hidden;
min-height: 100vh;
/* margin-top: -5.2rem; */
display: flex; align-items: center;justify-content: center;
}




/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  border-radius: 1rem;
}
.hero-section  .section-bottom-btn{margin: 2rem 0;}
/* Title */
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}



/* Text */
.hero-section p {
  font-size: 1rem;
  color: var(--WhiteColor);
  line-height: 1.8;
}

.private-banking-section{background: #F7F3EF;}





/* =========================================
   FEATURES STRIP SECTION
   ========================================= */
.features-strip-section {
    padding: 1.5rem 0;
    background: var(--WhiteColor);

}

.feature-strip-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-strip-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColor);
}

.feature-strip-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    stroke-width: 2.5;
}

.feature-strip-item p {
    font-size: 0.88rem;
    color: var(--SecondaryColor);
    line-height: 1.6;
    margin: 0;
    max-width: 14rem;
}


/* =========================================
   FEATURES CARD SECTION
   ========================================= */
.features-card-section {
    background: var(--WhiteColor);
    border-top: 1px solid #E8E8E8;
}

.features-card-section .features-card-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-card-section .features-card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.features-card-section .features-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-card-section .features-card-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--SecondaryColor);
    margin: 0;
    line-height: 1.3;
}

.features-card-section .features-card-item p {
    font-size: 0.9rem;
    color: #002F6B;
    line-height: 1.7;
    margin: 0;
}


.equity-becomes-section {background: url(../images/equity-bg.jpg)no-repeat center top/cover;}
.equity-becomes-section .same-heading p{color: var(--SecondaryColor);}


/* =========================================
   ASSET CARDS SECTION
   ========================================= */
.asset-cards-section {
   padding: 0 ;    margin-top: -3rem;
}

.asset-cards-section .asset-card-item {
    background: var(--WhiteColor);
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.asset-cards-section .asset-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-cards-section .asset-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.asset-cards-section .asset-card-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--SecondaryColor);
    margin: 0;
    line-height: 1.3;
}

.asset-cards-section .asset-card-item p {
    font-size: 0.9rem;
    color: var(--SecondaryColor);
    line-height: 1.7;
    margin: 0;
 
}



/* =========================================
   PAYMENTS & TRUST SECTION
   ========================================= */
.payments-trust-section {
    background: var(--WhiteColor);

}

.payments-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.5rem;

}

.payments-stat-item .stat-label {
    font-size: 2rem;
    font-weight: 600;
    color: #54C0E4;
    line-height: 1;
}

.payments-stat-item p {
    font-size: 0.9rem;
    color: var(--SecondaryColor);
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   CTA BANNER SECTION
   ========================================= */
.cta-banner-section {
    background: linear-gradient(to right, var(--SecondaryColor) 0%, var(--PrimaryColor) 100%);
}

.cta-banner-section h2 {
    color: var(--WhiteColor);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.cta-banner-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #F5F6F8;
    border-top: 1px solid #E2E8EF;
    padding: 1.5rem 0;
}

.footer .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer .footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.footer .footer-logo img {
    max-height: 2rem;
}


.footer .footer-left p,
.footer .footer-right p {
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}

