: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;
}

/* ===========================
Desktop Multi Level Menu===========================*/
.navbar-nav .dropdown,
.dropdown-submenu {
    position: relative;
}

.navbar-nav .dropdown-menu {
    min-width: 275px;
    border: none;
    border-radius: 8px;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

/* First Level */
/* Last level dropdown open to LEFT */
@media (min-width:992px) {

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: auto !important;
        right: 100% !important;
        margin-top: 0;
    }

}

@media (max-width:991px) {

    .navbar-nav .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: 0;
        padding-left: 15px;
    }

    .navbar-nav .dropdown-menu.show {
        display: block;
    }

    .navbar-nav .dropdown-item,
    .navbar-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Arrow */

    .dropdown-submenu>.dropdown-item::after,
    .dropdown>.nav-link::after {
        content: "\F0140";
        font-family: "Material Design Icons";
        transition: .3s;
    }

    .dropdown-submenu>.dropdown-item.active::after,
    .dropdown>.nav-link.active::after {
        transform: rotate(180deg);
    }

}

@media(min-width:992px) {

    .navbar-nav>.dropdown>.dropdown-menu {

        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: .3s;
    }

    .navbar-nav>.dropdown:hover>.dropdown-menu {

        opacity: 1;
        visibility: visible;
        transform: translateY(0);

    }

    .dropdown-menu .dropdown-item:hover {
        color: #d6a73f;
        background: #333232;
    }

    /* Second & Third Level */

    .dropdown-submenu>.dropdown-menu {

        top: 0;
        left: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: .3s;
        display: block;
    }

    .dropdown-submenu:hover>.dropdown-menu {

        opacity: 1;
        visibility: visible;
        transform: translateX(0);

    }

}

@media(max-width:768px) {
    .dropdown-menu .dropdown-item:hover {
        color: #d6a73f;
        background: #333232 !important;
    }

    .dropdown-item.active,
    .dropdown-item:active {
        color: var(--bs-dropdown-link-active-color);
        text-decoration: none;
        background-color: #212122;
    }
}

.dropdown-submenu>a::after {

    content: "\F0142";
    font-family: "Material Design Icons";
    float: right;
    font-size: 18px;
    line-height: 18px;
}

/* Item */

.dropdown-menu .dropdown-item {

    padding: 10px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {

    color: #d6a73f;
    background: #f8f8f8;

}

/* ===========================
      MOBILE
=========================== */

@media(max-width:991px) {

    .navbar-nav .dropdown-menu {

        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 10px;
        margin-top: -5px;
    }

    .navbar-nav .dropdown-menu.show {

        display: block;

    }

    .dropdown-item {

        color: #fff !important;
        padding: 10px 15px;

    }

    .dropdown-submenu>.dropdown-menu {

        padding-left: 8px;

    }

    .dropdown-submenu>a::after {

        float: right;

    }

}

.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: 13px;
    font-weight: 700;
    margin: 0 5px;
    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: 13px;
    font-weight: 700;
    display: inline-block;
    border-radius: 4px;
}

.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: 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/home-banner.png");
    background-size: cover;
    background-position: center right;
}

.hero-content h1 {
    font-size: 36px;
    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 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-right: 4px;
}

.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: #000000;
    PADDING: 30PX 0PX;
}

.adv-title h2 {

    color: #fff;
    font-size: 36px;
}

.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: 20px 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 {
    color: #d7a84b;
    font-size: 25px;
    font-weight: 600;
}

.border-btn1 {
    border: 1px solid #d99a32;
    color: #d99a32 !important;
    padding: 15px 10px;
    font-size: 13px;
    border-radius: 3px;
}

.partner-content p {
    max-width: 420px;
    line-height: 1.4;
    font-size: 15px;
}

/* 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: 600;
    margin: 0;
}

.footer-cta-btn {
    background: var(--gold);
    color: #111;
    padding: 13px 18px;
    font-size: 13px;
    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: 25px 0 0px;
}

.footer-col {
    border-right: 0.5px solid rgb(172 113 23 / 57%);
    padding-left: 32px;
    padding-right: 28px;
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-logo-wrap img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--gold);
    font-size: 14px;
    margin: 0;
}

.nsv-footer h5 {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    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: 4px;
    margin-right: 12px;
}

.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: 35px;
    }

    .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;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 35px;
    }

    .btn-gold {
        padding: 11px 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: 22px;
    }

    .main-header {
        padding: 0px 0;
    }
}

/* ABOUT HERO */
.about-hero-section {
    min-height: 400px;
    background:
        linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.96) 34%, rgb(5 7 10 / 84%) 54%, rgb(5 7 10 / 59%) 100%), url(../images/home-banner.png);
    background-size: cover;
    background-position: center right;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.nsv-section {
    min-height: 400px;
    background:
        linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.96) 34%, rgb(5 7 10 / 17%) 54%, rgb(5 7 10 / 59%) 100%), url(../images/nsv-captal-bg.png);
    background-size: cover;
    background-position: center right;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.min-vh-hero {
    min-height: 400px;
}

.about-hero-content {
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.small-label {
    color: var(--gold);
    font-weight: 600;
    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-size: 36px;
    line-height: 1.08;
    color: #fff;
    font-weight: 600;

    margin-bottom: 20px;
}

.about-hero-content h1 span {
    color: var(--gold);
}

.about-hero-content h4 {
    color: #fff;
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-line {
    width: 62px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 28px;
}

.about-hero-content p {
    color: rgb(224, 224, 224);
    font-size: 14px;
    line-height: 1.45;
    max-width: 500px;
    margin-bottom: 7px;
}

.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: 600;
    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: 600;
    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: 600; */
    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 */
.leadership-section {
    background: #0b0b0b;
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: -18px;
    position: relative;
    z-index: 2;
}

.section-title span {
    display: inline-block;
    background: #0b0b0b;
    color: #d8a338;
    font-size: 30px;
    font-weight: 700;
    padding: 0 15px;
    position: relative;
}

.section-title span::before,
.section-title span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #d8a338;
}

.section-title span::before {
    right: 100%;
}

.section-title span::after {
    left: 100%;
}

.leadership-box {
    border: 1px solid rgba(216, 163, 56, .35);
    border-radius: 8px;
    padding: 0px;
}

.leader-card {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.leader-border {
    border-left: 1px solid rgba(216, 163, 56, .25);
}

.leader-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d8a338;
}

.leader-content h2 {
    color: #d8a338;
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 700;
}

.leader-content h5 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 400;
}

.leader-content .title-line {
    width: 45px;
    height: 3px;
    background: #d5a23a;
    margin: 0 0 10px 0px;
}

.leader-content p {
    color: #dddddd;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

@media(max-width:991px) {

    .leader-border {
        border-left: 0;
        border-top: 1px solid rgba(216, 163, 56, .25);
        margin-top: 30px;
        padding-top: 40px;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .title-line {
        margin: 15px auto;
    }

    .leader-content h2 {
        font-size: 30px;
    }

    .leader-content h5 {
        font-size: 19px;
    }

    .leader-content p {
        font-size: 15px;
    }

    .leader-img img {
        width: 160px;
        height: 160px;
    }

    .leader-card {
        gap: 3px;
        padding: 15px 10px;
    }
}

/* 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: 600;
    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: 23px;
    }

    .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;
}

.partner-left h2 {
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;

}

.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-size: 35px;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-section.investors {
    min-height: 400px;
    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/insightpage-bg.png);
    background-size: cover;
    background-position: center right;
}
.hero-section.turning {
    min-height: 400px;
    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/turning-opportunities.jpg);
    background-size: cover;
    background-position: center right;
}
.hero-section.turning1 {
    min-height: 400px;
    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/india-infra-bg.jpg);
    background-size: cover;
    background-position: top 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-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 0px 0px;
}

.investor-grid1 .investor-card {
    display: flex;
    text-align: left;
    padding: 10px 0px 0px;
    align-items: center;
}

.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-grid1 .investor-card i {
    font-size: 55px;
    color: #d4a017;
    margin-bottom: 15px;
    margin-right: 10px;
}

.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;
}

.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;
    }
}



@media(max-width:768px) {

    .investor-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .investor-grid1 {
        display: grid;
        grid-template-columns: repeat(2, 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: 35px;
    }

    .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-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 {

    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-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-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: 12px;
}

.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;
    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: 600;
    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: 600;
    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: 600;
    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: 600;
    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: 600;
    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: 600;
    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;
}

.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;
}



/*======================
    Heading
=======================*/

.section-title1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 45px;
}

.section-title1 h2 {
    color: #d4a43b;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.section-title1 span {
    width: 140px;
    height: 2px;
    background: #5f4717;
    position: relative;
}

.section-title1 span::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #d4a43b;
    position: absolute;
    top: 50%;
    right: 130px;
    transform: translateY(-50%) rotate(45deg);
}

.round-img {
    height: 265px;
}

.section-title1 span:first-child::before {
    left: 130px;
    right: auto;
}

.process-icon1 i {
    font-size: 45px;
    color: #d7a84b;
}

/*======================
      Grid
=======================*/

.event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.process-box1 {
    text-align: center;
    position: relative;
    border: 1px solid #b784065e;
    border-radius: 5px;
}

.process-box1 h5 {
    color: #fff;
    font-size: 15px;
}

.adv-line1 {
    width: 67%;
    height: 1px;
    background: var(--gold);
    margin: 6px 0;
}

.adv-title .d-flex i {
    font-size: 85px;
    line-height: 93px;
    margin-right: 15px;
    color: #d4a017;
}

/*======================
     Responsive
=======================*/

