:root {
    --gold: #d7a84b;
    --dark: #07090d;
    --dark2: #101216;
    --text: #d7d7d7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 50px 0;
}

.gold {
    color: var(--gold);
}
.logo-box img{
    width: 200px;
}
.section-small-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.section-small-title::before,
.section-small-title::after {
    content: "";
    width: 45px;
    height: 1px;
    background: var(--gold);
}

/* HEADER */
.main-header {
    background: #030405;
    padding: 5px 0;
    border-bottom: 1px solid rgba(215,168,75,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-box h3 {
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

.logo-box small {
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin: 0 10px;
    text-transform: uppercase;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.partner-btn {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.partner-btn:hover {
    background: var(--gold);
    color: #000;
}

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* HERO */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(5,7,11,0.98) 0%, rgba(5,7,11,0.80) 38%, rgba(5,7,11,0.25) 100%),
        url("../images/home-banner-bg.png");
    background-size: cover;
    background-position: center right;
}

.hero-content h1 {
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 25px;
}

.hero-content p {
    max-width: 480px;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.btn-gold {
    background: var(--gold);
    color: #111;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin-right: 15px;
}

.btn-outline-gold {
    border: 1px solid #d7a84ba1;
    color: #fff;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
}

.btn-gold i,
.btn-outline-gold i {
    margin-left: 12px;
}

/* WHAT WE DO */
.what-section {
    background: #151619;
    text-align: center;
    color: #d7d7d7;
}

/* TITLE */
.section-small-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.section-small-title::before,
.section-small-title::after {
    content: "";
    width: 54px;
    height: 1px;
    /* background: linear-gradient(90deg, transparent, var(--gold)); */
}

.section-small-title::after {
    /* background: linear-gradient(90deg, var(--gold), transparent); */
}

/* FLOW */
.what-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

/* horizontal connecting line */
.what-flow::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 25%;
    right: 24.5%;
    height: 2px;
    background: rgba(201, 153, 63, 0.65);
    z-index: 0;
}

/* dots on connecting line */
.what-flow::after {
    content: "";
    position: absolute;
    top: 47px;
    left: 25%;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow:
        280px 0 0 var(--gold),
        560px 0 0 var(--gold);
    z-index: 1;
}

.what-card {
    position: relative;
    z-index: 2;
    padding: 0 45px;
}

.what-icon {
    width: 98px;
    height: 98px;
    border: 2px solid rgba(201, 153, 63, 0.8);
    color: var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151619;
}

.what-card h4 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.what-card p {
    color: #d4d4d4;
    line-height: 1.35;
    font-size: 16px;
    max-width: 310px;
    margin: 0 auto;
}

/* TABLET */
@media (max-width: 991px) {
    .what-flow {
        gap: 35px;
    }

    .what-flow::before,
    .what-flow::after {
        display: none;
    }

    .what-card {
        padding: 0 15px;
    }

    .what-card p {
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .section-padding {
        padding: 45px 0;
    }

    .what-flow {
        gap: 5px;
    }

    .section-small-title {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .section-small-title::before,
    .section-small-title::after {
        width: 38px;
    }

    .what-icon {
        width: 60px;
        height: 60px;
        font-size: 23px;
    }

    .what-card h4 {
        font-size: 17px;
    }

    .what-card p {
        font-size: 12px;
        max-width: 320px;
    }
}

/* FOCUS */
/* SECTION */
.focus-section {
    background: #0b0d10;
    padding: 58px 0 65px;
}

/* TITLE */
.section-small-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.section-small-title::before,
.section-small-title::after {
    content: "";
    width: 55px;
    height: 2px;
    background: var(--gold);
}

/* CARD */
.focus-card {
    min-height: 420px;
    border: 2px solid rgba(201, 154, 59, 0.75);
    background: #121417;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px rgba(201,154,59,0.12);
}

/* IMAGE */
.focus-img {
    height: 215px;
    position: relative;
    overflow: hidden;
}

.focus-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(18,20,23,0.35) 55%,
        #121417 100%
    );
}

.focus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.focus-content {
    padding: 0 34px 10px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
}

.focus-icon {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(201, 154, 59, 0.9);
    color: var(--gold);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #101215;
    box-shadow: 0 0 0 5px rgba(0,0,0,0.22);
}

.focus-content h4 {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.28;
    margin-bottom: 15px;
    letter-spacing: .4px;
}

.focus-content ul {
    padding-left: 11px;
    margin: 0;
}

.focus-content li {
    color: #d7d7d7;
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 6px;
}

.focus-content li::marker {
    color: var(--gold);
    font-size: 12px;
}

/* ARROW */
.arrow-link {
    position: absolute;
    right: 30px;
    bottom: 16px;
    color: var(--gold);
    font-size: 25px;
    line-height: 1;
    transition: .3s;
}

.arrow-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .focus-card {
        min-height: 500px;
    }

    .focus-content h4 {
        font-size: 27px;
    }

    .focus-content li {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .focus-section {
        padding: 45px 0;
    }

    .section-small-title {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .section-small-title::before,
    .section-small-title::after {
        width: 38px;
    }

    .focus-card {
        min-height: auto;
    }

    .focus-img {
        height: 190px;
    }

    .focus-content {
        padding: 0 24px 60px;
    }

    .focus-icon {
        width: 62px;
        height: 62px;
        font-size: 30px;
    }

    .focus-content h4 {
        font-size: 20px;
    }

    .focus-content li {
        font-size: 15px;
    }

    .arrow-link {
        font-size: 34px;
        right: 24px;
        bottom: 22px;
    }
}

/* ADVANTAGE */
.advantage-section {
    background: #121418;
}

.adv-title h2 {
    font-family: Georgia, serif;
    color: #fff;
    font-size: 44px;
}

.adv-title h2 span {
    color: var(--gold);
}

.adv-line {
    width: 55px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
}

.process-box {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    font-size: 36px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-box h5 {
    color: #fff;
    font-size: 15px;
}

.process-box p {
    font-size: 13px;
    line-height: 1.6;
}

/* ECOSYSTEM */
.ecosystem-section {
    background: #090b0f;
    padding: 55px 0 10px;
}

.ecosystem-row{
    border: 2px solid rgb(215 168 75 / 61%);
}

.eco-item {
    text-align: center;
    color: #fff;
    padding: 25px 15px;
    border-right: 2px solid rgb(215 168 75 / 61%);
    height: 100%;
}

.eco-item i {
    color: var(--gold);
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

.eco-item h6 {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}
.ecosystem-row .col:last-child .eco-item{
    border-right: none !important;
}
@media(max-width:767px){
    .ecosystem-row {
        border: none;
        margin-left: 0px !important;
    }
    .ecosystem-row .col{
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }
    .ecosystem-section .eco-item {
        border: 1px solid rgba(215, 168, 75, 0.5);
    }
    .ecosystem-row .col:last-child{
        flex: 0 0 100%;
        max-width: 100%;
        border-right: none !important;
        border-bottom: none !important;
    }

    .ecosystem-row .col:last-child .eco-item{
        border-right: none !important;
        border-bottom: none !important;
    }
}

/* CTA */
.partner-section {
    background:
        linear-gradient(90deg, rgba(5,7,11,0.15), rgba(5,7,11,0.95) 55%);
        /* url("../images/partner-with-nsv.png"); */
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}

.partner-content h6 {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.partner-content h2 {
    font-family: Georgia, serif;
    color: #fff;
    font-size: 40px;
}

.partner-content p {
    max-width: 420px;
    line-height: 1.7;
}

/* FOOTER */
.footer-cta {
    background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)),
    url("images/about-footer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    color: #fff;
    position: relative;
}

.footer-cta-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding-bottom: 18px;
}

.footer-cta-inner h4 {
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.footer-cta-btn {
    background: var(--gold);
    color: #111;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 3px;
    text-decoration: none;
}

.footer-cta-btn i {
    margin-left: 12px;
}

/* FOOTER */
.nsv-footer {
    background: #040609;
    color: var(--text);
}

.footer-skyline {
    background:
        linear-gradient(to bottom, rgba(4,6,9,0.05), rgba(4,6,9,0.2)),
        url("your-skyline-bridge-image.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(210,164,73,0.22);
}

.footer-main {
    padding: 52px 0 28px;
}

.footer-col {
    border-right: 1px solid rgba(255,255,255,0.12);
    padding-left: 32px;
    padding-right: 28px;
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-logo-wrap img {
    max-width: 170px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--gold);
    font-size: 14px;
    margin: 0;
}

.nsv-footer h5 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.nsv-footer a,
.nsv-footer p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
    text-decoration: none;
    margin-bottom: 6px;
}

.nsv-footer a {
    display: block;
}

.nsv-footer a:hover {
    color: var(--gold);
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.social-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px !important;
}

.social-link i {
    color: var(--gold);
    width: 18px;
    font-size: 17px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
    align-items: center;
}

.footer-bottom a,
.footer-bottom span {
    color: var(--text);
    font-size: 13px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-cta-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-skyline {
        height: 120px;
    }

    .footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.10);
        padding: 2px 12px;
    }

    .footer-col.border-0 {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .footer-cta-btn {
        width: 70%;
        text-align: center;
    }
    .footer-cta-btn {
        padding: 13px 10px;
    }
    .footer-skyline {
        height: 95px;
    }

    .quick-links {
        gap: 18px;
    }

    .footer-bottom div {
        gap: 12px;
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
        background-position: center;
    }
    .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
        color: var(--gold);
        border-bottom: none;
    }
    .hero-content h1 {
        font-size: 48px;
    }

    .focus-card {
        margin-bottom: 25px;
    }

    .eco-item {
        border-right: none;
        border-bottom: 1px solid rgba(215,168,75,0.25);
    }

    .partner-section {
        background:
            linear-gradient(rgba(5,7,11,0.8), rgba(5,7,11,0.95)),
            url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80");
        text-align: center;
        margin: 0px 0px 0px 10px;
    }

    .partner-content p {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 38px;
    }
    .btn-gold{
        padding: 15px 2px;
        font-weight: 700;
        font-size: 12px;
    }
    .btn-gold,
    .btn-outline-gold {
        width: 49%;
        text-align: center;
        margin: 7px 0;
    }
    .btn-outline-gold {
        padding: 14px 17px;
    }
    .section-padding {
        padding: 15px 0;
    }

    .adv-title h2,
    .partner-content h2 {
        font-size: 34px;
    }

    .main-header {
        padding: 10px 0;
    }
}
/* ABOUT HERO */
.about-hero-section {
    min-height: 620px;
    background:
        linear-gradient(90deg,
            rgba(5, 7, 10, 0.98) 0%,
            rgba(5, 7, 10, 0.96) 34%,
            rgba(5, 7, 10, 0.35) 54%,
            rgba(5, 7, 10, 0.15) 100%
        ),
        url("../images/about-bg.png");
    background-size: cover;
    background-position: center right;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* gold slant line */
.about-hero-section::after {
    content: "";
    position: absolute;
    top: -80px;
    left: 45%;
    width: 2px;
    height: 850px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: rotate(12deg);
    box-shadow: 0 0 12px rgba(201,154,59,0.9);
}

.min-vh-hero {
    min-height: 620px;
}

.about-hero-content {
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.small-label {
    color: var(--gold);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 1px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.small-label::after {
    content: "";
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.about-hero-content h1 {
    font-family: Georgia, serif;
    font-size:40px;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 25px;
}

.about-hero-content h1 span {
    color: var(--gold);
}

.about-hero-content h4 {
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-line {
    width: 62px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 28px;
}

.about-hero-content p {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.45;
    max-width: 420px;
    margin-bottom: 25px;
}

.scroll-link {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.scroll-link i {
    color: var(--gold);
}

.scroll-link:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-hero-section {
        min-height: auto;
        padding: 90px 0;
        background:
            linear-gradient(90deg,
                rgba(5, 7, 10, 0.98),
                rgba(5, 7, 10, 0.72)
            ),
            url("your-about-building-image.jpg");
        background-size: cover;
        background-position: center;
    }

    .about-hero-section::after {
        display: none;
    }

    .min-vh-hero {
        min-height: auto;
    }

    .about-hero-content h1 {
        font-size: 50px;
    }

    .about-hero-content h4 {
        font-size: 19px;
    }

    .about-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .about-hero-section {
        padding: 35px 0;
    }

    .about-hero-content h1 {
        font-size: 35px;
    }

    .small-label {
        font-size: 14px;
    }

    .about-hero-content h4 {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .about-hero-content p {
        font-size: 15px;
    }
}
.about-content  {
    padding: 80px 50px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(circle at right, rgba(255, 180, 0, 0.15), transparent 40%), url(../images/who-we-are.png);
    background-repeat: no-repeat;
}

/* LEFT CONTENT */
.about-content .content {
    max-width: 50%;
}

.about-content .tag {
    color: #c9a45c;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-content .content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content .content p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ICON FEATURES */
.about-content .features {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.about-content .feature {
    text-align: center;
}

.about-content .feature i {
    font-size: 26px;
    color: #c9a45c;
    margin-bottom: 8px;
}

/* BUTTON */
.about-content .btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #c9a45c;
    color: #c9a45c;
    text-decoration: none;
    transition: 0.3s;
}

.about-content .btn:hover {
    background: #c9a45c;
    color: #000;
}

/* RIGHT IMAGE */
.about-content .image {
    width: 45%;
}

.about-content .image img {
    width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content .content, .image {
        max-width: 100%;
        width: 100%;
    }

   .about-content .features {
        justify-content: center;
    }
}

/* value chain */

.value-chain-section {
    background: #080b0f;
    color: var(--text);
    padding: 55px 0 50px;
    overflow: hidden;
}

.section-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 34px;
}

.section-title-line::before,
.section-title-line::after {
    content: "";
    width: 65px;
    height: 2px;
    background: var(--gold);
}

.section-title-line span {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: .5px;
}

/* VALUE CHAIN */
.value-chain-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.chain-card {
    width: 190px;
    min-height: 170px;
    background: #0b0f14;
    border: 1px solid rgba(201, 154, 59, 0.42);
    border-radius: 8px;
    padding: 25px 15px 18px;
    text-align: center;
    box-shadow: inset 0 0 22px rgba(201,154,59,0.06);
}

.chain-card.active {
    border-color: var(--gold);
    box-shadow: 0 0 18px rgba(201,154,59,.35), inset 0 0 25px rgba(201,154,59,.08);
}

.chain-card i {
    color: var(--gold);
    font-size: 45px;
    margin-bottom: 15px;
}

.chain-card h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.chain-card p {
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

.chain-card p strong {
    color: var(--gold);
}

.chain-arrow,
.op-arrow {
    color: var(--gold);
    font-size: 32px;
    flex: 0 0 auto;
}

.impact-title {
    text-align: center;
    color: var(--gold);
    font-size: 21px;
    font-weight: 800;
    margin: 28px 0;
}

/* OPERATING MODEL */
.operating-title {
    margin-top: 8px;
    margin-bottom: 26px;
}

.operating-title::before,
.operating-title::after {
    width: 38%;
    opacity: .35;
}

.operating-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border:2px solid rgb(201 154 59 / 63%);
    padding: 28px;
}

.operating-card {
    display: flex;
    /* align-items: center; */
    gap: 18px;
    width: 260px;
    min-height: 150px;
    position: relative;
}

.operating-card:not(:last-of-type) {
    border-right: 1px solid rgba(255,255,255,.16);
    padding-right: 18px;
}

.op-icon {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(201, 154, 59, .65);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex: 0 0 auto;
    box-shadow: inset 0 0 20px rgba(201,154,59,.08);
}

.op-content span {
    color: var(--gold);
    font-size: 42px;
    line-height: 1;
}

.op-content h5 {
    color: #fff;
    font-size: 18px;
    /* font-weight: 800; */
    margin: 5px 0 4px;
}

.op-content p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

/* TABLET */
@media (max-width: 1199px) {
    .value-chain-wrap {
        gap: 12px;
    }

    .chain-card {
        width: 165px;
    }

    .chain-arrow,
    .op-arrow {
        font-size: 24px;
    }

    .operating-card {
        width: 220px;
    }

    .op-icon {
        width: 88px;
        height: 88px;
        font-size: 38px;
    }
}

/* MOBILE VALUE CHAIN */
@media (max-width: 991px) {
    .value-chain-wrap {
        flex-direction: column;
    }

    .chain-card {
        width: 100%;
        max-width: 420px;
        min-height: auto;
    }

    .chain-arrow {
        transform: rotate(90deg);
    }

    .operating-title::before,
    .operating-title::after {
        width: 55px;
        opacity: 1;
    }

    /* OPERATING 2-2 BOX */
    .operating-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
        align-items: stretch;
    }

    .operating-card {
        width: calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
        max-width: none;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding: 18px 10px !important;
    }

    .op-arrow {
        display: none;
    }

    .op-icon {
        margin: 0 auto;
    }
}

/* SMALL MOBILE */
@media (max-width: 575px) {
    .value-chain-section {
        padding: 42px 0;
    }

    .section-title-line {
        gap: 10px;
    }

    .section-title-line span {
        font-size: 15px;
        text-align: center;
    }

    .section-title-line::before,
    .section-title-line::after {
        width: 35px;
    }

    .chain-card {
        padding: 22px 14px;
    }

    .impact-title {
        font-size: 17px;
        line-height: 1.4;
    }

    .operating-wrap {
        gap: 12px;
    }

    .operating-card {
        width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
        padding: 15px 8px !important;
    }

    .op-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }

    .op-content span {
        font-size: 32px;
    }

    .op-content h5 {
        font-size: 13px;
    }

    .op-content p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* leadership */

/* SECTION */
.leadership-section {
    background: #080b0f;
    color: var(--text);
    padding: 55px 0 60px;
}

/* SMALL HEADING */
.small-heading {
    color: var(--gold);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.small-heading::after {
    content: "";
    width: 55px;
    height: 2px;
    background: var(--gold);
}

/* LEADERSHIP */
.leadership-row {
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(201, 154, 59, 0.22);
}

.leader-img-box {
    border: 2px solid rgba(201, 154, 59, 0.7);
    border-radius: 6px;
    overflow: hidden;
    background: #111;
    padding: 0;
    max-width: 310px;
}

.leader-img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.leader-content {
    padding-left: 18px;
}

.leader-content h2 {
    font-family: Georgia, serif;
    color: #fff;
    font-size: 34px;
    margin-bottom: 12px;
}

.leader-content h5 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 22px;
}

.leader-content p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 24px;
}

.read-more-btn {
    display: inline-block;
    border: 2px solid rgba(201, 154, 59, 0.75);
    color: var(--gold);
    padding: 11px 28px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
}

.read-more-btn i {
    margin-left: 12px;
}

.read-more-btn:hover {
    background: var(--gold);
    color: #111;
}

/* QUOTE */
.quote-box {
    border: 2px solid rgba(201, 154, 59, 0.55);
    border-radius: 6px;
    padding: 34px 45px;
    min-height: 250px;
    background: #0b0f14;
    box-shadow: inset 0 0 18px rgba(201,154,59,0.05);
}

.quote-icon {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: .7;
}

.quote-box p {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1.45;
    margin-bottom: 24px;
}

.quote-box h6 {
    color: var(--gold);
    font-size: 18px;
    margin: 0;
}

/* TITLE LINE */
.section-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-title-line::before,
.section-title-line::after {
    content: "";
    height: 1px;
    background: rgb(215 168 75);
    flex: 1;
}

.section-title-line span {
    color: var(--gold);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.strategic-title {
    margin: -13px 0 28px;
}

/* STRATEGIC CARDS */
.strategy-card {
    min-height: 155px;
    border: 2px solid rgb(201 154 59 / 63%);
    background: #0d1116;
    border-radius: 6px;
    padding: 28px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: inset 0 0 20px rgba(201,154,59,.05);
}

.strategy-icon {
    color: var(--gold);
    font-size: 62px;
    min-width: 78px;
    text-align: center;
}

.strategy-card h5 {
    color: #fff;
    font-size: 18px;
}

.strategy-card p {
    font-size: 14px;
    line-height: 1.35;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .leader-content {
        padding-left: 0;
        margin-top: 22px;
    }

    .quote-box {
        margin-top: 28px;
    }

    .strategic-title {
        margin-top: 28px;
    }
}

@media (max-width: 575px) {
    .leadership-section {
        padding: 42px 0;
    }

    .small-heading {
        font-size: 16px;
    }

    .leader-img-box {
        max-width: 100%;
    }

    .leader-img-box img {
        height: 400px;
    }
    .eco-item {
        color: #fff;
        border-right: 1px solid rgba(215, 168, 75, 0.5);
        padding: 18px 0px;
    }
    .eco-item h6 {
        font-size: 10px;
        margin: 0;
    }
    .partner-content{
        text-align: left;
        margin-top: 20px;
    }
    .leader-content h2 {
        font-size: 28px;
    }

    .quote-box {
        padding: 28px 24px;
    }

    .quote-box p {
        font-size: 22px;
    }

    .strategy-card {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }

    .section-title-line span {
        font-size: 16px;
        text-align: center;
    }
}

/* focus section */

.focus-sections{
    min-height: 320px;
    background:
        linear-gradient(90deg,
            rgba(5, 7, 10, 0.98) 0%,
            rgba(5, 7, 10, 0.96) 34%,
            rgba(5, 7, 10, 0.35) 54%,
            rgba(5, 7, 10, 0.15) 100%
        ),
        url("../images/focus-banner.png");
    background-size: cover;
    background-position: center right;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.min-vh-hero1 {
    min-height: 480px;
}
.focus-section {
    background: #020507;
    padding: 70px 0 40px;
    color: #fff;
  }
  
  .focus-section .container {
    width: 88%;
    max-width: 1320px;
    margin: auto;
  }
  
  .section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
  }
  
  .section-heading span {
    height: 1px;
    width: 30%;
    background: #8b6423;
  }
  
  .section-heading span:last-child {
    background: #8b6423;
  }
  
  .section-heading h2 {
    color: #d99b32;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
    font-family: Arial, sans-serif;
  }
  
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .focus-card {
    position: relative;
    background: #05080a;
    border: 2px solid #8b6423;
    border-radius: 8px;
    overflow: hidden;
    min-height: 420px;
  }
  
  .focus-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #8b6423;
  }
  
  .icon-box {
    position: absolute;
    top: 205px;
    left: 40%;
    width: 72px;
    height: 72px;
    border: 2px solid #9f7628;
    border-radius: 50%;
    background: #05080a;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-box i {
    color: #d99b32;
    font-size: 38px;
  }
  
  .card-content {
    padding: 55px 10px 25px;
    text-align: center;
  }
  
  .card-content h3 {
    font-size: 16px;
    line-height: 1.2;
    margin: 0 0 6px;
    color: #fff;
    font-family: sans-serif;
    font-weight: 600;
  }
  
  .card-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #d0d0d0;
    margin-bottom: 28px;
    font-family:sans-serif;
  }
  
  .card-content a {
    color: #d99b32;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .6px;
    font-family: Arial, sans-serif;
  }
  
  .card-content a i {
    margin-left: 12px;
    font-size: 20px;
    vertical-align: middle;
  }
  
  @media (max-width: 991px) {
    .focus-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-heading span {
      width: 25%;
    }
    .icon-box {
        position: absolute;
        top: 205px;
        left: 30%;
        width: 60px;
        height: 60px;
    }
    .card-content {
        padding: 40px 10px 25px;
    }
    .card-content p {
        margin-bottom: 0px;
    }
  }
  
  @media (max-width: 575px) {
    .focus-grid {
      grid-template-columns: 1fr;
    }
    .icon-box {
        position: absolute;
        top: 205px;
        left: 30%;
        width: 60px;
        height: 60px;
    }
    .section-heading {
      gap: 10px;
    }
  
    .section-heading span {
      width: 18%;
    }
  
    .section-heading h2 {
      font-size: 15px;
    }
  
    .focus-card {
      min-height: auto;
    }
  
    .focus-card img {
      height: 220px;
    }
  
    .icon-box {
      top: 182px;
    }
  }
  .why-sector-section {
    background: #020507;
    padding: 40px 0;
  }
  .who-partner a{
    padding: 5px 10px;
  }
  .why-sector-box {
    width: 95%;
    margin: auto;
    border: 2px solid #7b561e;
    border-radius: 8px;
    padding: 20px 35px 22px;
    background: #040607;
  }
  
  .why-sector-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 15px;
  }
  
  .why-sector-title span {
    width: 48px;
    height: 2px;
    background: #7b561e;
  }
  
  .why-sector-title h2 {
    margin: 0;
    color: #d99b32;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
  }
  
  .why-sector-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
  }
  
  .why-sector-item {
    text-align: center;
    padding: 0 28px;
    min-height: 130px;
    border-right: 2px solid #6d4c1d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .why-sector-item h6{
    color: #fff;
  }
  .why-sector-item:last-child {
    border-right: none;
  }
  
  .why-sector-item i {
    color: #d99b32;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
  }
  
  .why-sector-item p {
    margin: 0;
    color: #afafaf;
    font-size: 15px;
    line-height: 1.45;
    font-family: Arial, sans-serif;
    font-weight: 500;
  }
  
  @media (max-width: 991px) {
    .why-sector-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0px 0;
    }
    .footer-main {
        padding: 15px 0 28px;
    }
    .why-sector-item {
      border-right: none;
      border-bottom: 1px solid #6d4c1d;
      padding: 18px;
    }
  
    .why-sector-item:nth-last-child(-n+1) {
      border-bottom: none;
    }
  }
  
  @media (max-width: 575px) {
    .why-sector-box {
      padding: 20px 15px;
    }
  
    .why-sector-grid {
      /* grid-template-columns: 1fr; */
    }
  
    .why-sector-title h2 {
      font-size: 16px;
    }
  
    .why-sector-title span {
      width: 35px;
    }
    .why-sector-item p {
        font-size: 14px;
    }
  }

  .partner-cta-section {
    background: #020507;
    padding: 40px 0;
  }
  
  .partner-cta-box {
    border: 2px solid #7b561e;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* LEFT SIDE */
  .partner-left {
    padding: 20px 20px;
    background: #030507;
  }
  
  .partner-left h2 {
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: Georgia, serif;
  }
  
  .partner-left span {
    color: #d99b32;
  }
  
  .partner-left a {
    display: inline-block;
    background: #e0a33a;
    color: #111;
    text-decoration: none;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
  }
  
  .partner-left a i {
    margin-left: 8px;
  }
  
  /* RIGHT SIDE */
  .partner-right {
    background: 
      linear-gradient(to right, rgba(3,5,7,0.95), rgba(3,5,7,0.4)),
      url("../images/partner-with-nsv.png") center/cover no-repeat;
    padding: 100px 20px 15px
  }
  
  /* FEATURES */
  .partner-feature {
    border-right: 1px solid #7b561e;
  }
  
  .partner-feature:last-child {
    border-right: none;
  }
  
  .partner-feature h5 {
    color: #d99b32;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .partner-feature p {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 0px;
  }
  
  /* MOBILE */
  @media(max-width:768px){
    .partner-feature{
      border-right: none;
      border-bottom: 1px solid #7b561e;
      padding: 15px 0;
    }
    .focus-section {
        background: #020507;
        padding: 30px 0;
        color: #fff;
    }
    .partner-feature:last-child{
      border-bottom: none;
    }
  
    .partner-right{
      padding: 30px 15px;
    }
  }

  /* Ivestor Page */
  .investors .hero-content h1 {
    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 25px;
}
.hero-section.investors {
    min-height: 450px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.80) 38%, rgba(5, 7, 11, 0.25) 100%),
     url(../images/investor-page-bg.png);
    background-size: cover;
    background-position: center right;
}
.investor-section {
    background: #0b0b0b;
    color: #fff;
    padding: 50px 0px 0px;
    font-family: 'Poppins', sans-serif;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .investor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  
  .investor-card {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgb(255 255 255 / 24%);
  }
  
  .investor-card:last-child {
    border-right: none;
  }
  
  .investor-card i {
    font-size: 40px;
    color: #d4a017;
    margin-bottom: 15px;
  }
  
  .investor-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .investor-card p {
    font-size: 12px;
    color: #aaa;
  }
  
  /* Bottom Section */
  .investor-bottom {
    display: flex;
    margin-top: 60px;
    gap: 40px;
  }
  
  /* Left */
  .approach-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 40px;
  }
  
  /* Center connecting line */
  .approach-steps::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255, 215, 0, 0.3);
    z-index: 0;
  }
  
  /* Each step */
  .step {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 23%;
  }
  
  /* ICON CIRCLE (IMPORTANT) */
  .step i {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  
    font-size: 30px;
    color: #d4a017;
  
    border: 2px solid #d4a017;
    border-radius: 50%;
    background: #0b0b0b;
  
    transition: 0.3s;
  }
  
  /* Hover effect (premium feel) */
  .step:hover i {
    background: #d4a017;
    color: #000;
    transform: scale(1.1);
  }
  
  /* Text */
  .step h5 {
    font-size: 13px;
    margin-bottom: 5px;
  }
  
  .step p {
    font-size: 12px;
    color: #aaa;
    max-width: 150px;
    margin: 0 auto;
  }
  
  /* Right */
  .who-partner {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 30px;
  }
  
  .who-partner ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }
  
  .who-partner li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  
  .who-partner i {
    color: #d4a017;
    margin-right: 10px;
    font-size: 18px;
  }
  .focus-section1 {
    background: #0b0b0b;
    padding: 60px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  .focus-title {
    text-align: center;
    margin-bottom: 40px;
    color: #d4a017;
    letter-spacing: 1px;
    font-size: 25px;
    font-weight: 600;
  }
  
  /* GRID */
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  /* CARD */
  .focus-card1 {
    position: relative;
    overflow: hidden;
    border: 2px solid rgb(123 86 30);
    border-radius: 10px;
  }
  
  .focus-card1 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  
  /* OVERLAY */
  .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  }
  
  /* ICON */
  .overlay i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #d4a017;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a017;
    margin-bottom: 10px;
  }
  
  /* TEXT */
  .overlay h4 {
    font-size: 13px;
    margin: 0;
  }
  
  /* CTA */
  .focus-cta {
    margin-top: 40px;
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(circle, rgba(212,160,23,0.15), transparent);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: 10px;
  }
  
  .focus-cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .focus-cta p {
    color: #aaa;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d4a017;
    color: #d4a017;
    padding: 10px 20px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .cta-btn:hover {
    background: #d4a017;
    color: #000;
  }
  .insights-section{
    background:#05070a;
    padding:25px 0;
}
.insights-wrapper{
    /* border:1px solid rgba(204,138,35,.35); */
    padding:20px;
}
.insight-tabs{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
    margin-bottom:18px;
}
.insight-tabs a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}
.insight-tabs a.active{
    color:#d99a32;
    border-bottom:2px solid #d99a32;
    padding-bottom:8px;
}
.search-box{
    position:relative;
    margin-bottom:18px;
}
.search-box input{
    width:100%;
    background:#070b11;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    padding:12px 42px 12px 15px;
    font-size:14px;
}
.search-box i{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#aaa;
}
.insight-card{
    background:#06090e;
    border:2px solid rgb(204 138 35 / 67%);
    border-radius:4px;
    overflow:hidden;
    height:100%;
}
.insight-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}
.insight-card.large img{
    height:175px;
}
.insight-content{
    padding:18px;
}
.badge-gold{
    display:inline-block;
    color:#d99a32;
    border:1px solid #d99a32;
    font-size:11px;
    padding:4px 7px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.insight-date{
    color:#bcbcbc;
    font-size:12px;
    margin-bottom:8px;
    text-align: center;
}
.insight-content h3,
.insight-content h4{
   
    color: #fff;
    margin-bottom: 8px;
}
.insight-content h3{
    font-size:22px;
}
.insight-content h4{
    font-size:18px;
    text-align: center;
    font-weight: 600;
}
.insight-content p{
    color: #c9c9c9;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: center;
}
.insight-card .insight-content {
    padding: 18px;
    margin-top: -50px;
}
.border-btn{
    background: transparent !important;
    border: 1px solid #d99a32;
    color: #d99a32 !important;
}
.read-more{
    color:#d99a32;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}
.read-more i{
    margin-left:10px;
}
.sidebar{
    border-left:1px solid rgba(204,138,35,.5);
    padding-left:24px;
}
.side-title{
    color:#d99a32;
    font-size:18px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:15px;
}
.side-title:after{
    content:"";
    flex:1;
    height:1px;
    background:#8c651f;
}
.expect-panel .quote-box{
    min-height: 195px;
}
.category-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}
.category-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:11px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#ddd;
    font-size:14px;
}
.category-list i{
    color:#d99a32;
    margin-right:12px;
}
.feature-card{
    border:2px solid rgba(204,138,35,.45);
    padding:14px;
    margin-bottom:35px;
}
.feature-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    margin-bottom:15px;
}
.feature-card h4{
    font-family:sans-serif, serif;
    font-size:22px;
}
.download-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid #d99a32;
    color:#d99a32;
    text-decoration:none;
    padding:10px 15px;
    font-size:13px;
    font-weight:700;
}
.subscribe-box p{
    color:#cfcfcf;
    font-size:14px;
}
.subscribe-box input{
    width:100%;
    background:#070b11;
    border:1px solid rgba(255,255,255,.15);
    padding:13px;
    color:#fff;
    margin-bottom:14px;
}
.subscribe-btn{
    width:100%;
    border:0;
    background:#e59b2e;
    color:#000;
    font-weight:700;
    padding:13px;
}
.privacy{
    color:#cfcfcf;
    font-size:12px;
    margin-top:14px;
}
.privacy i{
    color:#d99a32;
    margin-right:8px;
}

