:root {

    --navy: #09233f;
    --navy-dark: #061a30;
    --navy-light: #123b66;

    --gold: #e6b83f;
    --gold-light: #f5d77a;

    --white: #ffffff;
    --light: #f7f9fc;
    --text: #18283a;
    --muted: #667085;

    --border: #e7ebf0;

}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family: 'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

}


a {
    text-decoration: none;
}


img {
    max-width: 100%;
}


/* ================= NAVBAR ================= */

.main-navbar {

    background: rgba(6, 26, 48, .97);

    backdrop-filter: blur(12px);

    padding: 12px 0;

    border-bottom: 1px solid rgba(255,255,255,.06);

}


.navbar-logo {

    width: 58px;

    height: 58px;

    object-fit: contain;

}


.nav-link {

    color: rgba(255,255,255,.85) !important;

    font-size: 14px;

    font-weight: 500;

    margin: 0 8px;

    transition: .25s;

}


.nav-link:hover,
.nav-link.active {

    color: var(--gold-light) !important;

}


.navbar-cta {

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #142033;

    font-weight: 700;

    padding: 10px 20px;

    border-radius: 30px;

    margin-left: 18px;

    font-size: 13px;

    transition: .3s;

}


.navbar-cta:hover {

    transform: translateY(-2px);

    color: #111;

    box-shadow: 0 8px 25px rgba(230,184,63,.25);

}


/* ================= HERO ================= */

.hero-section {

    background:

    radial-gradient(
        circle at 75% 30%,
        rgba(35,88,140,.45),
        transparent 35%
    ),

    linear-gradient(
        135deg,
        var(--navy-dark),
        var(--navy-light)
    );

    min-height: 650px;

    padding-top: 130px;

    padding-bottom: 70px;

    color: white;

    display: flex;

    align-items: center;

}


.hero-content {

    padding-right: 35px;

}


.eyebrow {

    display: inline-block;

    padding: 7px 16px;

    background: rgba(230,184,63,.12);

    border: 1px solid rgba(230,184,63,.18);

    color: var(--gold-light);

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .6px;

}


.hero-content h1 {

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1.08;

    font-weight: 800;

    margin-top: 25px;

    margin-bottom: 25px;

    letter-spacing: -1.5px;

}


.hero-description {

    max-width: 560px;

    color: #d8e1ec;

    font-size: 16px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;

}


.btn-gold {

    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color: #18212d;

    border: none;

    border-radius: 30px;

    padding: 13px 26px;

    font-weight: 700;

    transition: .3s;

}


.btn-gold:hover {

    color: #111;

    transform: translateY(-2px);

    box-shadow: 0 10px 30px rgba(230,184,63,.3);

}


.hero-image-wrapper {

    display: flex;

    justify-content: center;

    align-items: end;

}


.hero-image {

    max-height: 570px;

    object-fit: contain;

    filter: drop-shadow(
        0 30px 40px rgba(0,0,0,.25)
    );

}


/* ================= TRUST ================= */

.trust-strip {

    background: #fff;

    border-bottom: 1px solid var(--border);

    padding: 28px 0;

}


.trust-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: var(--text);

}


.trust-item span {

    font-size: 25px;

}


.trust-item strong {

    font-size: 11px;

    font-weight: 600;

}


/* ================= SECTIONS ================= */

.section {

    padding: 100px 0;

}


.section-heading {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}


.section-heading > span,
.section-label {

    color: #b28a20;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.section-heading h2 {

    font-size: 38px;

    font-weight: 800;

    margin-top: 10px;

    color: var(--navy);

}


.section-heading p {

    color: var(--muted);

    margin-top: 12px;

}


/* ================= SERVICES ================= */

.service-card {

    height: 100%;

    padding: 38px 30px;

    border-radius: 18px;

    background: white;

    border: 1px solid var(--border);

    box-shadow:
        0 10px 35px rgba(9,35,63,.05);

    transition: .3s;

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(9,35,63,.1);

    border-color: rgba(230,184,63,.35);

}


.service-icon {

    font-size: 34px;

    margin-bottom: 20px;

}


.service-card h3 {

    font-size: 20px;

    font-weight: 700;

    color: var(--navy);

}


.service-card p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 0;

}


/* ================= ABOUT ================= */

.about-preview {

    padding: 100px 0;

    background: var(--light);

}


.about-preview h2 {

    color: var(--navy);

    font-size: 40px;

    font-weight: 800;

    margin: 12px 0 25px;

}


.about-preview p {

    color: var(--muted);

    font-size: 15px;

}


.btn-dark-gold {

    display: inline-block;

    background: var(--navy);

    color: white;

    padding: 12px 24px;

    border-radius: 30px;

    margin-top: 15px;

    font-weight: 600;

}


.btn-dark-gold:hover {

    background: var(--gold);

    color: #17202b;

}


.about-stats {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

}


.stat-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 35px 20px;

    text-align: center;

}


.stat-card strong {

    display: block;

    font-size: 25px;

    color: var(--gold);

}


.stat-card span {

    color: var(--muted);

    font-size: 12px;

}


/* ================= MARKETS ================= */

.market-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    min-height: 170px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    transition: .3s;

}


.market-card:hover {

    transform: translateY(-5px);

    border-color: rgba(230,184,63,.45);

    box-shadow:
        0 15px 35px rgba(9,35,63,.07);

}