@media (max-width:1200px) {

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


.practice-section {
    padding-bottom: 50px;
}

.practice-section .top-services {
    position: relative;
    z-index: 2;
    padding: 40px 0px 30px;
    background-image: url("../images/home-banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.top-services .service-box i {
    font-size: 50px;
    line-height: 50px;
}

.top-services .service-box h6 {
    width: 120px;
    margin: 10px auto 10px;
    margin-top: 10px;
    font-size: 15px;
}

.practice-section .left-panel {
    border: 1px solid #7f561f;
    padding: 15px;
    border-radius: 5px;
}

.right-panel {
    border: 1px solid #7f561f;
    padding: 15px;
    border-radius: 5px;
}

.right-panel1 {
    border: 1px solid #7f561f;
    padding: 30px 15px;
    border-radius: 5px;
}

.practice-section h2 {
    font-size: 25px;
    font-weight: 600;
    color: #d89b32;
    font-family: Arial, sans-serif;
}

.service-box {
    position: relative;
}

.service-box::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(214, 166, 70, .35);
}

.top-services .col-3:nth-child(4) .service-box::after {
    display: none;
}

.clshome .event-card {
    height: 190px;
}

.featured-events h2 {
    font-size: 24px;
}

.clshome {
    border: 1px solid #7f561f;
    padding: 15px;
    border-radius: 5px;
}

.clshome h2 {
    color: #d7a84b;
    font-size: 25px;
    font-weight: 600;
}

.right-panel1 img {
    width: 160px;
    height: 130px;
}

@media (max-width:768px) {
    .top-services .service-box h6 {
        width: auto;
        margin-bottom: 18px;
        margin-top: 10px;
        font-size: 14px;
    }

    .featured-events {
        padding: 50px 0;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .round-img {
        height: auto;
    }

    .event-card {
        height: 380px;
    }

    .section-title1 h2 {
        font-size: 24px;
    }

    .section-title1 span {
        width: 60px;
    }

    .event-content h3 {
        font-size: 24px;
    }

    .event-content h3 span {
        font-size: 45px;
    }

    .clshome h2 {
        color: #d7a84b;
        font-size: 24px;
    }

    .clshome {
        /* margin: 0px 10px 20px; */
        border: none;
    }

    .right-panel1 {
        flex-direction: column;
        margin-top: 0px;
    }
    .right-panel {
        margin-top: 20px;
    }
    .right-panel1 img {
        display: none;
    }

    .clshome .event-card {
        margin-bottom: 15px;
    }
}

.overview-section {
    background: #0b0b0b;
    padding: 50px 0 0;
    color: #fff;
}

.section-titles1 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-titles1 span {
    color: #d5a23a;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding: 0 35px;
}

.section-titles1 span:before,
.section-titles1 span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45px;
    height: 2px;
    background: #d5a23a;
}

.section-titles1 span:before {
    right: 100%;
}

.section-titles1 span:after {
    left: 100%;
}

.overview-text {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
    color: #ddd;
    line-height: 1.8;
    font-size: 18px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.overview-card {
    border: 1px solid rgba(213, 162, 58, .45);
    border-radius: 6px;
    padding: 30px 20px;
    transition: .3s;
    background: rgba(255, 255, 255, .02);
    height: 100%;
}

.overview-card:hover {
    border-color: #d5a23a;
    transform: translateY(-6px);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
}

.card-head i {
    font-size: 45px;
    color: #d5a23a;
}

.card-head h3 {
    margin: 0;
    color: #d5a23a;
    font-size: 20px;
    font-weight: 700;
}

.title-line {
    width: 45px;
    height: 3px;
    background: #d5a23a;
    margin: 0 0 18px 72px;
}

.overview-card p {
    color: #e2e2e2;
    line-height: 1.5;
    font-size: 15px;
    margin: 0;
}

.overview-card ul {
    margin: 0;
    padding-left: 22px;
}

.overview-card ul li {
    color: #e2e2e2;
    line-height: 1.5;
    font-size: 15px;
}

.overview-card ul li::marker {
    color: #d5a23a;
}

@media(max-width:991px) {

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .section-titles1 span {
        font-size: 26px;
    }

    .overview-text {
        font-size: 16px;
    }

    .card-head h3 {
        font-size: 20px;
    }

    .card-head i {
        font-size: 42px;
    }

    .title-line {
        margin-left: 60px;
    }

}

.credentials-section {
    background: #0b0b0b;
    padding: 0 0 36px;
}

.credentials-box {
    border: 1px solid rgba(216, 163, 56, .35);
    border-radius: 8px;
    padding: 11px 15px;
}

.credential-card {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid rgba(216, 163, 56, .25);
    height: 100%;
    transition: .3s;
}

.credential-card:hover {
    transform: translateY(-6px);
}

.credential-card i {
    font-size: 60px;
    color: #d8a338;
    display: block;
}

.credential-card h5 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 6px;
}

.credential-card p {
    color: #e5e5e5;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.border-0 {
    border-right: none !important;
}

@media(max-width:991px) {

    .credential-card {
        border-right: none;
        border-bottom: 1px solid rgba(216, 163, 56, .2);
        padding: 30px 15px;
    }

    .credential-card i {
        font-size: 48px;
    }

    .credential-card h5 {
        font-size: 20px;
    }

    .credential-card p {
        font-size: 17px;
    }

}

@media(max-width:576px) {

    .credential-card {
        padding: 25px 10px;
    }

    .credential-card i {
        font-size: 42px;
    }

    .credential-card h5 {
        font-size: 18px;
    }

    .credential-card p {
        font-size: 13px;
    }

}

/* nsv page  */

.nsv-highlight {
    background: #070707;
    padding: 10px 0;
}

.nsv-highlight .row {
    border: 1px solid rgba(212, 164, 59, .35);
    border-radius: 12px;
    overflow: hidden;
    background: #0b0b0b;
}

.highlight-box {
    text-align: center;
    padding: 5px 2px 15px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    height: 100%;
    transition: .35s;
}

.highlight-box i {
    font-size: 52px;
    color: #d7a338;
    margin-bottom: 0px;
    display: block;
}

.highlight-box .label {
    display: block;
    color: #bfbfbf;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.highlight-box h2,
.highlight-box h4 {
    color: #d7a338;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-box h2 {
    font-size: 30px;
    margin-bottom: 2px;
}

.highlight-box h4 {
    font-size: 24px;
}

.highlight-box p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.highlight-box:hover {
    background: #121212;
}

.highlight-box:hover i {
    transform: scale(1.08);
    transition: .3s;
}

@media(max-width:991px) {

    .highlight-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

}

@media(max-width:767px) {

    .highlight-box {
        padding: 10px 15px;
    }

    .highlight-box h2 {
        font-size: 24px;
    }

    .highlight-box h4 {
        font-size: 20px;
    }

    .highlight-box p {
        font-size: 12px;
    }

    .highlight-box i {
        font-size: 35px;
    }

}

.capital-journey {
    background: #050505;
    padding: 20px 0;
}

.capital-journey .row {
    border: 1px solid rgba(212, 164, 59, .35);
    border-radius: 14px;
    background: #0b0b0b;
    padding: 25px;
}

.funding-ecosystem-section .img-div {
    padding: 0;
}

.journey-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}

.journey-title span {
    width: 120px;
    height: 2px;
    background: #6f5216;
    position: relative;
}

.journey-title span::after {
    content: "◆";
    position: absolute;
    right: 109px;
    top: -11px;
    color: #d7a338;
    font-size: 16px;
}

.journey-title span:first-child::after {
    left: 109px;
    right: auto;
}

.journey-title h2 {
    color: #d7a338;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.journey-box {
    text-align: center;
    position: relative;
    padding: 10px;
    height: 100%;
}

.journey-box::after {
    content: "➜";
    position: absolute;
    top: 45px;
    right: -10px;
    color: #d7a338;
    font-size: 28px;
}

.col-lg:last-child .journey-box::after {
    display: none;
}

.journey-icon {
    width: 95px;
    height: 95px;
    margin: auto;
    border: 2px solid #d7a338;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d7a338;
    font-size: 46px;
    margin-bottom: 18px;
    box-shadow: 0 0 18px rgba(212, 164, 59, .25);
}

.journey-box h3 {
    color: #d7a338;
    font-size: 23px;
    margin-bottom: 8px;
}

.journey-box h4 {
    color: #d7a338;
    font-size: 15px;
    font-weight: 700;
}

.journey-box p {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}

@media(max-width:991px) {

    .journey-box::after {
        display: none;
    }

    .journey-title h2 {
        font-size: 20px;
    }

    .journey-title span {
        width: 60px;
    }

    .funding-ecosystem-section .img-div {
        padding: 10px;
    }

    .journey-title span::after {
        display: none;
    }
}

.capital-solutions-section {
    background: #050505;
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
}

.capital-card {
    background: #0b0b0b;
    border: 1px solid rgba(214, 167, 63, .45);
    border-radius: 14px;
    padding: 15px 10px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: .35s;
}

.capital-card:hover {
    border-color: #d6a73f;
    box-shadow: 0 12px 35px rgba(214, 167, 63, .15);
}

.capital-card h2 {
    color: #d6a73f;
    text-align: center;
    font-size: 15px !important;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/*==========================
        Left & Right List
==========================*/

.solution-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px !important;
    line-height: 1.5;
    margin-bottom: 4px;
}

.solution-list li i {
    color: #d6a73f;
    font-size: 23px;
    flex-shrink: 0;
}

/*==========================
      Center Section
==========================*/

.network-row {
    margin-top: 15px;
}

.network-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .08);
    padding: 0 8px;
    height: 100%;
}

.network-icon {
    width: 85px;
    height: 85px;
    border: 2px solid #d6a73f;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.network-icon i {
    color: #d6a73f;
    font-size: 48px;
}

.network-box h4 {
    color: #d6a73f;
    font-size: 14px;
    margin-bottom: 4px;

}

.network-box p {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
}

.network-footer {
    border-top: 1px solid rgba(214, 167, 63, .25);
    margin-top: 20px;
    padding-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.network-footer span {
    color: #d6a73f;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.network-footer span:not(:last-child)::after {
    content: "•";
    color: #d6a73f;
    margin-left: 17px;
}

/*==========================
     Bottom Images
==========================*/

.building-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    opacity: .18;
    z-index: 1;
}

.building-bg img {
    width: 100%;
}

/*==========================
        Responsive
==========================*/

@media(max-width:1400px) {

    .capital-card h2 {
        font-size: 20px;
    }

    .solution-list li {
        font-size: 19px;
    }

    .network-box h4 {
        font-size: 15px;
    }

    .network-box p {
        font-size: 13px;
    }

    .network-footer span {
        font-size: 13px;
    }

}

@media(max-width:991px) {

    .capital-card {
        margin-bottom: 25px;
    }

    .network-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding-bottom: 0px;
        margin-bottom: 7px;
    }

    .network-footer {
        gap: 12px;
    }

    .network-footer span {
        display: block;
    }

    .network-footer span::after {
        display: none !important;
    }

}

@media(max-width:767px) {
    .grid-core {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .capital-solutions-section {
        padding: 50px 0;
    }

    .capital-card {
        padding: 25px 20px;
    }

    .capital-card h2 {
        font-size: 22px;
    }

    .solution-list li {
        font-size: 16px;
    }

    .solution-list li i {
        font-size: 22px;
    }

    .network-icon {
        width: 75px;
        height: 75px;
    }

    .network-icon i {
        font-size: 38px;
    }

    .network-box h4 {
        font-size: 20px;
    }

    .network-box p {
        font-size: 15px;
    }

    .network-footer span {
        font-size: 15px;
    }

    .building-bg {
        width: 110px;
    }

}

.funding-ecosystem-section {
    background: #050505;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.funding-ecosystem-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(255, 183, 52, .12),
            transparent 70%);
    z-index: 0;
}

.funding-ecosystem-section .container-fluid {
    position: relative;
    z-index: 2;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: #e0a93b;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title p {
    color: #ddd;
    font-size: 20px;
}


/*========================
      BOX
=========================*/

.capital-box {
    border: 1px solid rgba(224, 169, 59, .35);
    border-radius: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(5px);
}

.box-title {
    background: #dca437;
    color: #111;
    display: inline-block;
    padding: 7px 28px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 30px;
}

.capital-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    transition: .35s;
}

.capital-item:hover {
    transform: translateX(8px);
}

.capital-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid #dca437;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dca437;
    font-size: 20px;
    transition: .3s;
}

.capital-item:hover i {
    background: #dca437;
    color: #000;
    box-shadow: 0 0 20px rgba(224, 169, 59, .55);
}

.capital-item span {
    color: #f5f5f5;
    font-size: 13px;
    line-height: 19px;
}


/*========================
    CENTER CIRCLE
=========================*/

.nsv-circle {
    width: 360px;
    height: 360px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nsv-circle::before {

    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;

    border: 3px solid #dca437;

    box-shadow:

        0 0 15px #dca437,

        0 0 35px rgba(224, 169, 59, .5),

        inset 0 0 25px rgba(224, 169, 59, .3);

}

.nsv-circle::after {

    content: '';

    position: absolute;

    width: 360px;

    height: 360px;

    border-radius: 50%;

    border: 2px dashed rgba(224, 169, 59, .18);

    animation: rotateCircle 30s linear infinite;

}


.circle-inner {

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: #090909;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    border: 2px solid rgba(224, 169, 59, .25);

}

.circle-inner h1 {

    color: #dca437;

    font-size: 45px;

    margin: 0;

    font-weight: 600;

}

.circle-inner h3 {

    color: #fff;
    font-size: 25px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.circle-inner ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.circle-inner li {
    color: #fff;
    font-size: 15px;
    margin: 4px 0;
}


/*========================
 ANIMATION
=========================*/

@keyframes rotateCircle {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}


/*========================
 RESPONSIVE
=========================*/

@media(max-width:1199px) {

    .nsv-circle {

        width: 350px;

        height: 350px;

        margin: 50px auto;

    }

    .circle-inner {

        width: 270px;

        height: 270px;

    }

    .circle-inner h1 {

        font-size: 60px;

    }

    .circle-inner h3 {

        font-size: 28px;

    }

    .circle-inner li {

        font-size: 17px;

    }

}

@media(max-width:991px) {

    .capital-box {

        margin-bottom: 20px;

    }

    .section-title h2 {

        font-size: 34px;

    }

    .section-title p {

        font-size: 18px;

    }

    .nsv-circle {

        width: 300px;

        height: 300px;

    }

    .circle-inner {

        width: 220px;

        height: 220px;

    }

    .circle-inner h1 {

        font-size: 48px;

    }

    .circle-inner h3 {

        font-size: 24px;

    }

    .circle-inner li {

        font-size: 15px;

        margin: 5px 0;

    }

}

@media(max-width:767px) {

    .box-title {

        font-size: 18px;

        padding: 10px 20px;

    }

    .capital-item {

        margin-bottom: 18px;
        align-items: center;
    }

    .capital-item span {

        font-size: 12px;

        line-height: 20px;
        align-items: center;
    }

    .capital-item i {

        width: 45px;

        height: 45px;

        font-size: 20px;

    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

}

.enterprise-section {
    padding: 30px 20px;
    background: #05080f;
    color: #fff;
}

.top-text {
    color: #d89d2a;
    font-size: 18px;
}

.enterprise-section h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 10px 0;
}

.enterprise-section h1 span {
    color: #d89d2a;
}

.enterprise-section h5 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.line {
    width: 80px;
    height: 4px;
    background: #d89d2a;
    margin: 20px 0;
}

.enterprise-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}


@media(max-width:992px) {

    .enterprise-section h1 {
        font-size: 35px;
    }

    .enterprise-section h5 {
        font-size: 22px;
    }

    .enterprise-section p {
        font-size: 16px;
    }

}

.section-core {
    padding: 0px 40px;
    margin-bottom: 32px;
}

.grid-core {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 2fr));
    gap: 20px;
}

.card-core {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.card-core i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 10px;
}

.card-core h3 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 16px;
}

.card-core p {
    color: var(--gray);
    font-size: 13px;
}

.integrated-approach {
    background: #050505;
    padding: 20px 0;
    overflow: hidden;
}

/*=====================================
            HEADING
=====================================*/