@media(max-width:991px){
    .sidebar{
        border-left:0;
        padding-left:0;
        margin-top:35px;
    }
}
@media(max-width:576px){
    .insights-wrapper{
        padding:12px;
    }
    .insight-tabs{
        gap:15px;
    }
    .insight-card img,
    .insight-card.large img{
        height:190px;
    }
}
/* contact Us */
.contact-section{
    padding:30px 0;
    background:
    linear-gradient(rgba(5,8,11,.94),rgba(5,8,11,.98)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
}
.section-heading{
    color:#e2a33a;
    text-align:center;
    text-transform:uppercase;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}
.section-heading:before,
.section-heading:after{
    content:"";
    width:250px;
    height:1px;
    background:rgba(226,163,58,.45);
}
.contact-card{
    height:100%;
    min-height:200px;
    border:2px solid #7b561e;
    background:rgba(8,12,16,.85);
    padding:28px 18px;
    text-align:center;
}
.contact-card i{
    font-size:38px;
    color:#e2a33a;
    margin-bottom:18px;
}
.contact-card h5{
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:6px;
}
.contact-card p{
    font-size:14px;
    color:#e7e7e7;
    line-height:1.3;
    margin:0;
}
.form-title{
    color:#e2a33a;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}
.form-control,
.form-select{
    background:#070b10;
    border:1px solid rgba(255,255,255,.28);
    border-radius:3px;
    color:#fff;
    padding:15px 20px;
    height:56px;
}
.form-control::placeholder{
    color:#b9b9b9;
}
textarea.form-control{
    height:120px;
    resize:none;
}
.form-control:focus,
.form-select:focus{
    background:#070b10;
    color:#fff;
    border-color:#e2a33a;
    box-shadow:none;
}
.form-select{
    color:#b9b9b9;
}
.send-btn{
    background:#eda83b;
    color:#050505;
    border:0;
    padding:14px 28px;
    min-width:220px;
    font-weight:700;
    text-transform:uppercase;
    border-radius:3px;
}
.secure-text{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ddd;
    font-size:13px;
    line-height:1.5;
    margin-left: 15px;
}
.secure-text i{
    color:#e2a33a;
    font-size:24px;
}
.inquiry-box{
    border-left:1px solid rgba(226,163,58,.35);
    padding-left:15px;
}
.inquiry-box p{
    color:#fff;
    font-size:15px;
    line-height:1.6;
    margin-bottom:18px;
}
.inquiry-item{
    border:1px solid rgba(226,163,58,.35);
    background:rgba(8,12,16,.75);
    padding:14px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:58px;
}
.inquiry-left{
    display:flex;
    align-items:center;
    gap:18px;
}
.inquiry-left i{
    color:#e2a33a;
    font-size:28px;
}
.inquiry-left span{
    font-size:15px;
    font-weight:600;
}
.radio-circle{
    width:18px;
    height:18px;
    border:2px solid #8e9096;
    border-radius:50%;
}

@media(max-width:991px){
    .section-heading:before,
    .section-heading:after{
        width:80px;
    }
    .inquiry-box{
        border-left:0;
        padding-left:0;
        margin-top:35px;
    }
}
@media(max-width:576px){
    .section-heading{
        font-size:18px;
    }
    .section-heading:before,
    .section-heading:after{
        width:35px;
    }
    .send-btn{
        width:100%;
    }
    .secure-text{
        margin-top:15px;
    }
}

.hero-section.contact-page{
    min-height:500px;
    display:flex;
    align-items:center;
    background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.78) 35%, rgba(0,0,0,.25) 70%),
    url("../images/contact-main-bg.png");
    background-size:cover;
    background-position:center right;
    color:#fff;
}

