/* ===== ROOT THEME COLORS ===== */
:root {
    --primary: #061a2f;     /* deep navy */
    --secondary: #0b2c5f;   /* header blue */
    --accent: #2f80ff;      /* bright blue (CTA) */
    --accent-light: #4da3ff;
    --text-light: #c9d4e0;
    --white: #ffffff;
}

body {
font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
font-weight: 600;
}

.nav-link.btn {
border-radius: 30px;
}

.mb20{
    margin-bottom: 20px !important;
}

/* HEADER BASE */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

/* Container alignment */
.main-header .container {
    height: 80px;
}

.blue-color {
     color: #2f80ff;;
}

/* LOGO */
.logo img {
    height: 60px;
}

/* MENU */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #0b2c5f;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #2f80ff; /* green from logo */
}

/* NAV MENU */
.nav-menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #0b2c5f;
    font-weight: 500;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: #0b2c5f;
}

/* OFFCANVAS MENU */
.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 16px;
    color: #0b2c5f;
    font-weight: 500;
}

/* HEADER */
.main-header {
    padding: 15px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* BUTTON */
.btn-green {
    background:#2f80ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.btn-green:hover {
    background: #2f80ff;
    color: #fff;
}

/* STICKY SHADOW ON SCROLL */
.main-header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #0095cc;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}


/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 100px 0 60px;
    color: #ffffff;
    overflow: hidden;

    /* BACKGROUND IMAGE + OVERLAY */
    background:
        linear-gradient(
            90deg,
            rgba(6, 26, 47, 0.95) 30%,
            rgba(6, 26, 47, 0.75) 50%,
            rgba(6, 26, 47, 0.4) 70%,
            rgba(6, 26, 47, 0.1) 100%
        ),
        url('../images/hero-bg.png') no-repeat right center;

    background-size: cover;
}

/* ===== CONTENT ALIGNMENT ===== */
.hero-left {
    max-width: 540px;
}

/* ===== TITLE ===== */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title {
    color: #fff;
}

.hero-title span {
    color: #2f80ff;
}

/* ===== SUBTITLE ===== */
.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #c9d4e0;
    margin-bottom: 10px;
}

/* ===== DESCRIPTION ===== */
.hero-desc {
    font-size: 16px;
    color: #c9d4e0;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #2f80ff;
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: #1f6fe0;
}

/* OUTLINE BUTTON */
.btn-outline-light {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #061a2f;
}

/* ===== TRUST STRIP ===== */
.hero-trust {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #c9d4e0;
}

.hero-trust div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== OPTIONAL ICON STYLE ===== */
.hero-trust i {
    font-size: 18px;
    color: #2f80ff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .hero-section {
        padding: 80px 0 40px;
        background-position: center;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        text-align: center;
    }

    .hero-trust div {
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* ===== EXTRA SMALL ===== */
@media (max-width: 576px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/* ===== HERO STRIP ===== */

.strip-wrap {
        background: #071932 !important;
}

.hero-strip {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding:50px 0px;
}

/* EACH ITEM */
.strip-item {
    position: relative;
}

/* VERTICAL DIVIDER */
.strip-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

/* BOX */
.strip-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #c9d4e0;
    font-size: 14px;
}

/* ICON */
.strip-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* TEXT */
.strip-box span {
    line-height: 1.4;
}

/* MOBILE */
@media (max-width: 992px) {

    .strip-item::after {
        display: none;
    }

    .strip-box {
        justify-content: center;
        margin-bottom: 15px;
    }
}




/* ===== WHAT WE DO ===== */
.what-we-do {
    background: #f5f7fb;
    padding: 80px 0;
}

/* SUBTITLE */
.section-subtitle {
    color: #2f80ff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

/* TITLE */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a2540;
}

/* DESCRIPTION */
.section-desc {
    color: #5f6c7b;
    max-width: 600px;
    margin: auto;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #e6eaf0;
    transition: all 0.3s ease;
    height: 100%;
}

/* ICON */
.service-card img {
    width: 55px;
    margin-bottom: 15px;
}

/* TEXT */
.service-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    line-height: 1.5;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
}



/* ===== TRADE ENABLEMENT ===== */
.trade-enablement {
    background: #eef3f8;
    padding: 80px 0;
    border-radius: 12px;
}

/* TITLE */
.section-subtitle {
    color: #2f80ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a2540;
}

/* FLOW WRAPPER */
.flow-wrapper {
    position: relative;
}

/* FLOW ITEM */
.flow-item {
    position: relative;
    text-align: center;
}

/* CONNECTOR LINE */
.flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    border-top: 2px dotted #bcd3ff;
    z-index: 0;
}

/* BOX */
.flow-box {
    position: relative;
    z-index: 1;
}