.section-heading h2 {
    color: #d9a43c;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/*=====================================
            BOX
=====================================*/

.approach-box {
    text-align: center;
    position: relative;
    transition: .35s;
}

.approach-box:hover {
    transform: translateY(-8px);
}

/*=====================================
            HEXAGON
=====================================*/

.hexagon {
    width: 135px;
    height: 135px;
    margin: auto;
    position: relative;
}

.hexagon svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hexagon polygon {
    fill: transparent;
    stroke: #c9972c;
    stroke-width: 0.5;
    stroke-linejoin: round;

    filter: drop-shadow(0 0 4px rgba(201, 151, 44, .8));
}

/*=====================================
            ICON
=====================================*/

.hexagon i {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    color: #d9a43c;
    font-size: 42px;
    z-index: 5;
}

/*=====================================
            NUMBER
=====================================*/

.number {
    position: absolute;
    width: 35px;
    margin-top: -35px;
    margin-bottom: 8px;
    color: #d9a43c;
    font-size: 22px;
    font-weight: 700;
    /* margin: auto; */
    margin-top: -34px;
    margin-left: -18px;
}

/*=====================================
            TITLE
=====================================*/

.approach-box h4 {
    color: #d9a43c;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 10px;

}

/*=====================================
            PARAGRAPH
=====================================*/

.approach-box p {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0 10px;
}

/*=====================================
            HOVER
=====================================*/

.approach-box:hover polygon {

    stroke: #f8cb62;

    filter:
        drop-shadow(0 0 8px #f8cb62) drop-shadow(0 0 18px rgba(248, 203, 98, .45));

}

.approach-box:hover i {

    color: #ffd97d;

}

.approach-box:hover h4,
.approach-box:hover .number {

    color: #ffd97d;

}

.approach-box {
    position: relative;
}

/* Gold dotted line */
.approach-box::after {
    content: "";
    position: absolute;
    top: 62px;
    right: -26px;
    width: 40px;
    border-top: 2px dashed #c9972c;
    opacity: .9;
}

/* Arrow Circle */
.approach-box::before {
    content: ">";
    position: absolute;
    top: 50px;
    right: -44px;
    width: 28px;
    height: 28px;
    color: #c9972c;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}

/* Last Box Hide */

.last-box::after,
.last-box::before {
    display: none;
}

/*=========================================
            HOVER
=========================================*/

.approach-box:hover::after {
    border-color: #f6c85b;
}

.approach-box:hover::before {
    border-color: #f6c85b;
    color: #f6c85b;
    box-shadow: 0 0 12px rgba(246, 200, 91, .5);
}

/*=========================================
        TABLET
=========================================*/

@media(max-width:991px) {

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .heading-line {
        width: 70px;
    }

    .approach-box {
        margin-bottom: 60px;
    }

    .approach-box::after,
    .approach-box::before {
        display: none;
    }

    .hexagon {
        width: 120px;
        height: 120px;
    }

    .hexagon i {
        font-size: 38px;
    }

    .number {
        font-size: 34px;
    }

    .approach-box h4 {
        font-size: 22px;
    }

    .approach-box p {
        font-size: 15px;
    }

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:576px) {

    .integrated-approach {
        padding: 60px 15px;
    }

    .section-heading {
        /* flex-direction:column; */
        gap: 15px;
    }

    .heading-line {
        width: 60px;
    }

    .section-heading h2 {
        font-size: 22px;
        text-align: center;
    }

    .hexagon {
        width: 100px;
        height: 100px;
    }

    .hexagon i {
        font-size: 30px;
    }

    .number {
        font-size: 28px;
    }

    .approach-box h4 {
        font-size: 18px;
    }

    .approach-box p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/*  */


.nsv-section {
    padding: 0px 0;
}

.nsv-section .row {
    align-items: stretch;
}

/*=========================
        COMMON CARD
==========================*/

.sector-card,
.feature-card1,
.value-card {

    background: #0b0b0b;

    border: 1px solid #b78a2c87;

    border-radius: 14px;

    height: 100%;

    padding: 25px 15px;

    transition: .4s;

}

.sector-card:hover,
.feature-card1:hover,
.value-card:hover {

    transform: translateY(-6px);

    border-color: #d7a63a;

    box-shadow: 0 0 20px rgba(215, 166, 58, .20);

}

/*=========================
        TITLE
==========================*/

.card-title {


    color: #d7a63a;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;

    text-transform: uppercase;

    letter-spacing: .5px;

}

/*=========================
      SECTOR GRID
==========================*/

.sector-box {

    border: 1px solid rgba(215, 166, 58, .35);

    height: 125px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    transition: .35s;

}

.sector-box:hover {

    background: #111;

}

.sector-box i {
    font-size: 37px;
    line-height: 40px;
    color: #d7a63a;
    margin-bottom: 5px;
}

.sector-box h5 {

    color: #fff;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.5;

    margin: 0;

}


.feature-list1 {

    list-style: none;

    margin: 0;

    padding: 0;

}

.feature-list1 li {
    display: flex;
    align-items: top;
    gap: 5px;
    margin-bottom: 6px;
    color: #fff;
    line-height: 1.6;
}

.feature-list1 i {
    line-height: 20px;
    color: #d7a63a;
    font-size: 23px;
    margin-top: 2px;

}

.feature-list1 span {

    font-size: 12px;

}

/*=========================
      CHESS IMAGE
==========================*/

.chess-image {

    margin-top: 35px;

    text-align: center;

}

.chess-image img {

    max-width: 100%;

    height: auto;

}

/*=========================
      VALUE CARD
==========================*/

.value-item1 {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.value-icon1 {

    min-width: 40px;

    width: 40px;

    height: 40px;

    border: 1px solid #d7a63a;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

}

.value-icon1 i {

    color: #d7a63a;

    font-size: 25px;

}

.value-content h4 {

    color: #d7a63a;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 2px;

}

.value-content p {

    color: #d6d6d6;

    font-size: 12px;

    line-height: 1.5;

    margin: 0;

}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:991px) {

    .sector-card,
    .feature-card1,
    .value-card {

        margin-bottom: 25px;

    }

    .card-title {

        font-size: 24px;

    }

    .sector-box {

        height: 120px;

    }

    .sector-box i {

        font-size: 34px;

    }

}

@media(max-width:576px) {

    .nsv-section {

        padding: 50px 15px;

    }

    .card-title {

        font-size: 20px;

    }

    .value-item1 {

        flex-direction: column;
        align-items: center;
        text-align: center;

    }

    .value-icon1 {

        margin: auto;

    }

    .feature-list1 li {

        font-size: 15px;

    }

}

/*==============================
        KNOWLEDGE HUB
==============================*/

.knowledge-hub {
    background: #070707;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/*==============================
        HEADING
==============================*/

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.heading-line {
    width: 90px;
    height: 2px;
    background: #c89a33;
    position: relative;
}



.section-heading h2 {
    color: #c89a33;
    font-size: 25px;
    font-weight: 600;
    margin: 0;
    letter-spacing: .5px;
}

/*==============================
            CARD
==============================*/

.knowledge-card1 {

    background: #0b0b0b;

    border: 1px solid rgba(200, 154, 51, .55);

    border-radius: 18px;

    padding: 35px 20px;

    text-align: center;

    height: 100%;

    transition: .35s ease;

    position: relative;

    overflow: hidden;
}


/*==============================
            ICON
==============================*/

.knowledge-icon1 {

    margin-bottom: 8px;
    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 2px;
}

.knowledge-icon1 i {

    font-size: 42px;

    color: #c89a33;

    transition: .35s;
}

.knowledge-card1:hover .knowledge-icon1 i {

    color: #efc763;

    transform: scale(1.08);
}

/*==============================
            TITLE
==============================*/

.knowledge-card1 h4 {

    color: #ffffff;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.35;
}

/*==============================
        DESCRIPTION
==============================*/

.knowledge-card1 p {
    color: #d2d2d2;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0px;
    min-height: 80px;

}

/*==============================
        GOLD LINE
==============================*/

.card-line {

    width: 55px;

    height: 3px;

    background: #c89a33;

    display: block;

    margin: auto;

    transition: .35s;

}

.knowledge-card1:hover .card-line {

    width: 80px;

    background: #efc763;

}

/*====================================
        CARD BORDER EFFECT
====================================*/

.knowledge-card1:hover::before {
    inset: 8px;
    border-color: rgba(239, 199, 99, .45);
}

/*====================================
        ICON ANIMATION
====================================*/

.knowledge-card1:hover .knowledge-icon1 {
    transform: translateY(-5px);
    transition: .35s;
}

.knowledge-card1:hover h4 {
    color: #efc763;
}

.knowledge-card1:hover p {
    color: #ffffff;
}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1399px) {

    .knowledge-card1 {
        padding: 20px 3px;
    }

    .knowledge-icon1 i {
        font-size: 42px;
    }

    .knowledge-card1 h4 {
        font-size: 13px;
    }

    .knowledge-card1 p {
        font-size: 13px;
    }

}

/*==============================*/

@media(max-width:991px) {

    .knowledge-hub {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .heading-line {
        width: 60px;
    }

    .knowledge-card1 {
        margin-bottom: 10px;
    }

    .knowledge-icon1 {
        width: 70px;
        height: 70px;
    }

    .knowledge-icon1 i {
        font-size: 42px;
    }

    .knowledge-card1 h4 {
        font-size: 18px;
        min-height: auto;
    }

    .knowledge-card1 p {
        min-height: auto;
        font-size: 14px;
    }

}

/*==============================*/

@media(max-width:767px) {

    .section-heading {
        flex-direction: column;
        gap: 10px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .heading-line {
        width: 70px;
    }

    .knowledge-card1 {
        padding: 25px 18px;
    }

    .knowledge-icon1 i {
        font-size: 38px;
    }

    .knowledge-card1 h4 {
        font-size: 17px;
    }

    .knowledge-card1 p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/*==============================*/

@media(max-width:575px) {

    .knowledge-hub {
        padding: 50px 15px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .knowledge-card1 {
        padding: 20px 15px;
    }

    .knowledge-icon1 {
        width: 60px;
        height: 60px;
        margin: 0px auto;
    }

    .knowledge-icon1 i {
        font-size: 34px;
    }

    .knowledge-card1 h4 {
        font-size: 16px;
    }

    .knowledge-card1 p {
        font-size: 13px;
    }

    .card-line {
        width: 45px;
    }

}



/*========================================
            RESEARCH AREA
========================================*/

.research-area {
    background: #050505;
    padding: 20px 0;
    border-radius: 16px;
    overflow: hidden;
}

/*========================================
              HEADING
========================================*/

.research-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
}

.heading-line {
    width: 220px;
    height: 2px;
    background: #c7962a;
    position: relative;
}

.section-heading .heading-line:first-child::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #c7962a;
    transform: rotate(45deg);
}

/* Right Line */
.section-heading .heading-line:last-child::before {
    content: "";
    position: absolute;
    left: -5px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #c7962a;
    transform: rotate(45deg);
}

.research-heading h2 {
    color: #d8a63c;
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    letter-spacing: .5px;
}

/*========================================
              BOX
========================================*/

.research-box {

    text-align: center;

    border-right: 1px solid rgba(199, 150, 42, .35);

    padding: 15px 10px;

    height: 100%;

    transition: .35s;
    margin-right: -15px;

}

.research-box:hover {

    background: #111;

}

/*========================================
              ICON
========================================*/

.research-box i {

    font-size: 60px;

    color: #d8a63c;

    display: block;

    transition: .35s;

}

.research-box:hover i {

    transform: translateY(-5px);

    color: #f1c15a;

}

/*========================================
             TITLE
========================================*/

.research-box h5 {

    color: #fff;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.5;

    margin: 0;

}

.research-box h5 span {

    display: block;

}

/*========================================
           LAST BORDER
========================================*/

.border-0 {

    border-right: none !important;

}

/*========================================
           RESPONSIVE
========================================*/

@media(max-width:991px) {

    .research-heading h2 {

        font-size: 26px;

    }

    .heading-line {

        width: 90px;

    }

    .research-box {

        border-right: none;

        border-bottom: 1px solid rgba(199, 150, 42, .35);

        padding: 30px 10px;

    }

    .border-0 {

        border-bottom: none !important;

    }

    .research-box i {

        font-size: 46px;

    }

}

@media(max-width:576px) {

    .research-area {

        padding: 50px 15px;

    }


    .research-heading h2 {

        font-size: 22px;

        text-align: center;

    }

    .research-box {

        padding: 25px 10px;

    }

    .research-box i {

        font-size: 40px;

    }

    .research-box h5 {

        font-size: 16px;

    }

}

/*=========================================
        THOUGHT TIMELINE
=========================================*/

.timeline-section {
    background: #050505;
    padding: 80px 0;
    overflow: hidden;
}

/*=========================================
            HEADING
=========================================*/

/* Left Line Diamond */

.timeline-heading .heading-line:first-child::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #c9972c;
    transform: rotate(45deg);
}

/* Right Line Diamond */

.timeline-heading .heading-line:last-child::before {
    content: "";
    position: absolute;
    left: -5px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #c9972c;
    transform: rotate(45deg);
}

/*=========================================
            BOX
=========================================*/

.timeline-box {

    position: relative;

    text-align: center;

    padding: 0 18px;

}

/*=========================================
            CIRCLE
=========================================*/

.timeline-icon {

    width: 92px;
    height: 92px;

    border: 2px solid #c9972c;

    border-radius: 50%;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s;
}

.timeline-icon i {

    color: #c9972c;

    font-size: 46px;

    transition: .35s;
}

/*=========================================
        CONNECTOR
=========================================*/

.timeline-box::after {

    content: "";

    position: absolute;

    top: 46px;

    right: -25px;

    width: 55px;

    border-top: 2px dotted #c9972c;

}

.timeline-box::before {

    content: ">";

    position: absolute;

    top: 31px;
    right: -37px;

    color: #c9972c;

    font-size: 22px;

}

/* Last Item */

.last-box::after,
.last-box::before {

    display: none;

}

/*=========================================
            NUMBER
=========================================*/

.timeline-number {

    color: #d6a63a;

    font-size: 30px;

    font-weight: 700;

    line-height: 1;

    margin-bottom: 10px;

}

/*=========================================
            TITLE
=========================================*/

.timeline-box h4 {
    color: #d6a63a;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;

}

/*=========================================
            TEXT
=========================================*/

.timeline-box p {
    font-size: 14px;
    line-height: 1.5;
}

/*=========================================
            HOVER
=========================================*/

.timeline-box:hover .timeline-icon {

    border-color: #efc763;

    box-shadow: 0 0 18px rgba(239, 199, 99, .35);

    transform: translateY(-6px);

}

.timeline-box:hover .timeline-icon i {

    color: #efc763;

}

.timeline-box:hover h4 {

    color: #efc763;

}

/*=========================================
        PREMIUM GLOW
=========================================*/


/*=========================================
        ICON ANIMATION
=========================================*/

.timeline-box {
    transition: .35s;
}

.timeline-box:hover {
    transform: translateY(-8px);
}

.timeline-box:hover .timeline-number {
    color: #f4c55b;
}

.timeline-box:hover::after {
    border-color: #f4c55b;
}

.timeline-box:hover::before {
    color: #f4c55b;
}

/*=========================================
        TABLET
=========================================*/

@media (max-width:991px) {

    .timeline-heading {

        margin-bottom: 45px;
    }

    .timeline-heading h2 {

        font-size: 26px;
    }

    .heading-line {

        width: 80px;
    }

    .timeline-box {

        margin-bottom: 45px;
    }

    .timeline-box::before,
    .timeline-box::after {

        display: none;
    }

    .timeline-icon {

        width: 82px;
        height: 82px;
    }

    .timeline-icon i {

        font-size: 38px;
    }

    .timeline-number {

        font-size: 34px;
    }

    .timeline-box h4 {

        font-size: 18px;
    }

    .timeline-box p {

        font-size: 14px;
        line-height: 1.7;
    }

}

/*=========================================
        MOBILE
=========================================*/

@media (max-width:576px) {

    .timeline-section {

        padding: 60px 15px;
    }

    .timeline-heading {

        flex-direction: column;
        gap: 12px;
    }

    .timeline-heading h2 {

        font-size: 22px;
        text-align: center;
    }

    .heading-line {

        width: 70px;
    }

    .timeline-box {

        margin-bottom: 40px;
    }

    .timeline-icon {

        width: 75px;
        height: 75px;
    }

    .timeline-icon i {

        font-size: 34px;
    }

    .timeline-number {

        font-size: 28px;
    }

    .timeline-box h4 {

        font-size: 17px;
    }

    .timeline-box p {

        font-size: 13px;
        line-height: 1.7;
    }

}

/*=========================================
        LARGE DESKTOP
=========================================*/

@media (min-width:1400px) {

    .timeline-box {

        padding: 0 22px;
    }

    .timeline-box p {

        font-size: 16px;
    }

    .timeline-heading h2 {

        font-size: 38px;
    }

    .heading-line {

        width: 280px;
    }

}


.event-card {

    background: #0a0a0a;

    border: 1px solid rgba(201, 152, 45, .45);

    border-radius: 12px;

    overflow: hidden;

    height: 100%;

    transition: .35s;

}

.event-card:hover {

    transform: translateY(-8px);

    border-color: #e0b247;

    box-shadow: 0 0 25px rgba(224, 178, 71, .18);

}

/*==================================
            IMAGE
==================================*/

.event-img {

    overflow: hidden;

    height: 190px;

}

.event-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.event-card:hover img {

    transform: scale(1.08);

}

/*==================================
            CONTENT
==================================*/

.event-content {
    padding: 4px 8px 10px;
}

.event-content h3 {

    color: #d8a63c;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 2px;

    text-transform: uppercase;

}

.event-content p {

    color: #d4d4d4;

    font-size: 11px;

    line-height: 1.5;

    margin-bottom: 22px;
    padding-bottom: 5px;

}

/*==================================
            META
==================================*/

.event-meta {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 10px;

    border-top: 1px solid rgba(201, 152, 45, .25);

    padding-top: 5px;

}

.event-meta span {

    color: #d8d8d8;

    font-size: 14px;

    display: flex;

    align-items: center;

    gap: 6px;

}

.event-meta i {

    color: #c9982d;

    font-size: 14px;

}

/*====================================
        PREMIUM EFFECT
====================================*/

.event-card {
    position: relative;
}

.event-img {
    position: relative;
}

.event-img::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgb(0 0 0 / 93%), rgba(0, 0, 0, 0));

    transition: .35s;

}

.event-card:hover .event-img::after {

    background: linear-gradient(to top,
            rgba(0, 0, 0, .30),
            rgba(0, 0, 0, 0));

}

/*====================================
        CONTENT HOVER
====================================*/

.event-card:hover h3 {

    color: #f1c15a;

}

.event-card:hover p {

    color: #ffffff;

}

.event-card:hover .event-meta {

    border-color: #c9982d;

}

.event-card:hover .event-meta span {

    color: #fff;

}

.event-card:hover .event-meta i {

    color: #f1c15a;

}

/*====================================
        TABLET
====================================*/

@media(max-width:991px) {

    .featured-events {

        padding: 60px 0;

    }

    .clshome .event-card {
        height: auto;
        border-radius: 6px;
    }

    .events-heading {

        margin-bottom: 40px;

    }

    .events-heading h2 {

        font-size: 26px;

    }

    .events-heading .heading-line {

        width: 80px;

    }

    .event-card {

        margin-bottom: 15px;

    }

    .event-img {

        height: 220px;

    }

    .event-content h3 {

        font-size: 22px;

    }

    .event-content p {

        min-height: auto;

        font-size: 14px;

    }

}

/*====================================
        MOBILE
====================================*/

@media(max-width:576px) {

    .featured-events {

        padding: 50px 15px;

    }

    .events-heading {

        flex-direction: column;

        gap: 12px;

    }

    .events-heading h2 {

        font-size: 22px;

        text-align: center;

    }

    .events-heading .heading-line {

        width: 70px;

    }

    .event-img {

        height: 200px;

    }

    .event-content {

        padding: 18px;

    }

    .event-content h3 {

        font-size: 18px;

    }

    .event-content p {

        font-size: 13px;

        line-height: 1.7;

    }

    .event-meta {

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

    }

    .event-meta span {

        font-size: 13px;

    }

}

/*====================================
        LARGE DESKTOP
====================================*/

@media(min-width:1400px) {

    .event-img {

        height: 210px;

    }

    .event-content h3 {
        font-size: 16px;
        line-height: 25px;
    }

    .event-content p {
        font-size: 11px;
        line-height: 14px;
        margin-top: 8px;

    }

}

/*=================================
        LATEST PUBLICATION
=================================*/

.latest-publication {
    background: #050505;
    padding: 30px 0 0;
}

.publication-box {
    background: #090909;
    border: 1px solid rgba(201, 151, 44, .45);
    border-radius: 16px;
    padding: 21px 13px;
    height: 100%;
}

/*==============================
        HEADING
==============================*/

.publication-heading {

    color: #c9972c;

    text-align: center;

    font-size: 25px;

    font-weight: 700;

    margin-bottom: 20px;

    text-transform: uppercase;

}

/*==============================
        CARD
==============================*/

.publication-card {

    background: #0d0d0d;

    border: 1px solid rgba(201, 151, 44, .35);

    border-radius: 14px;

    overflow: hidden;

    position: relative;

    height: 100%;

    transition: .35s;

}

.publication-card:hover {

    transform: translateY(-8px);

    border-color: #e3b64e;

    box-shadow: 0 0 18px rgba(201, 151, 44, .25);

}

/*==============================
        DATE
==============================*/

.publication-date {

    position: absolute;

    top: 12px;

    left: 12px;

    background: #c9972c;

    color: #111;

    font-size: 11px;

    font-weight: 700;

    padding: 5px 10px;

    border-radius: 4px;

    z-index: 2;

}

.publication-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: .4s;
}

.publication-card:hover img {

    transform: scale(1.06);

}

.publication-content {
    padding: 10px 10px 5px;
}

.publication-content h4 {
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 4px;
}
.publication-content h4 a{
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}
.publication-content h4:hover {
    color: #f1c45a;
}
.publication-content p {
    color: #d5d5d5;
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 0px;
}

.publication-content a {
    color: #c9972c;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.publication-content a i {

    font-size: 18px;

}

.publication-content a:hover {

    color: #f1c45a;

}

/*==============================
        RIGHT IMAGE
==============================*/

.latest-publication img {

    width: 100%;

    border-radius: 16px;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px) {

    .publication-heading {

        font-size: 26px;

    }

    .publication-card {

        margin-bottom: 25px;

    }

    .publication-card img {

        height: 220px;

    }

}

@media(max-width:767px) {

    .latest-publication {

        padding: 0px 0;

    }

    .timeline-box {
        padding: 0 0px;
    }

    .publication-box {
        margin-bottom: 20px;
    }

    .publication-heading {

        font-size: 22px;

    }

    .publication-content h4 {

        font-size: 18px;

    }

    .publication-content p {

        font-size: 14px;

    }

}

.contact-section {
    background: #000;
}

.contact-box {
    background: #050505;
    border: 1px solid rgba(226, 165, 62, 0.6);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(226, 165, 62, 0.08);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.section-title span {
    width: 60px;
    height: 2px;
    background: #d6a34a;
}

.section-title h3 {
    color: #d6a34a;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 0px;
}

.info-item i {
    width: 40px;
    height: 40px;
    border: 2px solid #d6a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6a34a;
    font-size: 15px;
}

.info-item span {
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

.paper-plane-area {
    text-align: center;
}

.paper-plane-area img {
    max-width: 180px;
}

.paper-plane-area p {
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
}

.office-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.office-text {
    display: flex;
    gap: 20px;
    flex: 1;
}

.office-icon i {
    color: #d6a34a;
    font-size: 30px;
    margin-top: 4px;
}

.office-text p {
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.building-img img {
    max-width: 260px;
    width: 100%;
}

@media(max-width:991px) {

    .contact-content,
    .office-content {
        flex-direction: column;
        text-align: center;
    }

    .office-text {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        justify-content: center;
    }

    .section-title h3 {
        font-size: 24px;
    }

    .info-item span,
    .office-text p {
        font-size: 16px;
    }
}

.hero-section.contact-page {

    min-height: 450px;

    display: flex;

    align-items: center;

    position: relative;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .96) 0%,
            rgba(0, 0, 0, .78) 42%,
            rgba(0, 0, 0, .25) 72%),
        url("../images/contact-main-bg.png");

    background-size: cover;

    background-position: center;

    color: #fff;

}

.hero-section.physical-page {

    min-height: 450px;

    display: flex;

    align-items: center;

    position: relative;

    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .78) 42%, rgb(0 0 0 / 58%) 72%), url(../images/physical-bg.jpg);

    background-size: cover;

    background-position: center;

    color: #fff;

}
.hero-section.digital-page {

    min-height: 450px;

    display: flex;

    align-items: center;

    position: relative;

    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .78) 42%, rgb(0 0 0 / 0%) 72%), url(../images/digital-infr-bg.png);

    background-size: cover;

    background-position: center;

    color: #fff;

}