.hero-content{
    max-width:580px;
}

.small-label{
    color:#d89b32;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    gap:18px;
}

.small-label:after{
    content:"";
    width:55px;
    height:1px;
    background:#d89b32;
}

.hero-content h1{
    font-family: sans-serif;
    font-size: 47px;
    line-height: 1.08;
    margin-bottom: 15px;
}

.hero-content h1 span{
    color:#d89b32;
}

.hero-content p{
    font-size: 16px;
    line-height: 1.5;
    color: #f1f1f1;
    max-width: 520px;
}

.hero-line{
    width:48px;
    height:2px;
    background:#d89b32;
    margin:30px 0;
}

.response-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.response-icon{
    width:75px;
    height:75px;
    border:2px solid #d89b32;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d89b32;
    font-size:32px;
}

.response-box p{
    margin:0;
    font-size: 16px;
    width: 350px;
}

.response-box h5{
    color:#d89b32;
    font-size:26px;
    font-weight:700;
    margin:5px 0 0;
}

@media(max-width:768px){
    .hero-section.contact-page{
        min-height: 400px;
        background-position: center;
        padding: 18px 0;
    }
    .investor-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }
    .investor-card {
        text-align: center;
        padding: 0px 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .investor-bottom {
        display: flex;
        margin-top: 60px;
        gap: 40px;
        flex-direction: column;
    }
    .investor-card p {
        font-size: 11px;
        color: #aaa;
    }
    .min-vh-hero1 {
        min-height: 420px;
    }
    .step {
        text-align: center;
        position: relative;
        z-index: 1;
        width: 21%;
    }
    .focus-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .overlay h4 {
        font-size: 10px;
        margin: 0;
    }
    .hero-content h1{
        font-size:32px;
    }
    .small-label {
        color: #d89b32;
        font-size: 17px;
        margin-bottom: 15px;
    }
    .hero-content p{
        font-size:16px;
    }
    .response-box h5 {
        color: #d89b32;
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0 0;
    }
    .response-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    .contact-card {
        height: 100%;
        min-height: 160px;
    }
    .contact-card p {
        font-size: 12px;
        color: #e7e7e7;
        line-height: 1.3;
        margin: 0;
    }
    .footer-col:first-child {
        padding-left: 15px;
    }
}
.contact-cta-section{
    background:#05080b;
    padding:25px 0;
}

