:root {
    --PrimaryColor: #F68925;
    --SecondaryColor: #074DA0;
    --WhiterColor: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
} */

body {
    line-height: 1.6;
    overflow-x: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    line-height: 1.5;

}



h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4C4C4C;
    margin-bottom: 1.25rem;
}

.same-heading p {
    color: #4C4C4C;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


a {
    text-decoration: none;
    transition: 0.2s;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    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(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: all 0.5s;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after {
    left: 130%;
    transition: all 0.5s;
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiterColor);
    border: 1px solid var(--PrimaryColor);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: var(--WhiterColor) !important;
    color: var(--PrimaryColor) !important;
    border: 1px solid var(--PrimaryColor) !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--PrimaryColor);
    border: 1px solid var(--PrimaryColor);
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    background: var(--PrimaryColor) !important;
    color: var(--WhiterColor) !important;
    border: 1px solid var(--PrimaryColor) !important;
}




/* Utilities */
.section-padding {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

/* Navbar */
.header {
    padding: 1.5rem 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.inner-header{background: var(--SecondaryColor);}

@media (min-width: 1499px) {
    .header .container {
        max-width: 1500px;
    }

}

.header .navbar {
    padding: 0;
    flex-wrap: nowrap;
}

.header.scrolled {
    background-color: var(--SecondaryColor);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
}

.header .toggle-circle {
    border: 0;
    background: transparent;

}

.header .toggle-circle img {
    width: 80%;
}


.header .menu-circle .line {
    height: 2px;
    background: var(--WhiterColor);
    border-radius: 5px;
    display: block;
}

.header .menu-circle .line1 {
    width: 22px;
}

.header .menu-circle .line2 {
    width: 14px;
}

.header .menu-circle .line3 {
    width: 10px;
}

.header .menu-circle .line4 {
    width: 22px;
}

/* Hero */
.hero-section {
    background: url(../images/banner-bg.jpg)no-repeat center center/cover;
    height: 90vh;
    min-height: 40rem;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--WhiterColor);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .same-heading h1 {
    max-width: 40rem;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-section .same-heading .lead {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--WhiterColor);
}

.hero-section .same-heading p {
    color: var(--WhiterColor);

    font-weight: 400;
}

.same-heading {
    margin-bottom: 3rem;
}

.same-heading h2 {
    color: #2F2F2F;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.3;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiterColor);
}



.generational-assets .same-heading p {
    width: 100%;
    max-width: 80%;
}

.border-bg {
    background-color: #fff;
    background-image: repeating-linear-gradient(to right,
            transparent,
            transparent 12rem,
            #e5e7eb 12rem,
            #e5e7eb 12.05rem);
}

.manage-section {
    position: relative;
    overflow-x: hidden;

}

.manage-section .container {
    position: relative;
    z-index: 5;
}



/* Base background */
.bg-gradient-blue {
    background: url(../images/bg-gradient-blue.jpg)no-repeat center top/cover;
    position: relative;
}



.manage-owl {
    padding-bottom: 3rem !important;
    overflow: visible !important;
    width: 100%;
}

.manage-owl .owl-stage-outer {
    overflow: visible !important;
}

.manage-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc((100vw - 1320px) / 2);
    height: 100%;
    background: url(../images/manage-section-aftre.jpg)no-repeat center top/cover;
    z-index: 10;
}





.manage-section .manage-card {
    background: var(--WhiterColor);
    border-radius: 0;
    padding: 2rem 1.5rem;
    height: 100%;
    min-height: 18rem;

    transition: all 0.3s ease;
}

/* .manage-section .manage-card:hover {
    transform: translateY(-0.5rem);
} */

.manage-section .manage-card .manage-icon {
    width: 3rem;
    height: 3rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}



.manage-section .manage-card h3 {
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.manage-section .manage-card p {
    font-size: 0.9rem;
    color: #676767;
    margin-bottom: 0;
    line-height: 1.6;
}

.long-term-stewardship .same-heading .lead-text {
    font-size: 1.1rem;
    font-weight: 400;
}

.long-term-stewardship .same-heading .lead-text strong {
    font-weight: 600;
    display: block;
    margin: 5px 0;
}

.platform-features-section {
    position: relative;
    background: #F8F8F8;
    z-index: 1;
    padding: 8rem 0 4rem;
}

/* Perfect background split that aligns with col-lg-5 on all screens */
.platform-features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 41.666%;
    background: #E6E6E6;
    z-index: -1;
}


.platform-features-section .platform-image-wrapper {
    margin-left: calc(-1 * (100vw - 1320px) / 2);
    width: calc(100% + (100vw - 1320px) / 2);
    padding-left: 3rem;
    /* Added space from screen edge */
    z-index: 5;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.platform-features-section .platform-image-wrapper .dashboard-img {
    max-width: none;
    width: 100%;
    margin-left: -5%;

}

.platform-content {
    padding-left: 0;
}

.platform-content .feature-item {
    margin-bottom: 2rem;
}

.platform-content .feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.6rem;
}

.platform-content .feature-item p {
    color: #6D6D6D;
    margin-bottom: 0;
    width: 100%;
    max-width: 80%;
}


.built-century-section {
    background: url(../images/built-img.jpg)no-repeat center top/cover;
    padding: 8rem 0;
}

.shape-bg-wrap {
    background: url(../images/footer-shapr-bg.jpg)no-repeat center top;
    background-size: cover;
}

.section-bottom-btn {
    margin-top: 2rem;
}

.platform-holding .section-bottom-btn {
    margin-top: 3rem;
}


.footer .footer-top {
    padding: 2rem 0;
    border-top: solid 1px #E2DBDB;
    border-bottom: solid 1px #E2DBDB;
}

.footer .footer-content .footer-logo {
    margin-bottom: 2rem;
    display: inline-block;
}

.footer .footer-content .footer-text {
    width: 100%;
    max-width: 75%;
}

.footer .footer-content p {
    color: #6C6C6C;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer .footer-content h6 {
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer .footer-links a {
    color: #6C6C6C;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    display: inline-block;
}

.footer .footer-links a:hover {
    color: var(--PrimaryColor);
}

.footer .footer-bottom {
    padding: 1rem 0;
}

.footer .footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #000;
}




/* Wrapper */
.dw-cookie-wrapper {
    position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);
    box-shadow: 0 -0.3125rem 1.25rem rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;



}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem;
    /* 1200px */
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

/* Text */
.dw-cookie-text h4 {
    font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn {
    font-size: 0.9rem;
}

/* Buttons */
.dw-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}


.static-pages-outer .same-heading h2 {
    font-size: 2rem;
}

.static-pages-outer .same-heading h3 {
    font-size: 1.4rem;    color: #2F2F2F;
    font-weight: 600;
}

.legal-highlight {
    background: #f689250a;
    padding: 1.2rem;
    border-left: 4px solid var(--PrimaryColor);
    margin: 1rem 0 1.5rem;
}

.legal-highlight p {
    margin-bottom: 0;
}

.static-pages-outer .dot-listing {
    margin: 1rem 0 1rem 1rem;
}

.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}
.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}
.inner-banner{    padding: clamp(5rem, 7vw, 5rem) 0; position: relative;}
:is(.layer-bg, .inner-banner)::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZSURBVHgBxcghAQAAAIMw+pf+C+CZHLilebfsBfsvTewEAAAAAElFTkSuQmCC');
    background-repeat: repeat;
    opacity: .04;
    pointer-events: none;
}

.inner-banner h1{     color: #2F2F2F;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.3;}



@media (max-width: 1200px) {
    .platform-image-wrapper {
        margin-left: -15px;
        width: 100%;
    }
}