.hero-section.strategic-page {

    min-height: 450px;

    display: flex;

    align-items: center;

    position: relative;

    background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 0 0 / 14%) 42%, rgba(0, 0, 0, .25) 72%), url(../images/strategic-partnership.jpg);

    background-size: cover;

    background-position: center;

    color: #fff;

}

.hero-content {

    width: 58%;

}

.small-label {

    color: #d7a339;

    font-size: 22px;

    margin-bottom: 20px;

}

.hero-content h1 {

    font-weight: 600;

    margin-bottom: 13px;

    line-height: 1;

}

.hero-content h1 span {

    color: #d7a339;

}

.hero-subtitle {

    color: #d7a339;

    font-size: 26px;

    margin-bottom: 13px;

}

.hero-content>p {
    max-width: 620px;
    font-size: 19px;
    line-height: 1.6;
    color: #ececec;
}

.contact-service-box {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 50px;

    border: 1px solid rgba(215, 163, 57, .45);

    border-radius: 14px;

    overflow: hidden;

    background: rgba(0, 0, 0, .45);

}

.service-item {

    padding: 4px 11px 18px;

    text-align: center;

    border-right: 1px solid rgba(215, 163, 57, .25);

}

.service-item:last-child {

    border-right: none;

}

.service-item i {

    font-size: 40px;

    color: #d7a339;

    margin-bottom: 0px;

    display: block;

}

.service-item h5 {

    color: #d7a339;

    font-size: 24px;

    margin-bottom: 12px;

    text-transform: uppercase;

}

.service-item p {

    color: #eee;

    font-size: 18px;

    margin: 0;

    line-height: 1.6;

}

.hero-location {

    position: absolute;

    bottom: 60px;

    right: 80px;

    display: flex;

    align-items: center;

    gap: 10px;

}

.hero-location i {

    font-size: 50px;

    color: #d7a339;

}

.hero-location p {

    font-size: 20px;

    line-height: 1.5;

    margin: 0;

}

/*=========================
      LARGE SCREEN
=========================*/

@media (max-width:1400px) {
    .paper-plane-area img {
        max-width: 95px;
    }

    .contact-content {
        gap: 14px;
    }

    .paper-plane-area p {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 19px;
        letter-spacing: 1px;
    }

    .hero-content>p {
        font-size: 14px;
        line-height: 1.6;

    }

    .service-item h5 {
        font-size: 16px;
    }

    .service-item p {
        font-size: 14px;
        line-height: 1.4;
    }

    .hero-location p {
        font-size: 18px;
    }

}

/*=========================
            LAPTOP
    =========================*/

@media (max-width:1199px) {

    .hero-section.contact-page {
        min-height: 470px;
    }

    .hero-content {
        width: 65%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-content>p {
        font-size: 14px;
    }

    .service-item {
        padding: 22px 15px;
    }

    .service-item i {
        font-size: 42px;
    }

    .service-item h5 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 15px;
    }

    .hero-location {
        right: 30px;
        bottom: 22%;
    }

    .hero-location i {
        font-size: 32px;
    }

    .hero-location p {
        font-size: 17px;
    }

}

/*=========================
            TABLET
    =========================*/

@media (max-width:991px) {

    .hero-section.contact-page {

        padding: 50px 0;

        min-height: auto;

    }

    .hero-content {

        width: 100%;

    }

    .hero-content h1 {

        font-size: 35px;

    }

    .hero-subtitle {

        font-size: 19px;

    }

    .hero-content>p {

        max-width: 100%;

    }

    .contact-service-box {

        grid-template-columns: repeat(2, 1fr);

    }

    .service-item:nth-child(2) {

        border-right: none;

    }

    .service-item:nth-child(1),
    .service-item:nth-child(2) {

        border-bottom: 1px solid rgba(215, 163, 57, .25);

    }

    .hero-location {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 40px;

    }

}

/*=========================
            MOBILE
    =========================*/

@media (max-width:767px) {

    .hero-section.contact-page {

        background-position: 70% center;

        padding: 70px 0;

    }

    .small-label {

        font-size: 16px;

    }

    .hero-content h1 {

        font-size: 28px;

    }

    .hero-subtitle {

        font-size: 19px;

    }

    .hero-content>p {

        font-size: 14px;

        line-height: 1.5;

    }
   
    .contact-service-box {
        /* display: none;
        grid-template-columns: 1fr; */

    }
    .contact-service-box {
        display: grid;
        margin-top: 0px;
    }
    .service-item {

        border-right: none;

        border-bottom: 1px solid rgba(215, 163, 57, .25);

    }

    .service-item:last-child {

        border-bottom: none;

    }

    .service-item i {

        font-size: 40px;

    }

    .service-item h5 {

        font-size: 17px;

    }

    .service-item p {

        font-size: 14px;

    }

    .hero-location {

        gap: 10px;

    }

    .hero-location i {

        font-size: 30px;

    }

    .hero-location p {

        font-size: 15px;

    }

}

/*=================================
        WHY CONNECT
==================================*/

.why-connect {
    background: #050505;
    padding: 15px 0 40px;
}

.why-connect-wrapper {

    background: #090909;

    border: 1px solid rgba(206, 155, 45, .45);

    border-radius: 18px;

    overflow: hidden;

    position: relative;

}

/*=============================
        HEADING
=============================*/

.why-heading {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    padding: 22px 20px;

}

.why-heading h2 {

    color: #d6a13a;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;

    letter-spacing: .5px;

}

.heading-line {

    width: 130px;

    height: 1px;

    background: #7f6020;

    position: relative;

}

.heading-line::after {

    content: "";

    position: absolute;

    right: -6px;

    top: -3px;

    width: 10px;

    height: 10px;

    background: #d6a13a;

    transform: rotate(45deg);

}

/* Left Side Diamond */

.heading-line:first-child::after {

    right: -6px;

}

/* Right Side Diamond */

.heading-line:last-child::after {

    left: -6px;

}

/*=============================
        BOX
=============================*/

.why-box {

    text-align: center;

    padding: 15px 10px 25px;


    border-right: 1px solid rgba(206, 155, 45, .35);

    height: 100%;

    transition: .35s;

}