.contact-cta-box{
    min-height:230px;
    border:2px solid rgba(226,163,58,.45);
    border-radius:6px;
    overflow:hidden;
    background:#05080b;
    position:relative;
}

.cta-globe{
    min-height:230px;
    height:100%;
    background:
        linear-gradient(90deg, rgba(5,8,11,0) 0%, rgba(5,8,11,.35) 65%, #05080b 100%),
        url("../images/contact-ctabg.jpeg");
    background-size:cover;
    background-position:left center;
}
.cta-globe1{
    min-height:230px;
    height:100%;
    background:
        linear-gradient(90deg, rgba(5,8,11,0) 0%, rgba(5,8,11,.35) 65%, #05080b 100%),
        url("../images/partner-invest-cta.jpeg");
    background-size:cover;
    background-position:left center;
}

.cta-content{
    padding:15px 35px;
}

.cta-content h2{
    font-family:Georgia, serif;
    font-size:38px;
    line-height:1.2;
    color:#fff;
    margin-bottom:18px;
}

.gold-line{
    display:block;
    width:55px;
    height:3px;
    background:#d99a32;
    margin-bottom:25px;
}

.cta-content p{
    color:#f1f1f1;
    font-size:20px;
    line-height:1.6;
    margin:0;
}

.cta-content strong{
    color:#d99a32;
}

@media(max-width:991px){
    .cta-content{
        padding:35px 25px;
    }
    .cta-content h2{
        font-size:30px;
    }
    .cta-content p{
        font-size:17px;
    }
}

@media(max-width:767px){
    .cta-globe{
        min-height:170px;
    }
    .cta-content{
        padding:28px 20px;
    }
    .cta-content h2{
        font-size:26px;
    }
}
.why-invest-section{
    background:#05080b;
    padding:30px 0;
}
.gold-title{
    color:#d99a32;
    text-transform:uppercase;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:25px;
}
.gold-title:before,
.gold-title:after{
    content:"";
    height:1px;
    background:rgba(217,154,50,.45);
    flex:1;
}
.invest-benefits{
    border:2px solid rgb(217 154 50 / 49%);
    background:#06090e;
    padding:25px 10px;
}
.benefit-card{
    text-align:center;
    padding:0 20px;
    height:100%;
    border-right:2px solid rgba(217,154,50,.22);
}
.benefit-card.last{
    border-right:0;
}
.benefit-card i{
    color:#d99a32;
    font-size:38px;
    margin-bottom:18px;
}
.benefit-card h5{
    font-size:14px;
    text-transform:uppercase;
    font-weight:700;
    line-height:1.5;
}
.benefit-card p{
    color:#cfcfcf;
    font-size:13px;
    line-height:1.7;
    margin:0;
}

.form-panel{
    border: 2px solid rgb(217 154 50 / 43%);
    background: #06090e;
    padding: 20px 20px 20px;
    /* height: 100%; */
}
.left-heading{
    color:#d99a32;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:5x;
}
.left-heading:after{
    content:"";
    height:1px;
    background:rgba(217,154,50,.35);
    flex:1;
}
.form-panel p{
    color:#f1f1f1;
    font-size:14px;
    line-height:1.6;
}
.form-control,
.form-select{
    background:#05080b;
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    height:40px;
    border-radius:0;
    padding:12px 15px;
    font-size:14px;
}
.form-control::placeholder{
    color:#b9b9b9;
}
textarea.form-control{
    height:95px;
    resize:none;
}
.form-control:focus,
.form-select:focus{
    background:#05080b;
    color:#fff;
    border-color:#d99a32;
    box-shadow:none;
}
.submit-btn{
    background:#e4a33a;
    color:#050505;
    border:0;
    padding:13px 26px;
    font-weight:700;
    min-width:190px;
    text-transform:uppercase;
}
.secure-note{
    display:flex;
    align-items:center;
    gap:12px;
    color:#dcdcdc;
    font-size:12px;
    line-height:1.5;
}
.secure-note i{
    color:#d99a32;
    font-size:22px;
}

.expect-panel{
    background:#06090e;
    padding:35px 40px;
    height:100%;
}
.expect-title{
    color:#d99a32;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:28px;
    display:flex;
    align-items:center;
    gap:14px;
}
.expect-title:after{
    content:"";
    width:55px;
    height:1px;
    background:rgba(217,154,50,.4);
}
.expect-item{
    display:flex;
    gap:22px;
    padding-bottom:25px;
    margin-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.07);
}
.expect-icon{
    min-width:62px;
    width:62px;
    height:62px;
    border:1px solid rgba(217,154,50,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.expect-icon i{
    color:#d99a32;
    font-size:25px;
}
.expect-item h5{
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
}
.expect-item p{
    font-size:13px;
    color:#d7d7d7;
    line-height:1.6;
    margin:0;
}
.quote-box{
    border: 2px solid rgb(201 154 59 / 63%);
    padding: 28px 20px;
    text-align:center;
    background:linear-gradient(135deg, rgba(217,154,50,.08), transparent);
}
.quote-box h3{
    font-family:Georgia, serif;
    color:#d99a32;
    font-size:24px;
    line-height:1.3;
}
.quote-box span{
    display:block;
    width:45px;
    height:2px;
    background:#d99a32;
    margin:18px auto 0;
}

.legacy-box{
    margin-top:22px;
    border:2px solid rgb(217 154 50 / 43%);
    background:#06090e;
    padding:28px 25px;
}
.legacy-icon i{
    color:#d99a32;
    font-size:55px;
}
.legacy-content h2{
    font-family:Georgia, serif;
    font-size:32px;
    line-height:1.2;
}
.legacy-content h2 span{
    color:#d99a32;
}
.legacy-content p{
    color:#fff;
    font-size:18px;
}
.login-box{
    border-left:1px solid rgba(217,154,50,.45);
    padding-left:45px;
}
.login-box p{
    color:#fff;
    margin-bottom:18px;
}
.login-btn{
    display:inline-block;
    border:1px solid #d99a32;
    color:#d99a32;
    text-decoration:none;
    padding:13px 28px;
    font-weight:700;
    text-transform:uppercase;
}
.login-btn:hover{
    background:#d99a32;
    color:#050505;
}
.legacy-icon img{
    height: 120px;
}
@media(max-width:991px){
    .benefit-card{
        border-right:0;
        border-bottom:1px solid rgba(217,154,50,.22);
        padding:25px 15px;
    }
    .benefit-card.last{
        border-bottom:0;
    }
    .expect-panel{
        padding:28px;
    }
    .login-box{
        border-left:0;
        padding-left:0;
        margin-top:25px;
    }
    .response-icon {
        border: none;
    }
    
}
.approach-section{
    background:#05080b;
    padding:20px 0;
}
.gold-title{
    color:#d99a32;
    text-transform:uppercase;
    font-size:18px;
    font-weight:700;
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:25px;
}
.gold-title:before,
.gold-title:after{
    content:"";
    height:1px;
    background:rgba(217,154,50,.45);
    flex:1;
}
.section-box{
    border:1px solid rgba(217,154,50,.35);
    background:#06090e;
    padding:28px 20px;
    margin-bottom:18px;
}
.philosophy-card{
    text-align:center;
    padding:0 25px;
    border-right:1px solid rgba(217,154,50,.25);
    height:100%;
}
.philosophy-card.last{
    border-right:0;
}
.philosophy-card i{
    color:#d99a32;
    font-size:42px;
    margin-bottom:18px;
}
.philosophy-card h5{
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:12px;
}
.philosophy-card p{
    color:#ddd;
    font-size:13px;
    line-height:1.7;
    margin:0;
}

/* PROCESS */
.process-card{
    text-align:center;
    position:relative;
    padding:0 20px;
}
.process-icon{
    width:82px;
    height:82px;
    border:1px solid #d99a32;
    border-radius:50%;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.process-icon i{
    color:#d99a32;
    font-size:34px;
}
.process-card h5{
    color:#d99a32;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
}
.process-card p{
    color:#ddd;
    font-size:13px;
    line-height:1.7;
    margin:0;
}
.process-card:after{
    content:"";
    position:absolute;
    top:40px;
    right:-35px;
    width:70px;
    border-top:1px dotted #d99a32;
}
.process-card.last:after{
    display:none;
}

/* LOOK FOR */
.look-card{
    border:1px solid rgba(217,154,50,.35);
    padding:22px 15px;
    text-align:center;
    height:100%;
}
.look-card i{
    color:#d99a32;
    font-size:36px;
    margin-bottom:16px;
}
.look-card h5{
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
}
.look-card p{
    color:#ddd;
    font-size:13px;
    line-height:1.6;
    margin:0;
}

/* PARTNERSHIP BANNER */
.partner-banner{
    border:1px solid rgba(217,154,50,.35);
    background:#06090e;
    padding:30px;
    margin-bottom:18px;
}
.partner-img{
    min-height:160px;
    background:
    linear-gradient(90deg, rgba(5,8,11,.2), #06090e 95%),
    url("../images/more-capital.jpg");
    background-size:cover;
    background-position:center;
}
.partner-banner h2{
    font-family:Georgia, serif;
    font-size:34px;
    line-height:1.25;
}
.partner-banner h2 span{
    color:#d99a32;
}
.partner-text{
    border-left:1px solid rgba(217,154,50,.45);
    padding-left:35px;
    color:#ddd;
    font-size:16px;
    line-height:1.7;
}

/* CTA */
.bottom-cta{
    border:1px solid rgba(217,154,50,.35);
    background:#06090e;
    padding:25px 35px;
}
.mail-icon{
    width:70px;
    height:70px;
    border:1px solid #d99a32;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
}
.mail-icon i{
    color:#d99a32;
    font-size:30px;
}
.bottom-cta h4{
    font-size:22px;
    font-weight:700;
}
.bottom-cta p{
    color:#ddd;
    font-size:14px;
    margin:0;
}
.cta-btn{
    display:inline-block;
    background:#e4a33a;
    color:#050505;
    text-decoration:none;
    padding:14px 35px;
    font-weight:700;
    text-transform:uppercase;
}
.cta-btn:hover{
    color:#050505;
}

@media(max-width:991px){
    .philosophy-card{
        border-right:0;
        border-bottom:1px solid rgba(217,154,50,.25);
        padding:25px 15px;
    }
    .philosophy-card.last{
        border-bottom:0;
    }
    .process-card{
        margin-bottom:30px;
    }
    .process-card:after{
        display:none;
    }
    .partner-text{
        border-left:0;
        padding-left:0;
        margin-top:25px;
    }
}
.careers-section{
    background:#05080b;
    padding:25px 0;
}
.gold-title{
    color:#d99a32;
    text-transform:uppercase;
    font-size:20px;
    font-weight:700;
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    margin-bottom:25px;
}
.gold-title:before,
.gold-title:after{
    content:"";
    width:70px;
    height:1px;
    background:rgba(217,154,50,.45);
}
.join-box,
.life-box,
.values-box{
    border:1px solid rgba(217,154,50,.35);
    background:#06090e;
    padding:25px 18px;
    margin-bottom:25px;
}
.join-card{
    text-align:center;
    padding:0 22px;
    border-right:1px solid rgba(217,154,50,.25);
    height:100%;
}
.join-card.last{
    border-right:0;
}
.join-card i{
    color:#d99a32;
    font-size:44px;
    margin-bottom:16px;
}
.join-card h5{
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
}
.join-card p{
    color:#ddd;
    font-size:13px;
    line-height:1.6;
    margin:0;
}
.filter-box{
    margin-bottom:12px;
}
.form-select,
.form-control{
    background:#06090e;
    border:1px solid rgb(84 64 30);
    color:#ddd;
    height:48px;
    border-radius:3px;
    font-size:14px;
}
.form-control::placeholder{
    color:#aaa;
}
.search-wrap{
    position:relative;
}
.search-wrap i{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    color:#aaa;
    font-size:22px;
}
.job-table{
    border:1px solid rgba(217,154,50,.45);
}
.job-row{
    display:grid;
    grid-template-columns: 2fr 1fr .8fr .8fr .9fr;
    border-bottom:1px solid rgba(217,154,50,.35);
    min-height:45px;
    align-items:center;
}
.job-row:last-child{
    border-bottom:0;
}
.job-row div{
    padding:12px 18px;
    color:#ddd;
    font-size:14px;
}
.job-row a{
    color:#d99a32;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
}
.view-btn{
    display:inline-block;
    border:1px solid #d99a32;
    color:#d99a32;
    text-decoration:none;
    padding:12px 35px;
    margin:14px auto 25px;
    font-weight:700;
    text-transform:uppercase;
}
.view-btn:hover{
    background:#d99a32;
    color:#050505;
}
.section-title-left{
    color:#d99a32;
    text-transform:uppercase;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}
.section-title-left:after{
    content:"";
    flex:1;
    height:1px;
    background:rgba(217,154,50,.35);
}
.life-card{
    height:157px;
    border:1px solid rgba(217,154,50,.35);
    position:relative;
    overflow:hidden;
    border-radius:4px;
    background-size:cover;
    background-position:center;
}
.life-card:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.15));
}
.life-content{
    position:absolute;
    left:15px;
    bottom:12px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:1;
}
.life-content i{
    width:38px;
    height:38px;
    border:1px solid #d99a32;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d99a32;
    font-size:22px;
}
.life-content span{
    font-size:13px;
    color:#fff;
}
.value-item{
    display: flex;
    gap: 0px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.value-item:last-child{
    border-bottom:0;
}
.value-item i{
    color:#d99a32;
    font-size:34px;
    min-width:42px;
}
.value-item h5{
    color:#d99a32;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:4px;
}
.value-item p{
    color:#ddd;
    font-size:12px;
    line-height:1.5;
    margin:0;
}
@media(max-width:991px){
    .join-card{
        border-right:0;
        border-bottom:1px solid rgba(217,154,50,.25);
        padding:22px 15px;
    }
    .join-card.last{
        border-bottom:0;
    }
    .job-row{
        grid-template-columns:1fr;
    }
    .job-row div{
        border-bottom:1px solid rgba(255,255,255,.05);
    }
}
.offer-section{
    padding: 50px 0 15px;
    background:#040608;
    position:relative;
    overflow:hidden;
}

.offer-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:220px;
    background:linear-gradient(to bottom, rgba(255,174,0,0.10), transparent);
    pointer-events:none;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
    position:relative;
}

.section-title h2{
    color:#d6a347;
    font-size:18px;
    letter-spacing:2px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:0;
}

.section-title::before,
.section-title::after{
    content:"";
    position:absolute;
    top:50%;
    width:80px;
    height:1px;
    background:#8d6a2d;
}

.section-title::before{
    left:34%;
}
.investor-section .section-title::before {
    left: 25%;
}
.investor-section .section-title::after {
    right: 25%;
}
.section-title::after{
    right:34%;
}

.offer-card{
    background:#05080c;
    border:2px solid #7b561e;
    border-radius:6px;
    padding:35px 28px;
    height:100%;
    transition:0.4s ease;
    position:relative;
}

.offer-card:hover{
    transform:translateY(-8px);
    border-color:#d6a347;
    box-shadow:0 0 25px rgba(214,163,71,0.15);
}

.offer-icon{
    width:78px;
    height:78px;
    border:2px solid rgba(214,163,71,0.5);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.offer-icon i{
    font-size:34px;
    color:#d6a347;
}

.offer-card h3{
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
}

.offer-card p{
    color:#bcbcbc;
    font-size:16px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.small-line{
    width:45px;
    height:3px;
    background:#d6a347;
    margin-bottom:25px;
}

.offer-list{
    padding:0;
    margin:0;
    list-style:none;
}

.offer-list li{
    color: #d5d5d5;
    font-size: 15px;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.offer-list li i{
    color:#d6a347;
    font-size:14px;
}

@media(max-width:991px){
    .offer-list li{
        color: #d5d5d5;
        font-size: 13px;
        gap: 0px;
    }
    .offer-card{
        padding:30px 10px;
    }
    .section-title {
        text-align: center;
        margin-bottom: 24px;
        position: relative;
    }
    .offer-card h3{
        font-size:24px;
    }

    .section-title::before,
    .section-title::after{
        display:none;
    }
}

@media(max-width:576px){

    .offer-section{
        padding:60px 0 0;
    }

    .offer-card h3{
        font-size:15px;
    }

    .offer-card p{
        font-size:13px;
    }
    .small-line {
        width: 45px;
        height: 1px;
        background: #d6a347;
        margin-bottom: 15px;
    }
}
.industry-section {
    padding:20px 20px;
    background: #040608;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}
@media (max-width: 1200px) {
    .insight-content p {
        color: #c9c9c9;
        font-size: 12px;
        line-height: 1.2;
        margin-bottom: 5px;
    }
}
.industry-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 45px;
}

.industry-heading span {
    width: 80px;
    height: 1px;
    background: #b78936;
}

.industry-heading h2 {
    color: #d6a347;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 220px;
    border: 2px solid #7b561e;
    transition: 0.4s ease;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.35));
}

.industry-content {
    position: absolute;
    bottom: 28px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 10px;
}

.industry-content i {
    font-size: 52px;
    color: #d6a347;
    display: inline-block;
}
.navbar-brand:focus,
.navbar-brand:active {
    outline: none !important;
    box-shadow: none !important;
}
.industry-content h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: #d6a347;
    box-shadow: 0 0 25px rgba(214, 163, 71, 0.20);
}

.industry-card:hover img {
    transform: scale(1.08);
}

@media(max-width:991px) {

    .industry-card {
        height: 340px;
    }

    .industry-content h4 {
        font-size: 22px;
    }
}

@media(max-width:576px) {

    .industry-section {
        padding: 10px 10px;
    }

    .industry-heading h2 {
        font-size: 18px;
        text-align: center;
    }

    .industry-heading span {
        width: 40px;
    }

    .industry-card {
        height: 250px;
    }

    .industry-content i {
        font-size: 38px;
    }

    .industry-content h4 {
        font-size: 16px;
    }
}
.invest-nsv-section {
    background: #020507;
    padding: 60px 0 0px;
    color: #fff;
  }
  
  .section-heading,
  .track-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 25px;
  }
  
  .section-heading span,
  .track-heading span {
    width: 85px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b6423);
  }
  
  .section-heading span:last-child,
  .track-heading span:last-child {
    background: linear-gradient(90deg, #8b6423, transparent);
  }
  
  .section-heading h2,
  .track-heading h2 {
    margin: 0;
    color: #d99b32;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
  }
  
  .invest-card {
    background: #06090b;
    border: 1px solid #7b561e;
    border-radius: 5px;
    padding: 42px 35px 32px;
    text-align: center;
    min-height: 265px;
    box-shadow: inset 0 0 15px rgba(255,255,255,0.02);
  }
  
  .invest-icon {
    width: 98px;
    height: 98px;
    border: 2px solid #7b561e;
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .invest-icon i {
    color: #d99b32;
    font-size: 50px;
    line-height: 1;
  }
  
  .invest-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
  }
  
  .invest-card p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.3;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .track-record-box {
    margin-top: 18px;
    background: #06090b;
    border: 1px solid #7b561e;
    border-radius: 5px;
    padding: 14px 30px 25px;
  }
  
  .track-heading {
    margin-bottom: 20px;
  }
  
  .track-item {
    text-align: center;
    padding: 15px 10px;
    border-right: 1px solid #7b561e;
    min-height: 125px;
  }
  
  .track-item.last,
  .track-item:last-child {
    border-right: none;
  }
  
  .track-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:2px;
    margin-bottom: 0px;
  }
  
  .track-top i {
    color: #d99b32;
    font-size: 42px;
  }
  
  .track-top h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1;
    margin: 0;
    font-weight: 500;
  }
  
  .track-top h3 span {
    font-size: 22px;
  }
  
  .track-item p {
    margin: 0;
    color: #dcdcdc;
    font-size: 14px;
    line-height: 1.3;
  }
  
  @media (max-width: 991px) {
    .track-item {
      border-right: none;
      border-bottom: 1px solid #7b561e;
    }
  }
  
  @media (max-width: 575px) {
    .invest-nsv-section {
      padding: 40px 0;
    }
  
    .section-heading h2,
    .track-heading h2 {
      font-size: 15px;
      text-align: center;
    }
  
    .section-heading span,
    .track-heading span {
      width: 35px;
    }
  
    .invest-card {
      padding: 35px 20px;
      height: 100%;
    }
  
    .track-record-box {
      padding: 14px 15px 20px;
    }
  
    .track-top h3 {
      font-size: 30px;
    }
  
    .track-top i {
      font-size: 34px;
    }
  }
  .commitment-section {
    background: #020507;
    padding: 50px 0;
  }
  
  .commitment-box {
    border: 1px solid #7b561e;
    border-radius: 6px;
    background: #05080a;
    overflow: hidden;
  }
  
  .commitment-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 15px;
  }
  
  .commitment-heading span {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b6423);
  }
  
  .commitment-heading span:last-child {
    background: linear-gradient(90deg, #8b6423, transparent);
  }
  
  .commitment-heading h2 {
    margin: 0;
    color: #d99b32;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
  }
  
  .commitment-item {
    text-align: center;
    padding: 35px 25px;
    border-right: 1px solid #7b561e;
    min-height: 230px;
  }
  
  .commitment-item.last,
  .commitment-item:last-child {
    border-right: none;
  }
  
  .commitment-icon {
    margin-bottom: 18px;
  }
  
  .commitment-icon i {
    color: #d99b32;
    font-size: 58px;
    line-height: 1;
  }
  
  .commitment-item h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
  }
  
  .commitment-item p {
    color: #d8d8d8;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  @media (max-width: 991px) {
    .commitment-item {
      border-right: none;
      border-bottom: 1px solid #7b561e;
    }
  }
  
  @media (max-width: 575px) {
  
    .commitment-section {
      padding: 35px 0;
    }
  
    .commitment-heading {
      gap: 10px;
    }
  
    .commitment-heading span {
      width: 35px;
    }
  
    .commitment-heading h2 {
      font-size: 15px;
      text-align: center;
    }
  
    .commitment-item {
      min-height: auto;
      padding: 30px 18px;
    }
  
    .commitment-icon i {
      font-size: 48px;
    }
  
    .commitment-item h4 {
      font-size: 15px;
    }
  
    .commitment-item p {
      font-size: 14px;
    }
  }
  .hero-section.scroll-page {
    min-height: 450px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.80) 38%, rgba(5, 7, 11, 0.25) 100%),
     url(../images/contact-main-bg.png);
    background-size: cover;
    background-position: center right;
}
.scroll-explore-section{
    background:#020507;
    padding:60px 0;
}