.market-card > strong {

    font-size: 32px;

    color: var(--navy);

}


.market-card h3 {

    margin: 6px 0 2px;

    font-size: 17px;

    color: var(--navy);

}


.market-card p {

    margin: 0;

    color: var(--muted);

    font-size: 12px;

}


/* ================= PROFILE ================= */

.profile-section {

    padding: 90px 0;

    background: var(--navy-dark);

}


.profile-box {

    max-width: 850px;

    margin: auto;

    text-align: center;

    color: white;

}


.profile-box > span {

    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;

}


.profile-box h2 {

    font-size: 34px;

    font-weight: 800;

    margin: 12px 0;

}


.profile-box p {

    color: #cbd5e1;

    max-width: 650px;

    margin: 0 auto 28px;

}


/* ================= CTA ================= */

.cta-section {

    padding: 100px 20px;

    color: white;

    background:

    linear-gradient(
        135deg,
        #123b66,
        #0a2949
    );

}


.cta-section h2 {

    font-size: 42px;

    font-weight: 800;

    max-width: 750px;

    margin: auto;

}


.cta-section p {

    max-width: 650px;

    margin: 20px auto 30px;

    color: #dbe5f0;

}


/* ================= FOOTER ================= */

.footer {

    background: #061a30;

    color: white;

    padding: 65px 0 30px;

}


.footer-logo {

    width: 58px;

    margin-bottom: 15px;

}


.footer h4 {

    font-size: 18px;

    margin-bottom: 5px;

}


.footer p {

    color: #aebccc;

    font-size: 12px;

}


.footer-tagline {

    margin-top: 18px;

}


.footer-links {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin: 25px 0;

}


.footer-links a {

    color: #cbd5e1;

    font-size: 13px;

}


.footer-links a:hover {

    color: var(--gold-light);

}


.copyright {

    border-top: 1px solid rgba(255,255,255,.08);

    padding-top: 25px;

    margin-top: 25px;

}


/* ================= WHATSAPP ================= */

.whatsapp-button {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 62px;

    height: 62px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.2);

    z-index: 9999;

    transition: .3s;

}


.whatsapp-button:hover {

    transform: scale(1.08);

    color: white;

}


/* ================= INNER HERO ================= */

.inner-hero {

    padding: 160px 0 90px;

    background:

    radial-gradient(
        circle at 75% 30%,
        rgba(35,88,140,.4),
        transparent 35%
    ),

    linear-gradient(
        135deg,
        var(--navy-dark),
        var(--navy-light)
    );

    color: white;

}


.inner-hero h1 {

    font-size: clamp(42px,5vw,60px);

    font-weight: 800;

    line-height: 1.1;

}


.inner-hero p {

    max-width: 720px;

    color: #d5dfeb;

    margin-top: 20px;

}


/* ================= ABOUT PAGE ================= */

.about-content {

    padding: 100px 0;

}


.about-content h2 {

    color: var(--navy);

    font-weight: 800;

    margin-bottom: 20px;

}


.about-content p {

    color: var(--muted);

}


/* ================= EXPERTISE ================= */

.expertise-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 30px;

    height: 100%;

    transition: .3s;

}


.expertise-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(9,35,63,.08);

}


.expertise-card h3 {

    font-size: 18px;

    color: var(--navy);

    font-weight: 700;

}


.expertise-card p {

    color: var(--muted);

    font-size: 14px;

}


/* ================= CONTACT ================= */

.contact-section {

    padding: 100px 0;

    background: var(--light);

}


.contact-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 25px;

    margin-bottom: 18px;

}


.contact-card-icon {

    font-size: 28px;

    margin-bottom: 10px;

}


.contact-card h3 {

    color: var(--navy);

    font-size: 17px;

    font-weight: 700;

}


.contact-card p {

    color: var(--muted);

    margin-bottom: 0;

}


.contact-card a {

    color: var(--navy);

    font-weight: 600;

}


.contact-form {

    background: white;

    padding: 40px;

    border-radius: 20px;

    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(9,35,63,.06);

}


.form-label {

    color: var(--navy);

    font-weight: 600;

    font-size: 13px;

}


.form-control,
.form-select {

    border: 1px solid #dfe4ea;

    border-radius: 10px;

    padding: 12px 14px;

}


.form-control:focus,
.form-select:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 .2rem rgba(230,184,63,.12);

}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .navbar-cta {

        display: inline-block;

        margin: 15px 0 5px;

    }


    .hero-section {

        padding-top: 120px;

    }


    .hero-content {

        padding-right: 0;

        text-align: center;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-image {

        max-height: 480px;

        margin-top: 35px;

    }

}


@media (max-width: 767px) {

    .section {

        padding: 70px 0;

    }


    .section-heading h2 {

        font-size: 30px;

    }


    .about-preview h2 {

        font-size: 32px;

    }


    .about-stats {

        margin-top: 35px;

    }


    .cta-section h2 {

        font-size: 32px;

    }


    .trust-item {

        margin-bottom: 20px;

    }


    .contact-form {

        padding: 25px;

    }

}


@media (max-width: 480px) {

    .hero-content h1 {

        font-size: 38px;

    }


    .navbar-logo {

        width: 48px;

        height: 48px;

    }


    .about-stats {

        grid-template-columns: 1fr;

    }

}