.why-box:hover {

    background: #111;

}

.why-box i {

    font-size: 50px;

    color: #d6a13a;

    margin-bottom: 0px;

    display: block;

}

.why-box h4 {
    color: #d6a13a;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.why-box p {
    color: #ececec;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.border-0 {

    border-right: none !important;

}

/*==================================
        WHY CONNECT
        PART 3
===================================*/

/* Hover Effect */

.why-box {
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

.why-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(214, 161, 58, .08));
    opacity: 0;
    transition: .4s;
    z-index: 0;
}

.why-box>* {
    position: relative;
    z-index: 1;
}

.why-box:hover {
    background: #111;
    transform: translateY(-8px);
}

.why-box:hover::before {
    opacity: 1;
}

.why-box i {
    transition: .4s;
}

.why-box:hover i {
    transform: scale(1.15);
    color: #f5c04f;
}

.why-box h4 {
    transition: .4s;
}

.why-box:hover h4 {
    color: #ffd26d;
}

.why-box p {
    transition: .4s;
}

.why-box:hover p {
    color: #ffffff;
}

/*==================================
        TABLET
===================================*/

@media(max-width:991px) {

    .why-heading h2 {
        font-size: 28px;
    }

    .heading-line {
        width: 70px;
    }

    .why-box {
        border-right: none;
        border-bottom: 1px solid rgba(206, 155, 45, .35);
        padding: 35px 20px;
    }

    .row>.col-md-6:nth-last-child(-n+2) .why-box {
        border-bottom: none;
    }

    .why-box i {
        font-size: 56px;
    }

    .why-box h4 {
        font-size: 22px;
    }

    .why-box p {
        font-size: 16px;
    }

}

/*==================================
            MOBILE
===================================*/

@media(max-width:767px) {

    .why-connect {
        padding: 50px 0;
    }

    .why-heading {
        gap: 10px;
    }

    .heading-line {
        display: none;
    }

    .why-heading h2 {
        font-size: 22px;
    }

    .why-box {
        border-right: none;
        border-bottom: 1px solid rgba(206, 155, 45, .30);
        padding: 30px 18px;
    }

    .why-box:last-child {
        border-bottom: none;
    }

    .why-box i {
        font-size: 46px;
    }

    .why-box h4 {
        font-size: 20px;
    }

    .why-box p {
        font-size: 15px;
        line-height: 1.7;
    }

}

/*==================================
        SMALL MOBILE
===================================*/

@media(max-width:480px) {

    .why-heading h2 {
        font-size: 18px;
    }

    .why-box {
        padding: 25px 15px;
    }

    .why-box i {
        font-size: 40px;
    }

    .why-box h4 {
        font-size: 18px;
    }

    .why-box p {
        font-size: 14px;
    }

}


.contact-box,
.location-box {
    border: 1px solid #9d6b18;
    border-radius: 12px;
    padding: 18px;
    background: #090909;
    height: 100%;
}

/*==========================
Heading
===========================*/
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.section-title span {
    width: 55px;
    height: 2px;
    background: #b8872d;
}