/* ICON CIRCLE */
.flow-box img {
    width: 80px;
    height: 80px;
    padding: 12px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e0e6ef;
    margin-bottom: 15px;
}

/* TEXT */
.flow-box p {
    font-size: 14px;
    color: #0a2540;
    font-weight: 500;
}

/* NOTE */
.flow-note {
    color: #5f6c7b;
    font-size: 15px;
}

.flow-note span {
    color: #2f80ff;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 992px) {

    .flow-item::after {
        display: none;
    }

    .flow-box img {
        width: 50px;
        height: 50px;
    }
}



/* ===== KEY SECTORS ===== */
.key-sectors {
    padding: 80px 0;
    background: #f5f7fb;
}

/* CARD */
.sector-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
}

/* IMAGE */
.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.sector-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 37, 64, 0.1),
        rgba(10, 37, 64, 0.85)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    color: #fff;
}

/* ICON */
.sector-card .overlay img {
    width: 50px;
    margin-bottom: 8px;
    height: auto;
}

/* TITLE */
.sector-card h6 {
    font-size: 15px;
    font-weight: 600;
}

/* HOVER */
.sector-card:hover img {
    transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 768px) {
    .sector-card {
        height: 140px;
    }
}


/* ===== GLOBAL REACH ===== */
.global-reach {
    background: #eef3f8;
    padding: 80px 0;
    border-radius: 12px;
}

/* MAP */
.map-img {
    max-width: 100%;
    opacity: 0.9;
}

/* LIST */
.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #0a2540;
    font-weight: 500;
}

/* ICON DOT */
.location-list li::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
    .location-list li {
        font-size: 14px;
    }
}


/* ===== WHY TRADENCE ===== */
.why-tradence {
    padding: 60px 0;
}

/* BOX BACKGROUND */
.why-box {
    background: linear-gradient(135deg, #061a2f, #0b2c5f);
    padding: 50px 30px;
    border-radius: 12px;
    color: #fff;
}

/* TITLE */
.why-title {
    font-size: 22px;
    font-weight: 700;
}

.why-subtitle {
    color: #2f80ff;
    margin-top: 5px;
}

/* ITEM */
.why-item {
    position: relative;
}

/* DIVIDER LINE */
.why-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

/* CONTENT */
.why-content {
    padding: 0 15px;
}

/* ICON */
.why-content img {
    width: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.why-content h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 13px;
    color: #c9d4e0;
}

/* MOBILE */
@media (max-width: 992px) {

    .why-item::after {
        display: none;
    }

    .why-content {
        margin-bottom: 20px;
    }
}


/* ===== CTA SECTION ===== */
.cta-section {
    padding: 10px 0px 40px 0px;
}

/* BOX */
.cta-box {

      background:
        linear-gradient(
            90deg,
            rgba(6, 26, 47, 0.95) 30%,
            rgba(6, 26, 47, 0.75) 50%,
            rgba(6, 26, 47, 0.4) 70%,
            rgba(6, 26, 47, 0.1) 100%
        ),
        url('../images/hero-bg.png') no-repeat right center;

    background-size: cover;
    padding: 30px 40px;
    border-radius: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* OPTIONAL RIGHT IMAGE (containers) */
.cta-box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    height: 100%;
    background: url('../images/cta-bg.png') no-repeat right bottom;
    background-size: contain;
    opacity: 0.3;
}

/* TEXT */
.cta-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-content p {
    font-size: 14px;
    color: #dbe6f2;
}

/* BUTTONS */
.cta-buttons .btn {
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 14px;
}

/* PRIMARY */
.btn-primary {
    background: #2f80ff;
    border: none;
}

.btn-primary:hover {
    background: #1f6fe0;
}

/* LIGHT BUTTON */
.btn-light {
    background: #fff;
    color: #0a2540;
}

.btn-light:hover {
    background: #e6eaf0;
}

/* MOBILE */
@media (max-width: 768px) {

    .cta-box {
        text-align: center;
    }

    .cta-buttons {
        margin-top: 15px;
    }
}



/* ===== FOOTER ===== */
.main-footer {
    background: #061a2f;
    color: #c9d4e0;
    padding: 60px 0;
}

/* LOGO */
.footer-brand img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-brand small {
    font-size: 12px;
    color: #8fa3b8;
}

/* HEADINGS */
.main-footer h6 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 8px;
}

.main-footer ul li a {
    text-decoration: none;
    color: #c9d4e0;
    font-size: 14px;
    transition: 0.3s;
}

.main-footer ul li a:hover {
    color: #2f80ff;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #2f80ff;
    border-color: #2f80ff;
}

/* POLICY */
.footer-policy {
    font-size: 13px;
}

.footer-policy a {
    color: #c9d4e0;
    text-decoration: none;
}

.footer-policy span {
    margin: 0 8px;
    color: #5f6c7b;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-brand {
        text-align: center;
    }
}