.custom-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:28px;
}

.custom-heading span{
    width:85px;
    height:2px;
    background:linear-gradient(90deg,transparent,#8b6423);
}

.custom-heading span:last-child{
    background:linear-gradient(90deg,#8b6423,transparent);
}

.custom-heading h2{
    color:#d99b32;
    font-size:24px;
    font-weight:800;
    margin:0;
}

.explore-card,
.partner-card{
    background: #06090b;
    border:2px solid #7b561e;
    padding: 10px 10px;
    text-align: center;
    min-height: 220px;
}

.explore-card i,
.partner-card i{
    color: #d99b32;
    font-size: 45px;
    margin-bottom: 10px;
    display: block;
}

.explore-card h4,
.partner-card h4{
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
}

.explore-card p,
.partner-card p{
    color: #d9d9d9;
    line-height: 1.4;
    font-size: 14px;
}

.track-record-wrap{
    background:#06090b;
    border:2px solid #7b561e;
    margin-top:25px;
    padding:25px 10px;
}

.track-box{
    text-align:center;
    border-right:2px solid #7b561e;
    padding:10px 15px;
    min-height:120px;
}

.track-box.last{
    border-right:none;
}

.track-top{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0px;
    margin-bottom:0px;
}

.track-top i{
    color:#d99b32;
    font-size:40px;
}

.track-top h3{
    color:#fff;
    font-size:29px;
    margin:0;
}

.track-top h3 span{
    font-size:20px;
}

.track-box p{
    color:#d9d9d9;
    line-height:1.7;
    margin:0;
    font-size:15px;
}

@media(max-width:991px){

    .track-box{
        border-right:none;
        border-bottom:1px solid #7b561e;
    }

    .explore-card,
    .partner-card{
        min-height:auto;
    }
}

@media(max-width:575px){

    .scroll-explore-section{
        padding:40px 0;
    }

    .custom-heading h2{
        font-size:16px;
        text-align:center;
    }

    .custom-heading span{
        width:35px;
    }

    .explore-card,
    .partner-card{
        padding:28px 15px;
    }

    .explore-card h4,
    .partner-card h4{
        font-size:16px;
    }

    .track-top h3{
        font-size:25px;
    }

    .track-top i{
        font-size:30px;
    }
}
.work-interest-section {
    background: #020507;
    padding: 0px 0 60px;
    color: #fff;
  }
  
  .section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
  }
  
  .section-heading span {
    width: 75px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b6423);
  }
  
  .section-heading span:last-child {
    background: linear-gradient(90deg, #8b6423, transparent);
  }
  
  .section-heading h2 {
    color: #d99b32;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
  }
  
  .work-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
  }
  
  .work-step {
    text-align: center;
    position: relative;
  }
  
  .work-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 58px;
    right: -48px;
    width: 75px;
    height: 2px;
    background: #7b561e;
  }
  
  .work-step:not(:last-child)::before {
    content: "➜";
    position: absolute;
    top: 47px;
    right: -20px;
    color: #d99b32;
    font-size: 22px;
    z-index: 2;
  }
  
  .work-icon {
    width: 115px;
    height: 115px;
    border: 2px solid #7b561e;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .work-icon i {
    font-size: 58px;
    color: #d99b32;
  }
  
  .work-step h4 {
    color: #d99b32;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
  }
  
  .work-step p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
  }
  
  .interest-heading {
    margin-top: 60px;
  }
  
  .interest-card {
    height: 200px;
    border: 2px solid #7b561e;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: flex-end;
  }
  
  .interest-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.25));
  }
  
  .interest-card h4 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    line-height: 1.25;
    margin: 0;
    padding-right: 25px;
  }
  
  .interest-card i {
    position: absolute;
    right: 18px;
    bottom: 24px;
    z-index: 2;
    color: #d99b32;
    font-size: 28px;
  }
  
  @media (max-width: 991px) {
    .work-flow {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .work-step::before,
    .work-step::after {
      display: none;
    }
  }
  
  @media (max-width: 575px) {
    .work-interest-section {
      padding: 40px 0;
    }
  
    .section-heading h2 {
      font-size: 17px;
      text-align: center;
    }
  
    .section-heading span {
      width: 35px;
    }
  
    .work-icon {
      width: 95px;
      height: 95px;
    }
  
    .work-icon i {
      font-size: 46px;
    }
  
    .work-step h4 {
      font-size: 17px;
    }
  
    .work-step p {
      font-size: 15px;
    }
  
    .interest-card {
      height: 230px;
    }
  
    .interest-card h4 {
      font-size: 14px;
    }
    .small-label:after {
      display: none;
    }
  }
  .privacy-policy-section {
    background: #050505;
    color: #d9d9d9;
    padding: 0px 0 20px;
    font-family: Arial, sans-serif;
}

.privacy-box {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 50px 0px;
    border-radius: 18px;
}

.privacy-box h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-box h4 {
    color: #d8b45b;
    font-size: 22px;
    margin-bottom: 10px;
}

.effective-date {
    color: #aaa;
    margin-bottom: 30px;
}

.privacy-box h3 {
    color: #d8b45b;
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 15px;
}

.privacy-box h5 {
    color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
}

.privacy-box p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 16px;
}