.section-title h3 {
    color: #dba34a;
    font-size: 30px;
    font-weight: 600;
    margin: 0 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*==========================
Form
===========================*/
.form-group {
    margin-bottom: 15px;
}

.form-control {
    background: #090909;
    border: 1px solid #9d6b18;
    color: #fff;
    border-radius: 7px;
    height:40px;
    box-shadow: none;
    padding: 7px 16px;
}

.form-control::placeholder {
    color: #d7d7d7;
}

.form-control:focus {
    background: #090909;
    color: #fff;
    border-color: #dba34a;
    box-shadow: none;
}

textarea.form-control {
    resize: none;
    height: 120px;
    padding-top: 15px;
}

select.form-control {
    appearance: none;
    background: #090909 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23dca548' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='%23dca548' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 18px center;
}

/*==========================
Button
===========================*/
.send-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 7px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    background: linear-gradient(to right, #b97a22, #efc164, #b97a22);
    transition: .4s;
}

.send-btn i {
    float: right;
    margin-top: 3px;
    font-size: 18px;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(221, 170, 76, .35);
}

/*==========================
Map
===========================*/
.map-box {
    position: relative;
    overflow: hidden;
    border: 1px solid #9d6b18;
    border-radius: 10px;
}

.map-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/*==========================
Map Label
===========================*/
.map-label {
    position: absolute;
    top: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.map-label i {
    font-size: 48px;
    color: #dba34a;
}

.map-label h4 {
    margin: 0;
    color: #f0c164;
    font-size: 22px;
    font-weight: 700;
}

.map-label p {
    margin: 2px 0 0;
    color: #fff;
    font-size: 15px;
}

/*==========================
Bottom Info
===========================*/
.location-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #9d6b18;
    border-top: none;
}

.info-item {
    padding: 8px 8px 8px;
    display: flex;
    gap: 8px;
    border-right: 1px solid #9d6b18;
}

.info-item:last-child {
    border-right: none;
}

.info-item i {
    color: #dba34a;
    font-size: 26px;
    margin-top: 5px;
}

.info-item h5 {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0px;

}

.info-item p {
    margin: 0;
    color: #dba34a;
    font-weight: 600;
    font-size: 12px;
}

/*==========================
Responsive
===========================*/
@media(max-width:991px) {

    .contact-box {
        margin-bottom: 30px;
    }

    .location-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-item:nth-child(2) {
        border-right: none;
    }

    .info-item:nth-child(1),
    .info-item:nth-child(2) {
        border-bottom: 1px solid #9d6b18;
    }

}

@media(max-width:767px) {

    .section-title h3 {
        font-size: 22px;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-right: none;
        border-bottom: 1px solid #9d6b18;
    }

    .info-item:last-child {
        border-bottom: none;
    }

    .map-box img {
        height: 250px;
    }

    .map-label {
        top: 25px;
        right: 20px;
    }

    .map-label i {
        font-size: 34px;
    }

    .map-label h4 {
        font-size: 18px;
    }

    .send-btn {
        font-size: 17px;
    }

    .info-item {
        padding: 8px 8px 18px;
        display: flex;
        gap: 8px;
        justify-content: flex-start;
    }

    .partner-globe {
        width: auto !important;
        flex-shrink: 0;
    }

    .footer-cta-btn {
        margin: 0px auto 15px;
        display: flex;
        justify-content: center;
    }

    .btnfoot {
        padding: 10px 65px;
        font-size: 13px;
        margin-left: 60px;
    }

    .investor-grid1 {
        display: grid;
        gap: 15px;
        padding: 10px 5px 0px;
    }
    .investor-grid1 .investor-card i {
        font-size: 45px;
    }
}

.advisor-section {
    background: #090909;
    padding: 39px 0 0px;
    color: #fff;
}

.advisor-img {
    border: 1px solid #b8872d;
    border-radius: 12px;
    overflow: hidden;
}

.advisor-img img {
    width: 100%;
    display: block;
}

.advisor-content {
    padding-left: 20px;
}

.advisor-tag {
    display: inline-block;
    color: #d4a54b;
    border: 1px solid #b8872d;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.advisor-content h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.advisor-content h5 {
    color: #d4a54b;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.advisor-content h6 {
    color: #cfcfcf;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.advisor-line {
    width: 90px;
    height: 3px;
    background: #b8872d;
    margin-bottom: 20px;
}

.advisor-skill {
    color: #d4a54b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.advisor-content p {
    color: #c7c7c7;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: justify;
}

.hero-content h6 {
    font-size: 19px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

@media (max-width:1400px) {
    .info-item i {
        color: #dba34a;
        font-size: 20px;
        margin-top: 5px;
    }

    .info-item span {
        color: #fff;
        font-size: 15px;
        line-height: 1.5;
    }

    .building-img img {
        max-width: 185px;
        width: 100%;
    }

    .office-text p {
        color: #fff;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .footer-cta-btn {
        background: var(--gold);
        color: #111;
        padding: 10px 12px;
        font-size: 11px;
    }

}

@media(max-width:991px) {

    .advisor-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .advisor-content h2 {
        font-size: 30px;
    }

    .advisor-content h5 {
        font-size: 20px;
    }

    .advisor-content h6 {
        font-size: 16px;
    }

}

@media(max-width:767px) {

    .advisor-section {
        padding: 0px 0;
    }

    .advisor-content h2 {
        font-size: 26px;
    }

    .advisor-content p {
        font-size: 15px;
        line-height: 28px;
    }

    .advisor-skill {
        font-size: 16px;
    }

    .leader-content .title-line {
        display: none;
    }

    .capital-journey {
        background: #050505;
        padding: 0px 0;
        margin: 0px 10px;
    }
}

.hero-content h5 {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.who-content h2 {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 10px;
}

@media(max-width:991px) {

    .who-content {
        margin-top: 40px;
    }

    .who-content h2 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .who-content h2 {
        font-size: 25px;
    }

}

.partner-box {
    border-radius: 10px;
}


.read-more-btn {
    display: inline-block;
    margin-top: 5px;
    color: #c89b3c;
    font-weight: 500;
    font-size: 15px;
    /* text-transform: uppercase; */
    text-decoration: none;
    padding-left: 0px;
}

.modal {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

/* Dialog */
.modal-dialog {
    max-width: 900px;
    margin: 40px auto;
}

/* Modal Box */
.modal-content {
    background: #fff;
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

/* Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Close Button */
.close {
    font-size: 34px;
    color: #000 !important;
    opacity: 1;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #c89b3c !important;
}

/* Body */
.modal-body {
    padding: 20px;
}

.modal-body h5 {
    color: #c89b3c;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-body p {
    color: #1b1b1b;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 3px;
}

.modal-body h4 {
    color: #1a1a1a;
    margin: 25px 0 15px;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body ul li {
    margin-bottom: 0px;
    color: #121212;
    line-height: 1.7;
}

.highlight-section {
    background: #070707;
    border-top: 1px solid rgba(214, 167, 63, .18);
    border-bottom: 1px solid rgba(214, 167, 63, .18);
}

.highlight-wrapper {
    border: 1px solid rgba(214, 167, 63, .18);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 22px;
    height: 100%;
    border-right: 1px solid rgba(214, 167, 63, .18);
    transition: .35s;
}

.highlight-item:hover {
    background: rgba(214, 167, 63, .04);
}

.icon-circle {
    width: 72px;
    height: 72px;
    border: 2px solid #d8a73d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.icon-circle i {
    color: #d8a73d;
    font-size: 34px;
}

.highlight-content h5 {
    color: #d8a73d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-content p {
    color: #d0d0d0;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

@media(max-width:991px) {

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid rgba(214, 167, 63, .18);
    }

}

@media(max-width:576px) {

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .highlight-content h5 {
        font-size: 18px;
    }

    .highlight-content p {
        font-size: 14px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }

    .icon-circle i {
        font-size: 30px;
    }

}


.process-section {
    background: #050505;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Section Heading */

.section-title span {
    color: #d8a73d;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin: 12px 0;
}

.section-title p {
    color: #bfbfbf;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-size: 16px;
}

/* Equal Width 5 Columns */

@media(min-width:1200px) {
    .col-xl-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Card */

.process-strategic-card {
    background: #0b0b0b;
    border: 1px solid rgba(214, 167, 63, .25);
    border-radius: 12px;
    padding: 25px 16px;
    position: relative;
    height: 100%;
    transition: .35s;
    overflow: visible;
}

.process-strategic-card:hover {
    transform: translateY(-8px);
    border-color: #d8a73d;
    box-shadow: 0 12px 35px rgba(214, 167, 63, .12);
}

/* Step Number */

.step-number {
    color: #d8a73d;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

/* Icon */

.process-strategic-icon {
    width: 75px;
    height: 75px;
    border: 2px solid rgba(214, 167, 63, .45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: .35s;
}

.process-strategic-icon i {
    font-size: 38px;
    color: #d8a73d;
    transition: .35s;
}

.process-strategic-card h4 {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 10px;
}

.process-strategic-card p {
    color: #c8c8c8;
    text-align: center;
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 15px;
}

/* List */

.process-strategic-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-strategic-card ul li {
    color: #d7d7d7;
    font-size: 13px;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.process-strategic-card ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d8a73d;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Arrow */

.process-strategic-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d8a73d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.process-strategic-arrow i {
    color: #111;
    font-size: 20px;
}

.last-card .process-strategic-arrow {
    display: none;
}

/* Hover */

.process-strategic-card:hover .process-icon {
    background: #d8a73d;
    border-color: #d8a73d;
}

.process-strategic-card:hover .process-icon i {
    color: #111;
}

/* Tablet */

@media(max-width:1199px) {

    .process-strategic-arrow {
        display: none;
    }

    .process-strategic-card h4 {
        font-size: 22px;
    }

}

/* Mobile */

@media(max-width:991px) {

    .process-section {
        padding: 60px 0;
    }

    .process-strategic-card {
        margin-bottom: 20px;
    }

    .process-strategic-card h4 {
        min-height: auto;
    }

}

/* Small Mobile */

@media(max-width:576px) {
    .process-strategic-card {
        padding: 22px;
    }

    .step-number {
        font-size: 38px;
    }

    .process-strategic-icon {
        width: 70px;
        height: 70px;
    }

    .process-strategic-icon i {
        font-size: 34px;
    }

    .process-strategic-card h4 {
        font-size: 20px;
    }

    .process-strategic-card p {
        font-size: 14px;
    }

    .process-strategic-card ul li {
        font-size: 14px;
    }

}


.advisory-section {
    background: #070707;
}

.info-card {
    background: #101010;
    border: 1px solid #8f6b2f;
    border-radius: 12px;
    padding: 35px 20px 20px;
    position: relative;
    overflow: hidden;
}

/* Left Card */

.approach-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.approach-item {
    width: 18%;
    text-align: center;
}

.icon-box1 {
    width: 70px;
    height: 70px;
    border: 1px solid #c89b3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 10px;
    transition: .4s;
}

.icon-box1 i {
    font-size: 38px;
    color: #d4a340;
}

.icon-box1:hover {
    background: #d4a340;
}

.icon-box1:hover i {
    color: #101010;
}

.approach-item h4 {
    color: #d4a340;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.approach-item p {
    color: #ddd;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
}

.connector {
    width: 45px;
    border-top: 2px dashed #c89b3c;
    margin-top: 42px;
}

/* Right Card */

.impact-card {
    background:
        url(../images/who-we-are.png) center bottom no-repeat;
    background-size: 240px;
}

.impact-list {
    margin-top: 10px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.impact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #c89b3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.impact-icon i {
    font-size: 20px;
    color: #d4a340;
}

.impact-item p {
    color: #f5f5f5;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Hover */

.impact-item:hover .impact-icon {
    background: #d4a340;
    transition: .4s;
}

.impact-item:hover .impact-icon i {
    color: #101010;
}

/* Responsive */

@media (max-width:991px) {

    .info-card {
        padding: 25px;
    }

    .approach-wrapper {
        flex-wrap: wrap;
        gap: 25px;
    }

    .approach-item {
        width: 100%;
    }

    .connector {
        display: none;
    }

    .impact-card {
        margin-top: 20px;
        background-size: 170px;
    }

    .impact-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .impact-item p {
        font-size: 15px;
    }

}

/*  */
/*====================================
    INDUSTRY SECTION
====================================*/

.industry-section {
    background: #050505;
    padding: 20px 0;
    position: relative;
}

.industry-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.industry-heading .line {
    flex: 1;
    height: 1px;
    background: rgba(214, 167, 63, .35);
    max-width: 300px;
}

.industry-heading h2 {
    color: #d8a73d;
    font-size: 34px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.industry-heading h2 i {
    color: #d8a73d;
    font-size: 18px;
}

/*====================================
    BOX
====================================*/

.industry-box {
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid rgba(214, 167, 63, .18);
    transition: .35s;
    height: 100%;
}

.industry-box:hover {
    background: rgba(214, 167, 63, .04);
}

/*====================================
    ICON
====================================*/

.industry-box i {
    font-size: 50px;
    color: #d8a73d;
    margin-bottom: 8px;
    display: block;
    transition: .35s;
}

.industry-box:hover i {
    transform: translateY(-6px);
    color: #f1c55d;
}

/*====================================
    TITLE
====================================*/

.industry-box h6 {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/*====================================
    LAST BOX
====================================*/

.border-end-0 {
    border-right: none !important;
}

/*====================================
    TABLET
====================================*/

@media(max-width:991px) {

    .industry-heading {
        flex-direction: column;
        gap: 15px;
    }

    .industry-heading .line {
        width: 100%;
        max-width: 100%;
    }

    .industry-heading h2 {
        font-size: 26px;
        text-align: center;
    }

    .industry-box {
        border-right: none;
        border-bottom: 1px solid rgba(214, 167, 63, .15);
    }

}

/*====================================
    MOBILE
====================================*/

@media(max-width:576px) {

    .industry-section {
        padding: 50px 0;
    }

    .industry-heading h2 {
        font-size: 20px;
        line-height: 1.5;
    }

    .industry-box {
        padding: 25px 10px;
    }

    .industry-box i {
        font-size: 42px;
    }

    .industry-box h6 {
        font-size: 15px;
    }

}

/*  */
.engagement-section {
    background: #070707;
}


.engagement-card {
    background: #101010;
    border: 1px solid rgba(200, 155, 60, .35);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    transition: .35s;
}

.engagement-card:hover {
    border-color: #d4a340;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 163, 64, .15);
}

.engagement-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212, 163, 64, .15);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.engagement-icon i {
    font-size: 42px;
    color: #d4a340;
}

.engagement-content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 3px;
    font-weight: 600;
}

.engagement-content p {
    color: #d5d5d5;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

@media(max-width:991px) {
    .industry-section .section-heading h2 {
        font-size: 20px;
    }

    .section-heading {
        flex-direction: column;
        gap: 12px;
    }

    .heading-line {
        width: 120px;
    }

    .engagement-card {
        padding: 20px;
    }

    .engagement-content h4 {
        font-size: 20px;
    }

    .engagement-icon {
        width: 60px;
        height: 60px;
    }

    .engagement-icon i {
        font-size: 34px;
    }

}


.philosophy-box {
    text-align: center;
    padding: 10px 8px;
    height: 100%;
    border-right: 1px solid rgba(214, 167, 63, .15);
    transition: .35s;
}

.philosophy-box:hover {
    background: rgba(214, 167, 63, .04);
}

.philosophy-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border: 2px solid rgba(214, 167, 63, .55);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .35s;
}

.philosophy-icon i {
    color: #d8a73d;
    font-size: 42px;
    transition: .35s;
}

.philosophy-box:hover .philosophy-icon {
    background: #d8a73d;
    border-color: #d8a73d;
}

.philosophy-box:hover .philosophy-icon i {
    color: #111;
}

/*=========================
    TEXT
==========================*/

.philosophy-box h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.philosophy-box p {
    color: #c9c9c9;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/*=========================
    LAST BOX
==========================*/

.border-end-0 {
    border-right: none !important;
}

/*=========================
    TABLET
==========================*/

@media(max-width:991px) {

    .philosophy-heading h2 {
        font-size: 28px;
        white-space: normal;
        text-align: center;
    }

    .philosophy-box {
        border-right: none;
        border-bottom: 1px solid rgba(214, 167, 63, .15);
        padding: 35px 20px;
    }

}

@media(max-width:576px) {

    .philosophy-icon {
        width: 70px;
        height: 70px;
    }

    .philosophy-icon i {
        font-size: 34px;
    }

    .philosophy-box h5 {
        font-size: 20px;
    }

    .philosophy-box p {
        font-size: 14px;
        line-height: 1.7;
    }

}

.partner-card {
    height: 100%;
    border: 1px solid #8f6b2f;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: .4s;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(212, 163, 64, .2);
}

/* .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(7, 7, 7, .55), rgba(7, 7, 7, .92));
} */

.partner-content1 {
    position: relative;
    z-index: 2;
    padding: 25px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.number {
    color: #d4a340;
    font-size: 28px;
    font-weight: 700;
    margin-left: 0px;
}

.partner-content1 h3 {
    text-align: left;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: 10px;
}

.partner-content1 ul {
    padding-left: 18px;
    color: #ddd;
    flex: 1;
}

.partner-content1 ul li {
    margin-bottom: 0px;
    line-height: 1.5;
    text-align: left;
    font-size: 14px;
}

.partner-content1 a {
    color: #d4a340;
    font-weight: 600;
    text-decoration: none;
    text-align: left;
}

.partner-content1 a i {
    margin-left: 5px;
    color: #d99b32;
    font-size: 21px;
    display: inline;
}

.top-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.icon {
    color: #d4a340;
    font-size: 54px;
}

@media(max-width:991px) {

    .partner-card {
        height: auto;
    }

    .partner-content1 h3 {
        font-size: 28px;
    }

    .icon {
        font-size: 42px;
    }

}

.ecosystem-wrapper {
    border: 1px solid rgba(214, 167, 63, .35);
    border-radius: 12px;
    padding: 40px 30px 30px;
    position: relative;
    overflow: hidden;
    background: #080808;
}

/* Gold Glow */

.ecosystem-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top,
            rgba(214, 167, 63, .08),
            transparent 65%);
    pointer-events: none;
}

.ecosystem-row1 {
    position: relative;
}

/* Dotted Connector Line */

.ecosystem-row1::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 42px;
    border-top: 3px dotted rgba(214, 167, 63, .7);
    z-index: 0;
}

/*=========================================
            ITEM
=========================================*/

.ecosystem-item {
    position: relative;
    text-align: center;
    padding: 0 15px;
    z-index: 2;
}

/*=========================================
            ICON
=========================================*/

.ecosystem-icon {
    width: 90px;
    height: 90px;
    border: 2px solid #d8a73d;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080808;
    transition: .35s;
}

.ecosystem-icon i {
    color: #d8a73d;
    font-size: 42px;
    transition: .35s;
}

.ecosystem-item:hover .ecosystem-icon {
    background: #d8a73d;
}

.ecosystem-item:hover .ecosystem-icon i {
    color: #111;
}

/*=========================================
            TEXT
=========================================*/

.ecosystem-item h5 {
    color: #d8a73d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ecosystem-item p {
    color: #d4d4d4;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

/*=========================================
        BOTTOM TEXT
=========================================*/

.ecosystem-footer {
    border-top: 1px solid rgba(214, 167, 63, .20);
    margin-top: 31px;
    padding-top: 15px;
    text-align: center;
}

.ecosystem-footer p {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

.ecosystem-footer span {
    color: #d8a73d;
    font-weight: 700;
}

/*=========================================
            HOVER
=========================================*/

.ecosystem-item:hover {
    transform: translateY(-5px);
    transition: .35s;
}

/*=========================================
            TABLET
=========================================*/

@media(max-width:991px) {

    .ecosystem-row1::before {
        display: none;
    }

    .ecosystem-item {
        margin-bottom: 40px;
    }

    .ecosystem-heading h2 {
        font-size: 30px;
    }

    .ecosystem-footer p {
        font-size: 24px;
    }

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:576px) {

    .ecosystem-section {
        padding: 50px 0;
    }

    .ecosystem-wrapper {
        padding: 25px 20px;
    }

    .ecosystem-heading h2 {
        font-size: 22px;
    }

    .ecosystem-icon {
        width: 70px;
        height: 70px;
    }

    .ecosystem-icon i {
        font-size: 32px;
    }

    .ecosystem-item h5 {
        font-size: 18px;
        min-height: auto;
    }

    .ecosystem-item p {
        font-size: 14px;
    }

    .ecosystem-footer {
        margin-top: 20px;
        padding-top: 20px;
    }

    .ecosystem-footer p {
        font-size: 18px;
        line-height: 1.7;
    }

}

.approach-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.approach-item {
    width: 138px;
    text-align: center;
}

.icon-boxs1 {
    width: 90px;
    height: 90px;
    border: 2px solid #b8892e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.icon-boxs1 i {
    color: #d4a340;
    font-size: 42px;
}

.approach-item h4 {
    color: #d4a340;
    font-size: 22px;
    margin: 18px 0 10px;
}

.approach-item p {
    color: #ddd;
    font-size: 13px;
    line-height: 1.5;
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.arrow i {
    color: #c89b3c;
    font-size: 28px;
}

@media(max-width:991px) {

    .approach-wrapper {

        flex-wrap: wrap;
        gap: 30px;
    }

    .approach-item {
        width: 45%;
    }

    .arrow {
        display: none;
    }


}

@media(max-width:576px) {

    .approach-item {
        width: 48%;
    }

}

.pmo-hero-section {
    background: #050505;
    padding: 40px 0;
    overflow: hidden;
}



.pmo-title {
    color: #fff;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 600;
    margin-bottom: 15px;
}

.pmo-subtitle {
    color: #d8a73d;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 1px;
}


.pmo-line {
    width: 80px;
    height: 3px;
    background: #d8a73d;
    margin-bottom: 30px;
}

.pmo-description {
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pmo-feature {
    text-align: center;
    border-right: 1px solid rgba(214, 167, 63, .25);
    padding: 10px;
    transition: .35s;
}

.pmo-feature i {
    color: #d8a73d;
    font-size: 38px;
    margin-bottom: 0px;
    display: block;
    transition: .35s;
}

.pmo-feature h6 {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

.pmo-feature:hover i {
    transform: translateY(-6px);
    color: #f5c864;
}


.pmo-image-wrapper {
    position: relative;
}

.pmo-image-wrapper img {
    width: 100%;
    border-radius: 12px;
}

.pmo-info-card {
    background: #080808;
    border: 2px solid rgba(214, 167, 63, .45);
    border-radius: 12px;
    padding: 14px;
    margin-top: 7px;
    margin-left: 0px;
    position: relative;
    z-index: 5;
}

.pmo-card-icon {
    width: 90px;
    height: 90px;
    border: 2px solid #d8a73d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmo-card-icon i {
    color: #d8a73d;
    font-size: 48px;
}

.pmo-info-card h4 {
    color: #d8a73d;
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}

.pmo-info-card p {
    color: #d8d8d8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.pmo-info-card:hover {
    border-color: #d8a73d;
    box-shadow: 0 10px 30px rgba(214, 167, 63, .12);
}

.pmo-info-card:hover .pmo-card-icon {
    background: #d8a73d;
}

.pmo-info-card:hover .pmo-card-icon i {
    color: #111;
}

@media(max-width:1199px) {

    .pmo-title {
        font-size: 56px;
    }

    .pmo-subtitle {
        font-size: 28px;
    }

    .pmo-description {
        font-size: 18px;
    }

    .pmo-feature h6 {
        font-size: 16px;
    }

    .pmo-info-card {
        margin-left: 20px;
    }

}

@media(max-width:991px) {

    .pmo-hero-section {
        padding: 60px 0;
    }

    .pmo-title {
        font-size: 46px;
    }

    .pmo-subtitle {
        font-size: 24px;
    }

    .pmo-description {
        font-size: 17px;
    }

    .pmo-feature {
        border-right: none;
        border-bottom: 1px solid rgba(214, 167, 63, .20);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pmo-image-wrapper {
        margin-top: 40px;
    }

    .pmo-info-card {
        margin: 20px 0 0;
    }

}

@media(max-width:576px) {

    .pmo-title {
        font-size: 34px;
    }

    .pmo-subtitle {
        font-size: 20px;
    }

    .pmo-description {
        font-size: 15px;
    }


    .pmo-feature i {
        font-size: 40px;
    }

    .pmo-feature h6 {
        font-size: 12px;
    }

    .pmo-card-icon {
        width: 70px;
        height: 70px;
    }

    .pmo-card-icon i {
        font-size: 34px;
    }

    .pmo-info-card {
        padding: 15px;
    }

    .pmo-info-card h4 {
        font-size: 20px;
    }

    .pmo-info-card p {
        font-size: 13px;
    }

}

.pmo-service-section {
    background: #070707;
}

.pmo-card {
    background: #111;
    border: 1px solid #8f6b2f;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    position: relative;
    transition: .35s;
}

.pmo-card:hover {
    transform: translateY(-8px);
    border-color: #d6a73f;
    box-shadow: 0 0 25px rgba(214, 167, 63, .15);
}

.card-number {
    width: 55px;
    height: 55px;
    border: 2px solid #b98b34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6a73f;
    font-size: 26px;
    font-weight: 700;
}

.pmo-icon {
    width: 90px;
    height: 91px;
    border: 2px solid #b98b34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 20px;
}

.pmo-icon i {
    color: #d6a73f;
    font-size: 58px;
}

.pmo-card h3 {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.pmo-card ul {
    padding-left: 22px;
    margin: 0;
}

.pmo-card ul li {
    color: #ddd;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 0px;
}

.pmo-card ul li::marker {
    color: #d6a73f;
}

@media(max-width:991px) {



    .pmo-card {
        margin-bottom: 25px;
    }

    .pmo-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

}

.framework-section {
    background: #070707;
    padding: 80px 0;
}

.framework-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.framework-item {
    flex: 1;
    text-align: center;
    transition: .3s;
}

.framework-icon {
    width: 100px;
    height: 100px;
    border: 1px solid #b98b34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: .4s;
}

.framework-icon i {
    font-size: 45px;
    color: #d6a73f;
}

.framework-item:hover .framework-icon {
    background: #d6a73f;
}

.framework-item:hover .framework-icon i {
    color: #111;
}

.framework-item h4 {
    color: #d6a73f;
    font-size: 24px;
    margin: 15px 0 8px;
    font-weight: 600;
}

.framework-item p {
    color: #ddd;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.framework-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    flex-shrink: 0;
}

.framework-arrow i {
    color: #d6a73f;
    font-size: 32px;
}

/* ===========================
        Tablet & Mobile
=========================== */

@media (max-width:991px) {

    .framework-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px 15px;
    }

    .framework-item {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        margin-bottom: 0;
    }

    .framework-arrow {
        display: none;
    }

    .framework-icon {
        width: 80px;
        height: 80px;
    }

    .framework-icon i {
        font-size: 36px;
    }

    .framework-item h4 {
        font-size: 20px;
    }

    .framework-item p {
        font-size: 14px;
        line-height: 1.6;
    }


    .section-heading h2 {
        font-size: 20px;
        text-align: center;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
        padding: 0 15px;
    }

}

/* ===========================
        Small Mobile
=========================== */

@media (max-width:575px) {

    .framework-wrapper {
        gap: 20px 10px;
    }

    .framework-item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .framework-icon {
        width: 70px;
        height: 70px;
    }

    .framework-icon i {
        font-size: 30px;
    }

    .framework-item h4 {
        font-size: 18px;
    }

    .framework-item p {
        font-size: 13px;
    }

}

.idiv {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border: 2px solid rgba(214, 167, 63, .55);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .35s;
}

.infra-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, .75);
    border: 1px solid #b98b34;
    border-radius: 10px;
    padding: 22px 25px;
}

.info-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 52px;
    color: #d6a73f;
}

.info-content h4 {
    color: #d6a73f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    color: #e6e6e6;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:767px) {

    .infra-info-box {
        flex-direction: column;
        text-align: center;
    }

}

.infra-info-box {
    position: absolute;
    right: 40px;
    bottom: 35px;

    width: 540px;
    max-width: calc(100% - 80px);

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 22px 28px;

    background: rgba(8, 8, 8, .90);
    border: 1px solid #b98b34;
    border-radius: 10px;

    backdrop-filter: blur(5px);
    z-index: 10;
}

.info-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #d6a73f;
    border-radius: 50%;
}

.info-icon i {
    font-size: 40px;
    color: #d6a73f;
}

.info-content h4 {
    color: #d6a73f;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    color: #e6e6e6;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


.infra-domain-section {
    background: #050505;
    padding: 80px 0;
}

.infra-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 50px;
}

.infra-heading .line {
    flex: 1;
    max-width: 280px;
    height: 1px;
    background: rgba(214, 167, 63, .35);
}

.infra-heading h2 {
    color: #d8a73d;
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    white-space: nowrap;
}

.infra-heading h2 i {
    color: #d8a73d;
    font-size: 18px;
}

.infra-card {
    background: #0b0b0b;
    border: 1px solid rgba(214, 167, 63, .45);
    border-radius: 14px;
    position: relative;
    height: 100%;
}

.infra-card:hover {
    box-shadow: 0 18px 35px rgba(214, 167, 63, .10);
}

.infra-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: #080808;
    border: 2px solid #d8a73d;
    border-radius: 50%;
    color: #d8a73d;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.infra-image {
    height: 160px;
    overflow: hidden;
}

.infra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.infra-content {
    padding: 15px 10px;
}

.infra-content h4 {
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
}

.title-line {
    width: 45px;
    height: 3px;
    background: #d8a73d;
    display: block;
    margin-bottom: 22px;
}


.infra-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.infra-content ul li {
    color: #d8d8d8;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 4px;
    position: relative;
    padding-left: 18px;
}

.infra-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d8a73d;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

.infra-icon {
    text-align: center;
    margin-top: 10px;
}

.infra-icon i {
    font-size: 50px;
    color: #d8a73d;
    transition: .35s;
}

.infra-card:hover .infra-icon i {
    transform: scale(1.12);
}

@media(max-width:1200px) {

    .infra-content h4 {
        font-size: 22px;
    }

    .infra-content ul li {
        font-size: 15px;
    }

}

@media(max-width:991px) {

    .infra-heading {
        flex-direction: column;
    }

    .infra-heading .line {
        max-width: 100%;
    }

    .infra-heading h2 {
        font-size: 26px;
        white-space: normal;
        text-align: center;
    }

    .infra-image {
        height: 240px;
    }

}

@media(max-width:767px) {

    .infra-domain-section {
        padding: 60px 0;
    }

    .infra-heading h2 {
        font-size: 22px;
    }

    .infra-content {
        padding: 22px 18px;
    }

    .infra-content h4 {
        font-size: 20px;
        min-height: auto;
    }

    .infra-content ul li {
        font-size: 14px;
        line-height: 1.7;
    }

    .infra-icon i {
        font-size: 42px;
    }

    .infra-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}

.capability-box {
    border: 1px solid rgba(214, 167, 63, .45);
    border-radius: 10px;
    padding: 20px 10px;
    background: #111;
}

.capability-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.capability-item {
    flex: 1;
    text-align: center;
}

.capability-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border: 1px solid #b98b34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.capability-icon i {
    font-size: 40px;
    color: #d6a73f;
}

.capability-item:hover .capability-icon {
    background: #d6a73f;
}

.capability-item:hover .capability-icon i {
    color: #111;
}

.capability-item h4 {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 18px;
    margin-bottom: 0;
}

.capability-line {
    width: 60px;
    border-top: 2px dotted #b98b34;
    margin-top: -45px;
    flex: none;
}

@media(max-width:991px) {

    .capability-wrapper {
        flex-wrap: wrap;
        gap: 25px;
    }

    .capability-item {
        width: 48%;
        flex: none;
    }

    .capability-line {
        display: none;
    }

    .capability-icon {
        width: 80px;
        height: 80px;
    }

    .capability-icon i {
        font-size: 40px;
    }

    .capability-item h4 {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .capability-item {
        width: 45%;
    }

    .capability-box {
        padding: 25px 15px;
    }

    .capability-icon {
        width: 70px;
        height: 70px;
    }

    .capability-icon i {
        font-size: 34px;
    }

    .capability-item h4 {
        font-size: 14px;
        line-height: 1.4;
    }

}

.impact-section {
    background: #050505;
    padding: 20px 0;
}

.impact-image-card {
    position: relative;
    border: 1px solid rgba(214, 167, 63, .35);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}

.impact-image-card img {
    width: 100%;
    height: 100%;
    transition: .5s;
}

.impact-image-card:hover img {
    transform: scale(1.06);
}

.impact-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .92),
            rgba(0, 0, 0, .20));
}

.impact-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 35px;
    z-index: 2;
}

.impact-overlay h3 {
    color: #d8a73d;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.impact-overlay span {
    color: #fff;
}

.impact-box {
    border: 1px solid rgba(214, 167, 63, .35);
    border-radius: 14px;
    overflow: hidden;
    background: #090909;
    height: 100%;
}

.impact-heading {
    padding: 22px 30px;
    border-bottom: 1px solid rgba(214, 167, 63, .20);
}

.impact-heading h2 {
    color: #d8a73d;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.impact-item1 {
    text-align: center;
    padding: 4px 10px;
    border-right: 1px solid rgba(214, 167, 63, .15);
    transition: .35s;
    height: 100%;
}

.border-top {
    border-top: 1px solid rgba(214, 167, 63, .15);
}

.border-end-0 {
    border-right: none !important;
}

.impact-item1:hover {
    background: rgba(214, 167, 63, .04);
}

.impact-item1 i {
    font-size: 35px;
    color: #d8a73d;
    margin-bottom: 0px;
    display: block;
    transition: .35s;
}

.impact-item1:hover i {
    transform: translateY(-5px);
    color: #f1c55d;
}

.impact-item1 h3 {
    color: #d8a73d;
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: 500;
}

.impact-item1 p {
    color: #ececec;
    font-size: 13px;
    line-height: 1.5;
}

@media(max-width:1199px) {

    .impact-overlay h3 {
        font-size: 30px;
    }

    .impact-heading h2 {
        font-size: 32px;
    }

    .impact-item1 h3 {
        font-size: 26px;
    }

    .impact-item1 p {
        font-size: 16px;
    }

}

@media(max-width:991px) {

    .impact-image-card {
        min-height: 320px;
    }

    .impact-box {
        margin-top: 20px;
    }

}

@media(max-width:767px) {

   
    .impact-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .impact-overlay h3 {
        font-size: 20px;
    }

    .impact-item1 {
        padding: 2px 7px;
    }

    .impact-item1 i {
        font-size: 38px;
    }

    .impact-item1 h3 {
        font-size: 20px;
    }

    .impact-item1 p {
        font-size: 13px;
        line-height: 1.6;
    }
    .logo-box img {
        width: 160px;
    }
    .infra-info-box {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: calc(100% - 80px);
    }
}
.digital-impact-box,
.digital-impact-cta{
    border:1px solid #675122;
    border-radius:10px;
    padding:20px;
    height:100%;
}

.digital-impact-title{
    color:#d6a32d;
    font-size:30px;
    font-weight:600;
    margin-bottom:20px;
}

.digital-impact-item{
    text-align:center;
    border-right:1px solid rgba(214,163,45,.35);
    padding:10px;
    height:100%;
}
.digital-impact-item{
    text-align:center;
    border-right:1px solid rgba(214,163,45,.35);
    padding:5px;
    height:100%;
}

.digital-impact-last{
    border-right:none;
}

.digital-impact-item i{
    font-size: 48px;
    color: #d6a32d;
    margin-bottom: 5px;
    display: block;
}

.digital-impact-item h3{
    color: #d6a32d;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;

}

.digital-impact-item p{
    color:#d9d9d9;
    font-size:11px;
    line-height:1.6;
    margin:0;
}

.digital-impact-cta h3{
    color: #d6a32d;
    font-size: 16px;
    margin-bottom: 8px;
}

.digital-impact-cta p{
    color:#d8d8d8;
    line-height:1.5;
    margin-bottom:15px;
    font-size: 12px;
}

.digital-impact-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 30px;
    color: #d6a32d;
    border: 1px solid #d6a32d;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
    font-size: 13px;
}

.digital-impact-btn:hover{
    background:#d6a32d;
    color:#000;
}

.digital-impact-btn i{
    font-size:20px;
}

.digital-impact-cta img{
    max-width:112px;
}

@media(max-width:991px){

    .digital-impact-item{
        border-right:none;
        border-bottom:1px solid rgba(214,163,45,.3);
        padding:20px 10px;
    }

    .digital-impact-last{
        border-bottom:none;
    }

    .digital-impact-title{
        text-align:center;
        font-size:30px;
    }

    .digital-impact-cta{
        margin-top:20px;
    }

}

@media(max-width:767px){

    .digital-impact-title{
        font-size:26px;
    }

    .digital-impact-item i{
        font-size:42px;
    }

    .digital-impact-item h3{
        font-size:26px;
    }

    .digital-impact-item p{
        font-size:14px;
    }

    .digital-impact-cta h3{
        font-size:24px;
    }

    .digital-impact-cta{
        text-align:center;
    }

    .digital-impact-cta img{
        margin-top:20px;
    }

}
.digital-partners-section{
    padding:70px 0;
}

.digital-partners-box{
    border:1px solid #675122;
    border-radius:10px;
    overflow:hidden;
}

.digital-partners-item{
    text-align:center;
    padding:35px 15px;
    border-right:1px solid rgba(212,166,52,.25);
    height:100%;
    transition:.3s;
}

.digital-partners-last{
    border-right:none;
}

.digital-partners-item i{
    font-size:52px;
    color:#d4a634;
    margin-bottom:18px;
    display:block;
}

.digital-partners-item h5{
    color:#fff;
    font-size:13px;
    font-weight:400;
    line-height:1.5;
    margin:0;
}

.digital-partners-item:hover{
    background:rgba(212,166,52,.08);
}

.digital-partners-item:hover i,
.digital-partners-item:hover h5{
    color:#d4a634;
}

/* Responsive */

@media(max-width:991px){

    .digital-partners-item{
        border-right:none;
        border-bottom:1px solid rgba(212,166,52,.25);
    }

    .digital-partners-last{
        border-bottom:none;
    }

}

@media(max-width:767px){

    .digital-partners-item{
        padding:15px 10px;
    }

    .digital-partners-item i{
        font-size:35px;
    }

    .digital-partners-item h5{
        font-size:13px;
    }

}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #d7a84b;
}

.certification-section{
    padding:80px 0;
    background:#000;
}

.certification-card{
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
    overflow: hidden;
    height: 100%;
    transition: .3s;
    border: 1px solid #755c2a;
}

.certification-card:hover{
    transform:translateY(-8px);
}

.certification-card img{
    padding: 5px;
    border-radius: 13px;
    width: 150px;
    margin: 15px auto 0px;
}

.certification-content{
    padding: 10px;
}

.certification-content h3{
    font-size: 23px;
    font-weight: 500;
    color: #d7a84b;
}

.title-line1{
    width: 90px;
    height: 2px;
    background: #d7a84b;
    display: block;
    margin: 8px auto;
    border-radius: 30px;
}

.certification-content p{
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.certification-features{
    margin-top:70px;
}

.feature-box{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 13px;
    padding: 13px;
    border: 1px solid #755c2a;
    border-radius: 10px;
}

.feature-box i{
    font-size:60px;
    color:#d7a84b;
}

.feature-box h4{
    font-size:20px;
    color:#d7a84b;
    margin-bottom:2px;
    font-weight:500;
}

.feature-box p{
    margin:0;
    color:#FFF;
    font-size:14px;
}

@media(max-width:991px){

    .certification-card{
        margin-bottom:25px;
    }

    .feature-box{
        justify-content:flex-start;
        margin-bottom:20px;
    }

}

@media(max-width:767px){

    .section-title h2{
        font-size:32px;
    }
    .certification-content h3{
        font-size:22px;
    }

    .feature-box{
        flex-direction:column;
        text-align:center;
    }

    .feature-box i{
        font-size:45px;
    }
    .investor-card h3 {
        font-size: 17px;
        color: #d4a017;
    }
    .small, small {
        font-size: 11px;
    }
}

.strategy-section {
    width: 100%;
    padding: 50px 0%;
    background:
        radial-gradient(circle at 50% 100%, rgba(190, 130, 15, 0.08), transparent 35%),
        #050505;
}

.strategy-container {
    max-width: 1170px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    gap: 24px;
}

/* Common Card */
.strategy-card1 {
    border: 1px solid #a97816;
    border-radius: 18px;
    padding: 17px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.025),
        rgba(255,255,255,0.005)
    );
    position: relative;
    overflow: hidden;
}

/* Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.section-number {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3bd37, #a96f08);
    color: #080808;
    font-size: 22px;
    font-weight: 600;
}

.section-label {
    color: #dca72b;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Left Content */
.featured-content {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 15px;
}

.featured-title {
    font-size: 25px;
    line-height: 1.18;
    font-weight: 500;
    margin-bottom: 22px;
}

.gold-line {
    width: 70px;
    height: 3px;
    background: #dca72b;
    margin-bottom: 25px;
}

.featured-description {
    color: #ddd;
    font-size: 15px;
    line-height: 1.5;
}

/* Quote */
.quote-box {
    border: 1px solid #a97816;
    border-radius: 15px;
    padding: 1px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.quote-mark {
    position: absolute;
    top: 2px;
    left: 18px;
    color: #dca72b;
    font-size: 52px;
    
}

.quote-text {
    color: #e5e5e5;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    padding: 8px 8px 5px;
}

.quote-end {
    position: absolute;
    right: 15px;
    bottom: -15px;
    color: #dca72b;
    font-size: 52px;
    
}

/* Approach */
.approach-card {
    padding-bottom: 34px;
}

.approach-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 20px;
}

.approach-item {
    text-align: center;
    padding: 0 18px;
    position: relative;
}

.approach-item:not(:last-child) {
    border-right: 1px dotted #a97816;
}

.approach-icon {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2a927;
    font-size: 48px;
    margin-bottom: 3px;
}

.approach-number {
    color: #e2a927;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.approach-title {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
}

.item-line {
    width: 45px;
    height: 1.5px;
    background: #e2a927;
    margin: 0 auto 10px;
}

.approach-description {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

/* Hover */
.approach-item {
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-item:hover .approach-icon {
    filter: drop-shadow(0 0 8px rgba(226, 169, 39, 0.5));
}
@media (max-width: 1100px) {
    .strategy-section, .market-section {
        padding: 55px 40px;
    }
}
/* Responsive */
@media (max-width: 1100px) {
    .strategy-container {
        grid-template-columns: 1fr;
    }

    .approach-items {
        grid-template-columns: repeat(5, 1fr);
    }

    .approach-item {
        padding: 0 10px;
    }
}

@media (max-width: 800px) {
    .featured-content {
        grid-template-columns: 1fr 1fr;
       
    }
    .quote-box{
        margin-top: 0px;
    }
    .strategy-card1 .approach-item {
        width: 100%;
    }
   
    .globe-wrapper{
        width:200px;
    }
    .approach-items {
        grid-template-columns: 1fr 1fr;
        gap: 10px 0;
    }

    .approach-item:nth-child(2) {
        border-right: none;
    }

    .approach-item:nth-child(3) {
        border-right: 1px dotted #a97816;
    }

    .approach-item:nth-child(4) {
        border-right: none;
    }
   

}

@media (max-width: 550px) {
    .strategy-section {
        padding: 20px 18px;
    }

    .strategy-card1 {
        padding: 15px 10px;
    }

    .section-header {
        gap: 12px;
    }

    .section-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .section-label {
        font-size: 14px;
    }

    .featured-title {
        font-size: 22px;
    }

    .approach-item,
    .approach-item:nth-child(3) {
        border-right: none !important;
        border-bottom: none;
        padding-bottom: 0px;
    }

    .approach-item:last-child {
        border-bottom: none;
    }
    .strategy-card1 .approach-item {
        width: 100%;
    }
}

.market-section {
    width: 100%;
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(184, 125, 16, 0.08),
            transparent 35%
        ),
        #050505;
}

.market-container {
    max-width: 1170px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.08fr;
    border-radius: 15px;
    border: 1px solid #8c651b;
}


/* =========================
   COMMON
========================= */

.market-card {
    padding: 24px;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.005)
        );
}

.market-card-right {
    border-left: 1px solid #8c651b;
}


/* =========================
   SECTION HEADER
========================= */

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 14px;
}

.section-number {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #f0b52e,
        #a66e0b
    );

    color: #080808;

    font-size: 19px;
    font-weight: 600;
}

.section-label {
    color: #e0a928;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* ==================================================
   LEFT : MARKET WATCH
================================================== */

.market-main {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 10px;

    min-height: 245px;
}


/* Globe */

.globe-wrapper {
    height: 245px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.globe-wrapper::before {
    content: "";

    position: absolute;

    width: 175px;
    height: 175px;

    border: 1px solid rgba(218, 165, 39, 0.35);
    border-radius: 50%;

    box-shadow:
        0 0 20px rgba(218, 165, 39, 0.08),
        inset 0 0 25px rgba(218, 165, 39, 0.08);
}

.globe-wrapper::after {
    content: "";

    position: absolute;

    width: 205px;
    height: 45px;

    bottom: 15px;

    border: 1px solid rgba(218, 165, 39, 0.35);
    border-radius: 50%;
}

.globe-icon {
    font-size: 150px;
    color: #c99524;

    filter:
        drop-shadow(0 0 8px rgba(222, 168, 38, 0.35));

    z-index: 2;
}


/* Market Text */

.market-title {
    

    font-size: 25px;
    line-height: 1.25;

    font-weight: 500;

    margin-bottom: 15px;
}

.market-title span {
    color: #e0a928;
    font-style: italic;
}

.market-description {
    color: #ddd;

    font-size: 13px;
    line-height: 1.65;

    margin-bottom: 10px;
}

.market-highlight {
    color: #dda72a;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================
   LEADERS ASK
========================= */

.leaders-box {
    margin-top: 18px;

    border: 1px solid #a87816;

    padding: 12px 15px 16px;
}

.leaders-title {
    text-align: center;

    color: #e0a928;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    padding-bottom: 10px;

    border-bottom: 1px solid #765518;
}

.leaders-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.leader-item {
    padding: 12px 10px 0;

    text-align: center;

    border-right: 1px dotted #87651c;
}

.leader-item:last-child {
    border-right: none;
}

.leader-icon {
    color: #dfa827;
    font-size: 25px;

    margin-bottom: 5px;
}

.leader-number {
    color: #eee;
    font-size: 17px;
    margin-left: 4px;
}

.leader-question {
    color: #ddd;

    font-size: 11px;
    line-height: 1.55;
    margin-bottom: 0;
    margin-top: 8px;
}


/* ==================================================
   RIGHT : NSV SPOTLIGHT
================================================== */

.spotlight-description {
    color: #ddd;

    font-size: 13px;
    line-height: 1.6;

    margin-bottom: 18px;
}

.spotlight-title {
   
    font-size: 23px;
    line-height: 1.2;

    font-weight: 500;

    margin-bottom: 10px;
}

.spotlight-title span {
    color: #e0a928;
    font-style: italic;
}


/* =========================
   SERVICES GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px dotted #87651c ;
    border-left: 1px dotted #87651c;
}

.service-item {
    min-height: 82px;

    padding: 13px 15px;

    /* display: flex; */
    align-items: center;
    gap: 13px;

    border-right: 1px dotted #87651c !important;
    border-bottom: 1px dotted #87651c;
}

.service-icon {
    flex: 0 0 40px;

    color: #dfa827;

    font-size: 34px;
}

.service-name {
    color: #eee;

    font-size: 13px;
    line-height: 1.4;
}


/* =========================
   NSV PERSPECTIVE
========================= */

.perspective {
    min-height: 155px;

    margin: 0 -24px -24px;
    margin-top: 22px;

    border-top: 1px solid #8c651b;

    display: grid;
    grid-template-columns: 1fr 42%;

    overflow: hidden;
}

.perspective-content {
    padding: 28px 22px;
}

.perspective-heading {
    color: #dfa827;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.perspective-heading::before {
    content: "“";

    color: #dfa827;

    

    font-size: 70px;
    line-height: 20px;

    vertical-align: middle;

    margin-right: 10px;
}

.perspective-text {
    color: #eee;

    

    font-size: 14px;
    font-style: italic;

    line-height: 1.7;

    padding-left: 52px;
}


/* Compass */

.compass-area {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(198, 145, 28, 0.14),
            transparent 65%
        );
}

.compass-icon {
    font-size: 125px;

    color: #c99727;

    filter:
        drop-shadow(0 0 7px rgba(222, 168, 38, 0.35));
}

.compass-area1 img{
    height: 150px;
    margin-top:10px;
}

@media (max-width: 1100px) {

    .market-container {
        grid-template-columns: 1fr;
    }

    .market-card-right {
        border-left: none;
        border-top: 1px solid #8c651b;
    }

    .market-main {
        grid-template-columns: 35% 65%;
    }
}


@media (max-width: 750px) {

    .market-section {
        padding: 25px 15px;
    }

    .market-main {
        grid-template-columns: 1fr;
    }
    .compass-area1 img{
        height: 200px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 0px;
    }
    .globe-wrapper {
        height: 180px;
    }

    .globe-icon {
        font-size: 120px;
    }

    .leaders-items {
        grid-template-columns: 1fr 1fr;
    }

    .leader-item:nth-child(2) {
        border-right: none;
    }

    .leader-item:nth-child(1),
    .leader-item:nth-child(2) {
        border-bottom: 1px dotted #87651c;
        padding-bottom: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .perspective {
        grid-template-columns: 1fr;
    }

    .compass-area {
        min-height: 180px;
    }
    .quote-box {
        margin-top: 0px;
    }
    .quote-text {
        color: #e5e5e5;
        font-size: 14px;
        line-height: 1.7;
        font-style: italic;
        padding: 19px 8px 24px;
        margin-top: 12px;
    }
    .quote-mark {
        position: absolute;
        top: -8px;
        left: 10px;
        color: #dca72b;
        font-size: 52px;
    }
    .market-card {
        padding: 15px 14px;
        position: relative;
        overflow: hidden;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005));
    }
    .leader-item {
        padding: 12px 10px 10px;
        text-align: center;
        border-right: 1px dotted #87651c;
    }
    .service-item:nth-child(2) {
        border-right: 1px solid rgb(215 163 57 / 46%);
    }
    .service-item:last-child {
        border-right: 1px solid rgb(215 163 57 / 46%);
        border-bottom: 1px solid rgb(215 163 57 / 46%);
    }
    .compass-area1{
        text-align: center;
    }
    .perspective-content {
        padding: 28px 22px 0px;
    }
}


@media (max-width: 500px) {

    .section-label {
        font-size: 13px;
    }

    .market-title,
    .spotlight-title {
        font-size: 22px;
    }

    .leaders-items {
        grid-template-columns: 1fr;
    }

    .leader-item {
        border-right: none !important;
        border-bottom: 1px dotted #87651c;
    }

    .leader-item:last-child {
        border-bottom: none;
    }

    .services-grid {
        /* grid-template-columns: 1fr; */
    }
}

.newsletter-page{padding:50px 0 70px;background:#000;min-height:100vh}.newsletter-page-header{text-align:center;max-width:700px;margin:0 auto 50px}.newsletter-page-tag{display:inline-block;color:#c89a33;font-size:12px;letter-spacing:2px;font-weight:600;margin-bottom:12px}.newsletter-page-header h1{font-size:42px;color:#fff;font-weight:700;margin:0 0 15px}.newsletter-page-header p{font-size:15px;color:#aaa;margin:0;line-height:1.7}.newsletter-page-card{height:100%;background:#111;border-radius:20px;border:1px solid rgb(200 154 51);overflow:hidden;transition:.4s ease}.newsletter-page-card:hover{transform:translateY(-7px);border-color:#c89a33;box-shadow:0 15px 35px rgba(200,154,51,.12)}.newsletter-page-image{height:230px;position:relative;overflow:hidden}.newsletter-page-image img{width:100%;height:100%;object-fit:cover;transition:.5s ease}.newsletter-page-card:hover .newsletter-page-image img{transform:scale(1.05)}.newsletter-page-date{position:absolute;top:15px;left:15px;background:#c89a33;color:#000;font-size:11px;font-weight:600;letter-spacing:1px;padding:7px 12px}.newsletter-page-content{padding:25px}.newsletter-page-content h3{font-size:18px;line-height:1.4;color:#fff;font-weight:700;margin:0 0 6px;}.newsletter-page-content p{font-size:13px;line-height:1.7;color:#d9d7d7;margin:0 0 10px}.newsletter-page-content a{font-size:11px;color:#c89a33;letter-spacing:1.2px;font-weight:600;text-decoration:none}.newsletter-page-content a i{font-size:15px;margin-left:5px;vertical-align:middle;transition:.3s}.newsletter-page-content a:hover i{margin-left:10px}@media(max-width:991px){.newsletter-page{padding:70px 0}.newsletter-page-header h1{font-size:36px}}@media(max-width:767px){.newsletter-page{padding:55px 0}.newsletter-page-header{margin-bottom:35px}.newsletter-page-header h1{font-size:30px}.newsletter-page-image{height:210px}.newsletter-page-content{padding:20px}}