.marketing-nav {
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    color: #0B2545 !important;
}

.navbar-nav .nav-link:hover {
    color: var(--light-color);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
}

.nav-list a:hover {
    color: var(--light-color);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}


.about-hero {
    background: linear-gradient(135deg, var(--dark-color), var(--text-blue));
    color: #fff;
    padding: 80px 0;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-hero .lead {
    max-width: 600px;
    opacity: 0.95;
}

.breadcrumb {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

.section {
    padding: 70px 0;
}

.bg-light {
    background: var(--bg-light-gray);
}

.bg-accent {
    background: #fdf7e6;
}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.highlight-box {
    background: #f8f9fb;
    padding: 30px;
    border-left: 4px solid var(--light-color);
}

/* ================= TECH AESTHETIC CORE ================= */
body {
    font-feature-settings: "liga" 1, "kern" 1;
}

h2 {
    color: #0b2545;
}

.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(29,191,115,0.08), transparent 40%);
    pointer-events: none;
}

/* ================= PREMIUM HERO ================= */

/* ================= HERO LAYOUT FIX ================= */

.hero-premium {
    position: relative;
    min-height: calc(80vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background:
        linear-gradient(
            to right,
            rgba(11,37,69,0.95) 0%,
            rgba(11,37,69,0.9) 45%,
            rgba(11,37,69,0.5) 70%,
            rgba(11,37,69,0.15) 100%
        ),
        url('/images/worldmap.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    overflow: hidden;
}

/* Soft glow overlays */
.hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(29,191,115,0.25), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(15,124,146,0.2), transparent 40%);
    pointer-events: none;
}

/* Ensures content is vertically centered */
.hero-content {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
}


/* Typography */
.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--light-color);
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 560px;
    color: rgba(255,255,255,0.85);
}

/* Buttons refinement */
.hero-premium .btn-cta-outline {
    border-color: rgba(255,255,255,0.5);
}


/* ================= GLASS CARDS ================= */
#about .glass-card {
    transition: all 0.35s ease;
}

#about .glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

#about .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(29,191,115,0.2),
        rgba(15,124,146,0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* ================= IMAGE TREATMENT ================= */
.image-frame {
    position: relative;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(29,191,115,0.15), rgba(15,124,146,0.15));
    mix-blend-mode: overlay;
}

/* ================= TECH LIST ================= */
.tech-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    list-style-type: none;
}

.tech-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--light-color);
    font-weight: bold;
}

/* ================= SECTION TITLES ================= */
.section-title {
    letter-spacing: -0.02em;
}

/* ================= FEATURE SECTIONS ================= */

.feature-section {
    position: relative;
}

.feature-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-color);
    margin-bottom: 0.75rem;
}

.feature-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.feature-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--light-color),
        var(--text-blue)
    );
    border-radius: 3px;
    margin: 1.25rem 0;
}

.image-frame {
    position: relative;
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 1.75rem;
    background: linear-gradient(
        135deg,
        rgba(29,191,115,0.25),
        rgba(15,124,146,0.25)
    );
    filter: blur(30px);
    z-index: -1;
}


/* ================= TEAM ================= */
.team-card figure {
    width: 100%;
    height: 250px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.team-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.08);
}

/* ================= CONTACT ================= */
.contact-strip {
    background: linear-gradient(135deg, #0b2545, #142a3b);
}

/* ================= CTA BUTTONS ================= */
.btn-cta {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--light-color);
    --bs-btn-border-color: var(--light-color);
    --bs-btn-hover-bg: #17a863;
    --bs-btn-hover-border-color: #17a863;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
}

.btn-cta:hover {
   color: #fff;
}

.btn-cta-outline {
    --bs-btn-color: var(--dark-color);
    --bs-btn-border-color: var(--light-color);
    --bs-btn-hover-bg: var(--light-color);
    --bs-btn-hover-color: #fff;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
}

/* ================= CONTACT TECH ================= */
.contact-tech {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(29,191,115,0.25), transparent 40%),
        linear-gradient(135deg, #0b2545, #142a3b);
}

.contact-tech::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 40%);
    pointer-events: none;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1.25rem;
    padding: 2.2rem 1.8rem;
    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 991px) {
    .col-lg-3, .col-md-4 {
        width: 50%;
    }

    .navbar .navbar-brand {
        width: 70%;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-weight: 500;
    }

    .navbar-nav .btn {
        width: 100%;
        margin-top: 1rem;
    }
}