.privacy-box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-box ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding-left: 0 !important;
}

.check-list li::before {
    content: "✓";
    color: #d8b45b;
    font-weight: bold;
    margin-right: 10px;
}

.contact-box {
    background: #151515;
    padding: 30px;
    border-radius: 14px;
    margin-top: 40px;
    border-left: 4px solid #d8b45b;
}

.contact-box a {
    color: #d8b45b;
    text-decoration: none;
}

.footer-line {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 767px) {
    .privacy-policy-section {
        padding: 0px 0;
    }

    .privacy-box {
        padding: 25px;
    }

    .privacy-box h1 {
        font-size: 32px;
    }

    .privacy-box h3 {
        font-size: 21px;
    }
}
.select-wrapper{
    position: relative;
}

.select-wrapper .form-select{
    height: 55px;
    padding-right: 45px;
    box-shadow: none;
}

.select-wrapper i{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 22px;
    color: #666;
    pointer-events: none;
}
.success-popup{
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0f1720;
    padding: 18px 22px;
    border-radius: 12px;
    z-index: 9999;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 4px solid #d7a84b;
}

.success-popup.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-content{
    text-align: left;
}

.popup-content i{
    font-size: 40px;
    color: #d7a84b;
    margin-bottom: 10px;
    display: block;
}

.popup-content h5{
    color: #fff;
    margin-bottom: 5px;
}

.popup-content p{
    color: #cfcfcf;
    margin: 0;
    font-size: 14px;
}