/* =====================================================
   JAFASOL SYSTEMS LTD
   CORPORATE WEBSITE STYLESHEET
===================================================== */


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --primary: #0b63ce;
    --primary-dark: #074a9e;
    --primary-light: #2f8cff;

    --dark: #07111f;
    --dark-2: #0b1728;
    --dark-3: #101f33;

    --white: #ffffff;
    --off-white: #f7f9fc;

    --text: #182638;
    --muted: #64748b;
    --border: #e5eaf1;

    --success: #1ed760;

    --container: 1180px;

    --radius: 18px;

    --shadow:
        0 20px 60px rgba(7, 17, 31, 0.10);

    --transition:
        all 0.35s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}


/* =====================================================
   GLOBAL
===================================================== */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;
}

.section {
    padding: 120px 0;
}

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.section-label::before {

    content: "";

    width: 28px;

    height: 2px;

    background: var(--primary);
}

.section-heading {

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 70px;
}

.section-heading h2,
.center-heading h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        2.4rem,
        5vw,
        4.2rem
    );

    line-height: 1.08;

    letter-spacing: -0.04em;
}

.section-heading h2 span,
.center-heading h2 span {

    color: var(--primary);
}

.section-heading > p,
.center-heading > p {

    color: var(--muted);

    font-size: 1rem;

    max-width: 550px;
}

.center-heading {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 70px;
}

.center-heading .section-label {

    justify-content: center;
}

.center-heading .section-label::before {
    display: none;
}


/* =====================================================
   PRELOADER
===================================================== */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--dark);

    display: grid;

    place-items: center;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

#preloader.hide {

    opacity: 0;

    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {

    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    margin: auto;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.25
    );

    color: white;

    font-family: "Manrope";

    font-size: 1.5rem;

    font-weight: 800;

    border-radius: 16px;
}

.loader-line {

    width: 90px;

    height: 2px;

    background: var(--primary);

    margin: 20px auto 0;

    animation:
        loader 1.2s infinite ease-in-out;
}

@keyframes loader {

    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    transition: var(--transition);
}

.header.scrolled {

    padding: 12px 0;

    background:
        rgba(7, 17, 31, 0.94);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 10px 40px rgba(
            0,
            0,
            0,
            0.15
        );
}

.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;
}

.logo-symbol {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    border-radius: 10px;

    font-family: "Manrope";

    font-weight: 800;

    font-size: 0.85rem;

    letter-spacing: -0.15em;

    box-shadow:
        0 10px 25px rgba(
            11,
            99,
            206,
            0.35
        );
}

.logo-symbol span:first-child {
    transform: translateX(2px);
}

.logo-symbol span:last-child {
    transform: translateX(-2px);
}

.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.logo-text strong {

    font-family: "Manrope";

    font-size: 1rem;

    letter-spacing: 0.08em;
}

.logo-text small {

    margin-top: 5px;

    color: rgba(
        255,
        255,
        255,
        0.6
    );

    font-size: 0.54rem;

    letter-spacing: 0.22em;
}


/* NAVIGATION */

.navbar {

    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-link {

    color: rgba(
        255,
        255,
        255,
        0.72
    );

    font-size: 0.83rem;

    font-weight: 600;

    transition: var(--transition);

    position: relative;
}

.nav-link:hover,
.nav-link.active {

    color: white;
}

.nav-link.active::after {

    content: "";

    position: absolute;

    width: 5px;

    height: 5px;

    background: var(--primary-light);

    border-radius: 50%;

    bottom: -9px;

    left: 50%;

    transform: translateX(-50%);
}

.nav-cta {

    display: flex;

    align-items: center;

    gap: 10px;

    background: white;

    color: var(--dark);

    padding: 12px 18px;

    border-radius: 8px;

    font-size: 0.8rem;

    font-weight: 700;

    transition: var(--transition);
}

.nav-cta:hover {

    background: var(--primary);

    color: white;

    transform: translateY(-2px);
}


/* MOBILE MENU */

.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;

    width: 42px;

    height: 42px;

    position: relative;

    z-index: 1100;
}

.menu-toggle span {

    display: block;

    width: 24px;

    height: 2px;

    background: white;

    margin: 5px auto;

    transition: var(--transition);
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(
                11,
                99,
                206,
                0.25
            ),
            transparent 32%
        ),
        var(--dark);

    color: white;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding:
        140px
        0
        90px;
}

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.025
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.025
            )
            1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-glow {

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.15;

    pointer-events: none;
}

.glow-one {

    background: var(--primary);

    top: 10%;

    right: 20%;
}

.glow-two {

    background: #5b21b6;

    bottom: 5%;

    left: 10%;
}

.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 80px;

    align-items: center;
}

.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size: 0.7rem;

    letter-spacing: 0.16em;

    font-weight: 700;

    margin-bottom: 25px;
}

.eyebrow span {

    width: 25px;

    height: 1px;

    background: var(--primary-light);
}

.hero h1 {

    font-family: "Manrope";

    font-size: clamp(
        3.2rem,
        6vw,
        5.8rem
    );

    line-height: 0.98;

    letter-spacing: -0.06em;

    max-width: 760px;
}

.hero h1 span {

    color: var(--primary-light);
}

.hero-description {

    max-width: 620px;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    margin:
        30px
        0;

    font-size: 1rem;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 45px;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding:
        15px
        22px;

    border-radius: 8px;

    font-size: 0.83rem;

    font-weight: 700;

    transition: var(--transition);

    border: 1px solid transparent;
}

.btn-primary {

    background: var(--primary);

    color: white;

    box-shadow:
        0 15px 35px rgba(
            11,
            99,
            206,
            0.25
        );
}

.btn-primary:hover {

    background: var(--primary-light);

    transform:
        translateY(-3px);
}

.btn-outline {

    border-color:
        rgba(
            255,
            255,
            255,
            0.2
        );

    color: white;
}

.btn-outline:hover {

    border-color: white;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );
}

.btn-light {

    background: white;

    color: var(--dark);
}

.btn-light:hover {

    background: var(--primary);

    color: white;
}


/* HERO TRUST */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 18px;
}

.trust-item {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 0.78rem;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    text-transform: uppercase;

    letter-spacing: 0.1em;
}

.trust-item i {

    color: var(--primary-light);
}

.trust-line {

    height: 22px;

    width: 1px;

    background:
        rgba(
            255,
            255,
            255,
            0.15
        );
}


/* HERO VISUAL */

.hero-visual {

    min-height: 540px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.main-tech-card {

    width: min(
        420px,
        100%
    );

    min-height: 350px;

    background:
        rgba(
            16,
            31,
            51,
            0.85
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    border-radius: 20px;

    box-shadow:
        0 40px 100px
        rgba(
            0,
            0,
            0,
            0.4
        );

    backdrop-filter:
        blur(20px);

    padding: 25px;

    position: relative;

    z-index: 4;
}

.card-top {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size: 0.65rem;

    letter-spacing: 0.12em;
}

.card-top i {

    margin-left: auto;
}

.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 15px
        rgba(
            30,
            215,
            96,
            0.7
        );
}

.code-window {

    margin-top: 60px;

    padding: 30px 20px;

    border-radius: 12px;

    background:
        rgba(
            0,
            0,
            0,
            0.22
        );

    font-family:
        "Courier New",
        monospace;

    font-size: 0.78rem;

    line-height: 2.1;
}

.code-line {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );
}

.indent {

    padding-left: 25px;
}

.purple {
    color: #c084fc;
}

.blue {
    color: #60a5fa;
}

.green {
    color: #4ade80;
}

.yellow {
    color: #facc15;
}

.tech-progress {

    margin-top: 30px;
}

.progress-info {

    display: flex;

    justify-content: space-between;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size: 0.65rem;

    margin-bottom: 9px;
}

.progress-bar {

    height: 4px;

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-radius: 10px;

    overflow: hidden;
}

.progress-bar span {

    display: block;

    height: 100%;

    width: 100%;

    background: var(--primary-light);
}


/* ORBITS */

.tech-orbit {

    position: absolute;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );

    border-radius: 50%;

    animation:
        rotateOrbit 25s
        linear infinite;
}

.orbit-one {

    width: 520px;

    height: 520px;
}

.orbit-two {

    width: 650px;

    height: 650px;

    animation-duration: 35s;
}

.orbit-three {

    width: 760px;

    height: 760px;

    animation-duration: 45s;
}

@keyframes rotateOrbit {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


/* FLOATING CARDS */

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 16px;

    background:
        rgba(
            255,
            255,
            255,
            0.07
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    backdrop-filter:
        blur(15px);

    border-radius: 12px;

    z-index: 5;

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.25
        );

    animation:
        float 5s
        ease-in-out infinite;
}

.floating-icon {

    width: 35px;

    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        rgba(
            11,
            99,
            206,
            0.18
        );

    color:
        var(--primary-light);
}

.floating-card strong {

    display: block;

    font-size: 0.7rem;

    letter-spacing: 0.1em;
}

.floating-card small {

    display: block;

    color:
        rgba(
            255,
            255,
            255,
            0.4
        );

    font-size: 0.6rem;
}

.card-code {

    top: 50px;

    left: 0;
}

.card-train {

    right: -20px;

    top: 150px;

    animation-delay: 1s;
}

.card-business {

    bottom: 50px;

    left: 20px;

    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }
}

.hero-bottom {

    position: absolute;

    bottom: 25px;

    width: 100%;

    z-index: 3;
}

.hero-scroll {

    display: flex;

    align-items: center;

    gap: 15px;

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );

    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}

.scroll-line {

    width: 70px;

    height: 1px;

    background:
        rgba(
            255,
            255,
            255,
            0.15
        );

    overflow: hidden;
}

.scroll-line span {

    display: block;

    width: 25px;

    height: 100%;

    background: var(--primary-light);

    animation:
        scrollLine 2s infinite;
}

@keyframes scrollLine {

    from {
        transform: translateX(-30px);
    }

    to {
        transform: translateX(70px);
    }
}


/* =====================================================
   BRAND SECTION
===================================================== */

.brand-section {

    padding: 100px 0;

    background: var(--primary);

    color: white;
}

.brand-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.7fr;

    gap: 100px;

    align-items: center;
}

.brand-section .section-label {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );
}

.brand-section .section-label::before {

    background: white;
}

.brand-section h2 {

    font-family: "Manrope";

    font-size:
        clamp(
            2.4rem,
            5vw,
            4rem
        );

    line-height: 1.05;

    letter-spacing: -0.05em;
}

.brand-section h2 span {
    color: white;
}

.brand-text p {

    font-size: 1.2rem;

    color:
        rgba(
            255,
            255,
            255,
            0.8
        );

    margin-bottom: 25px;
}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 0.8rem;

    font-weight: 700;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.5
        );

    padding-bottom: 5px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: center;
}

.about-image {

    min-height: 550px;
}

.image-placeholder {

    height: 100%;

    min-height: 550px;

    background:
        linear-gradient(
            145deg,
            #0a1626,
            #102b4b
        );

    border-radius: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.tech-lines {

    position: absolute;

    inset: -50%;

    background-image:
        linear-gradient(
            120deg,
            transparent 45%,
            rgba(
                47,
                140,
                255,
                0.2
            ) 46%,
            transparent 47%
        );

    background-size: 90px 90px;

    transform: rotate(-20deg);
}

.about-symbol {

    position: relative;

    width: 130px;

    height: 130px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.2
        );

    border-radius: 30px;

    display: grid;

    place-items: center;

    font-family: "Manrope";

    font-size: 2.3rem;

    font-weight: 800;

    color: white;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );

    backdrop-filter: blur(10px);

    z-index: 2;
}

.image-placeholder > span {

    position: relative;

    margin-top: 25px;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size: 0.65rem;

    letter-spacing: 0.2em;
}

.about-content p {

    color: var(--muted);

    margin-bottom: 20px;
}

.about-content .large-text {

    font-family: "Manrope";

    color: var(--text);

    font-size: 1.25rem;

    line-height: 1.6;
}

.about-stats {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 15px;

    margin-top: 40px;

    padding-top: 30px;

    border-top:
        1px solid
        var(--border);
}

.stat strong {

    display: block;

    color: var(--primary);

    font-family: "Manrope";

    font-size: 2rem;

    line-height: 1;
}

.stat span {

    color: var(--muted);

    font-size: 0.7rem;

    display: block;

    margin-top: 7px;
}


/* =====================================================
   PILLARS
===================================================== */

.pillars-section {

    padding: 120px 0;

    background: var(--off-white);
}

.pillars-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 22px;
}

.pillar-card {

    background: white;

    padding: 38px;

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    position: relative;

    overflow: hidden;

    transition: var(--transition);
}

.pillar-card:hover {

    transform:
        translateY(-8px);

    box-shadow: var(--shadow);
}

.pillar-card.featured {

    background:
        var(--dark);

    color: white;

    transform:
        translateY(-18px);
}

.pillar-card.featured:hover {

    transform:
        translateY(-26px);
}

.pillar-number {

    position: absolute;

    top: 25px;

    right: 30px;

    color:
        rgba(
            11,
            99,
            206,
            0.15
        );

    font-family: "Manrope";

    font-size: 3rem;

    font-weight: 800;
}

.featured .pillar-number {

    color:
        rgba(
            255,
            255,
            255,
            0.08
        );
}

.pillar-icon {

    width: 55px;

    height: 55px;

    border-radius: 13px;

    display: grid;

    place-items: center;

    background:
        rgba(
            11,
            99,
            206,
            0.1
        );

    color: var(--primary);

    margin-bottom: 30px;
}

.featured .pillar-icon {

    background:
        rgba(
            255,
            255,
            255,
            0.1
        );

    color:
        var(--primary-light);
}

.pillar-card h3 {

    color: var(--primary);

    font-size: 1rem;

    letter-spacing: 0.1em;

    margin-bottom: 5px;
}

.featured h3 {
    color: var(--primary-light);
}

.pillar-card h4 {

    font-family: "Manrope";

    font-size: 1.15rem;

    margin-bottom: 14px;
}

.pillar-card p {

    color: var(--muted);

    font-size: 0.85rem;

    margin-bottom: 25px;
}

.featured p {

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );
}

.pillar-card li {

    position: relative;

    padding-left: 20px;

    color: var(--muted);

    font-size: 0.75rem;

    margin-bottom: 8px;
}

.featured li {

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );
}

.pillar-card li::before {

    content: "•";

    position: absolute;

    left: 0;

    color: var(--primary);
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    background: white;
}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 20px;
}

.service-card {

    padding: 32px;

    border:
        1px solid
        var(--border);

    border-radius: 15px;

    transition: var(--transition);

    position: relative;

    overflow: hidden;

    background: white;
}

.service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            transparent
        );

    transform:
        translateX(-100%);

    transition: var(--transition);
}

.service-card:hover {

    transform:
        translateY(-7px);

    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;
}

.service-number {

    font-family: "Manrope";

    color:
        #b7c1ce;

    font-size: 0.75rem;

    font-weight: 800;
}

.service-icon {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        rgba(
            11,
            99,
            206,
            0.08
        );

    color: var(--primary);
}

.service-card h3 {

    font-family: "Manrope";

    font-size: 1.25rem;

    line-height: 1.25;

    margin-bottom: 12px;
}

.service-card > p {

    color: var(--muted);

    font-size: 0.82rem;

    margin-bottom: 25px;
}

.service-card ul {

    border-top:
        1px solid
        var(--border);

    padding-top: 20px;
}

.service-card li {

    font-size: 0.72rem;

    color: var(--muted);

    padding: 5px 0;

    display: flex;

    gap: 8px;
}

.service-card li::before {

    content: "✓";

    color: var(--primary);

    font-weight: 800;
}


/* =====================================================
   PARTNERSHIP
===================================================== */

.partnership-section {

    padding: 130px 0;

    background:
        var(--dark);

    color: white;

    overflow: hidden;
}

.partnership-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 100px;

    align-items: center;
}

.partnership-content h2 {

    font-family: "Manrope";

    font-size:
        clamp(
            2.5rem,
            5vw,
            4.3rem
        );

    line-height: 1.05;

    letter-spacing: -0.05em;

    margin-bottom: 25px;
}

.partnership-content h2 span {

    color:
        var(--primary-light);
}

.partnership-content p {

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    margin-bottom: 18px;

    max-width: 600px;
}

.partnership-services {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 30px;
}

.partnership-services span {

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    padding:
        8px
        12px;

    border-radius: 5px;

    font-size: 0.65rem;

    color:
        rgba(
            255,
            255,
            255,
            0.6
        );
}


/* AFRICA ORBIT */

.partnership-visual {

    min-height: 520px;

    display: grid;

    place-items: center;

    position: relative;
}

.africa-orbit {

    width: 450px;

    height: 450px;

    position: relative;

    display: grid;

    place-items: center;
}

.orbit-circle {

    position: absolute;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );

    border-radius: 50%;
}

.circle-1 {

    width: 260px;

    height: 260px;
}

.circle-2 {

    width: 350px;

    height: 350px;
}

.circle-3 {

    width: 450px;

    height: 450px;
}

.africa-core {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background:
        rgba(
            11,
            99,
            206,
            0.15
        );

    border:
        1px solid
        rgba(
            47,
            140,
            255,
            0.3
        );

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 2;

    box-shadow:
        0 0 80px
        rgba(
            11,
            99,
            206,
            0.2
        );
}

.africa-core i {

    font-size: 2.5rem;

    color:
        var(--primary-light);

    margin-bottom: 8px;
}

.africa-core strong {

    font-size: 0.7rem;

    letter-spacing: 0.2em;
}

.africa-core small {

    color:
        rgba(
            255,
            255,
            255,
            0.4
        );

    font-size: 0.55rem;

    letter-spacing: 0.2em;
}

.orbit-node {

    position: absolute;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background:
        var(--dark-3);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    display: grid;

    place-items: center;

    color:
        var(--primary-light);

    z-index: 3;

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            0.3
        );
}

.node-1 {

    top: 15%;

    right: 10%;
}

.node-2 {

    bottom: 10%;

    right: 20%;
}

.node-3 {

    left: 4%;

    bottom: 35%;
}


/* =====================================================
   APPROACH
===================================================== */

.approach-section {
    background: var(--off-white);
}

.process {

    display: grid;

    grid-template-columns:
        repeat(
            6,
            1fr
        );

    gap: 15px;

    position: relative;
}

.process-line {

    position: absolute;

    top: 28px;

    left: 5%;

    right: 5%;

    height: 1px;

    background:
        var(--border);
}

.process-item {

    position: relative;

    z-index: 2;
}

.process-number {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: white;

    border:
        1px solid
        var(--border);

    display: grid;

    place-items: center;

    color: var(--primary);

    font-weight: 800;

    font-size: 0.75rem;

    margin-bottom: 25px;
}

.process-item h3 {

    font-family: "Manrope";

    margin-bottom: 10px;
}

.process-item p {

    font-size: 0.72rem;

    color: var(--muted);

    padding-right: 10px;
}


/* =====================================================
   WHY JAFASOL
===================================================== */

.why-section {

    background: white;
}

.why-grid {

    display: grid;

    grid-template-columns:
        0.7fr
        1.3fr;

    gap: 100px;

    align-items: start;
}

.why-intro {

    position: sticky;

    top: 130px;
}

.why-intro h2 {

    font-family: "Manrope";

    font-size:
        clamp(
            2.5rem,
            5vw,
            4rem
        );

    line-height: 1.05;

    letter-spacing: -0.05em;

    margin-bottom: 25px;
}

.why-intro h2 span {

    color: var(--primary);
}

.why-intro p {

    color: var(--muted);

    margin-bottom: 30px;
}

.why-list {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 20px;
}

.why-item {

    display: flex;

    gap: 18px;

    padding: 25px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    transition: var(--transition);
}

.why-item:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);
}

.why-icon {

    min-width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: var(--primary);

    background:
        rgba(
            11,
            99,
            206,
            0.08
        );
}

.why-item h3 {

    font-family: "Manrope";

    font-size: 0.95rem;

    margin-bottom: 5px;
}

.why-item p {

    color: var(--muted);

    font-size: 0.72rem;
}


/* =====================================================
   CLIENTS
===================================================== */

.clients-section {

    padding: 120px 0;

    background: var(--off-white);
}

.clients-grid {

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 18px;
}

.client-card {

    background: white;

    border:
        1px solid
        var(--border);

    padding: 30px;

    border-radius: 15px;

    transition: var(--transition);
}

.client-card:hover {

    transform:
        translateY(-6px);

    box-shadow: var(--shadow);
}

.client-card > i {

    color: var(--primary);

    font-size: 1.5rem;

    margin-bottom: 20px;
}

.client-card h3 {

    font-family: "Manrope";

    font-size: 1rem;

    margin-bottom: 10px;
}

.client-card p {

    color: var(--muted);

    font-size: 0.75rem;
}


/* =====================================================
   LIFECYCLE
===================================================== */

.lifecycle-section {

    padding: 100px 0;

    background: var(--dark);

    color: white;

    overflow: hidden;
}

.lifecycle-content {

    max-width: 700px;

    margin-bottom: 60px;
}

.lifecycle-content h2 {

    font-family: "Manrope";

    font-size:
        clamp(
            2.3rem,
            5vw,
            4rem
        );

    line-height: 1.05;

    letter-spacing: -0.05em;

    margin-bottom: 20px;
}

.lifecycle-content h2 span {

    color: var(--primary-light);
}

.lifecycle-content p {

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );
}

.lifecycle {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.life-item {

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    padding:
        12px
        15px;

    border-radius: 8px;

    font-size: 0.7rem;

    display: flex;

    align-items: center;

    gap: 10px;
}

.life-item span {

    color: var(--primary-light);

    font-weight: 800;
}

.life-arrow {

    color:
        rgba(
            255,
            255,
            255,
            0.25
        );
}


/* =====================================================
   QUALITY
===================================================== */

.quality-section {
    background: white;
}

.quality-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 100px;

    align-items: center;
}

.quality-grid h2 {

    font-family: "Manrope";

    font-size:
        clamp(
            2.5rem,
            5vw,
            4rem
        );

    line-height: 1;

    letter-spacing: -0.05em;

    margin-bottom: 20px;
}

.quality-grid h2 span {

    color: var(--primary);
}

.quality-grid > div:first-child p {

    color: var(--muted);

    max-width: 450px;
}

.quality-items {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.quality-items span {

    border:
        1px solid
        var(--border);

    border-radius: 6px;

    padding:
        10px
        15px;

    font-size: 0.7rem;

    color: var(--muted);

    background:
        var(--off-white);
}


/* =====================================================
   FUTURE
===================================================== */

.future-section {

    padding: 120px 0;

    background:
        #f3f6fa;
}

.future-header {

    max-width: 750px;

    margin-bottom: 60px;
}

.future-header h2 {

    font-family: "Manrope";

    font-size:
        clamp(
            2.5rem,
            5vw,
            4.2rem
        );

    line-height: 1.05;

    letter-spacing: -0.05em;

    margin-bottom: 20px;
}

.future-header h2 span {

    color: var(--primary);
}

.future-header p {

    color: var(--muted);
}

.future-grid {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 15px;
}

.future-card {

    background: white;

    border:
        1px solid
        var(--border);

    padding: 28px;

    border-radius: 13px;

    position: relative;

    min-height: 240px;

    transition: var(--transition);
}

.future-card:hover {

    transform:
        translateY(-6px);

    box-shadow: var(--shadow);
}

.future-card > span {

    position: absolute;

    top: 20px;

    right: 20px;

    color:
        #cbd5e1;

    font-size: 0.65rem;

    font-weight: 800;
}

.future-card i {

    color: var(--primary);

    font-size: 1.4rem;

    margin-bottom: 35px;
}

.future-card h3 {

    font-family: "Manrope";

    font-size: 0.95rem;

    margin-bottom: 10px;
}

.future-card p {

    color: var(--muted);

    font-size: 0.7rem;
}


/* =====================================================
   VISION / MISSION
===================================================== */

.vision-section {

    padding: 100px 0;

    background: white;
}

.vision-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap: 20px;
}

.vision-card {

    background:
        var(--off-white);

    padding: 45px;

    border-radius: 20px;

    border:
        1px solid
        var(--border);
}

.vision-icon {

    width: 60px;

    height: 60px;

    border-radius: 15px;

    background:
        rgba(
            11,
            99,
            206,
            0.08
        );

    color: var(--primary);

    display: grid;

    place-items: center;

    margin:
        15px
        0
        25px;
}

.vision-card p {

    font-family: "Manrope";

    font-size: 1rem;

    line-height: 1.7;
}

.mission-card {

    background: var(--dark);

    color: white;

    border-color: transparent;
}

.mission-card p {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );
}

.mission-card .section-label {

    color:
        var(--primary-light);
}


/* =====================================================
   VALUES
===================================================== */

.values-section {

    background: var(--off-white);
}

.values-grid {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 15px;
}

.value-card {

    background: white;

    border:
        1px solid
        var(--border);

    padding: 28px;

    border-radius: 13px;

    transition: var(--transition);
}

.value-card:hover {

    transform:
        translateY(-6px);

    box-shadow: var(--shadow);
}

.value-icon {

    width: 45px;

    height: 45px;

    border-radius: 10px;

    background:
        rgba(
            11,
            99,
            206,
            0.08
        );

    color: var(--primary);

    display: grid;

    place-items: center;

    margin-bottom: 20px;
}

.value-card h3 {

    font-family: "Manrope";

    font-size: 0.95rem;

    margin-bottom: 8px;
}

.value-card p {

    color: var(--muted);

    font-size: 0.7rem;
}


/* =====================================================
   CONTACT CTA
===================================================== */

.contact-cta {

    background:
        var(--primary);

    color: white;

    padding: 120px 0;

    position: relative;

    overflow: hidden;
}

.cta-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.06
            )
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.06
            )
            1px,
            transparent 1px
        );

    background-size: 50px 50px;

    opacity: 0.4;
}

.cta-content {

    max-width: 800px;

    margin: auto;

    text-align: center;

    position: relative;

    z-index: 2;
}

.cta-content .section-label {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    justify-content: center;
}

.cta-content .section-label::before {
    display: none;
}

.cta-content h2 {

    font-family: "Manrope";

    font-size:
        clamp(
            2.5rem,
            6vw,
            5rem
        );

    line-height: 1;

    letter-spacing: -0.06em;

    margin-bottom: 25px;
}

.cta-content h2 span {
    color: white;
}

.cta-content > p {

    max-width: 650px;

    margin:
        0
        auto
        30px;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );
}

.cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: var(--dark);

    color: white;

    padding:
        80px
        0
        25px;
}

.footer-main {

    display: grid;

    grid-template-columns:
        1.3fr
        0.7fr
        0.9fr
        1.2fr;

    gap: 50px;

    padding-bottom: 60px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
}

.footer-brand p {

    margin-top: 20px;

    color:
        rgba(
            255,
            255,
            255,
            0.6
        );

    font-size: 0.85rem;
}

.footer-pillar {

    display: inline-block;

    margin-top: 8px;

    font-size: 0.65rem;

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );

    letter-spacing: 0.08em;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.14em;

    margin-bottom: 12px;
}

.footer-column a {

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );

    font-size: 0.75rem;

    transition: var(--transition);
}

.footer-column a:hover {

    color: white;

    transform:
        translateX(3px);
}

.footer-contact p {

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );

    font-size: 0.72rem;

    display: flex;

    align-items: flex-start;

    gap: 10px;
}

.footer-contact i {

    color:
        var(--primary-light);

    margin-top: 5px;
}

.footer-contact a {
    display: inline;
}

.footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(
            255,
            255,
            255,
            0.3
        );

    font-size: 0.65rem;
}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;

    border: 0;

    border-radius: 10px;

    background: var(--primary);

    color: white;

    display: grid;

    place-items: center;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px);

    transition: var(--transition);

    z-index: 500;
}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

.back-to-top:hover {

    background:
        var(--primary-light);
}


/* =====================================================
   SCROLL ANIMATIONS
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 1050px) {

    .navbar {
        gap: 18px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-visual {
        transform: scale(0.9);
    }

    .services-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .future-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

    .values-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

    .footer-main {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}


/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 768px) {

    .container {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }

    .section {

        padding: 80px 0;
    }


    /* MOBILE NAV */

    .menu-toggle {
        display: block;
    }

    .navbar {

        position: fixed;

        inset:
            0
            0
            0
            0;

        background:
            rgba(
                7,
                17,
                31,
                0.98
            );

        backdrop-filter:
            blur(20px);

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 28px;

        transform:
            translateX(100%);

        transition:
            transform 0.4s ease;
    }

    .navbar.open {

        transform:
            translateX(0);
    }

    .nav-link {

        font-size: 1rem;
    }

    .nav-cta {

        padding:
            13px
            25px;
    }


    /* HERO */

    .hero {

        padding:
            130px
            0
            80px;
    }

    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero h1 {

        font-size:
            clamp(
                2.8rem,
                13vw,
                4rem
            );
    }

    .hero-description {

        font-size: 0.9rem;
    }

    .hero-trust {

        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-visual {

        min-height: 420px;

        transform: scale(0.85);

        margin-top: -20px;
    }

    .hero-bottom {
        display: none;
    }


    /* GENERAL GRIDS */

    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 45px;
    }

    .brand-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image {

        min-height: 400px;
    }

    .image-placeholder {

        min-height: 400px;
    }

    .about-stats {

        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

    .pillars-grid {

        grid-template-columns: 1fr;
    }

    .pillar-card.featured {

        transform: none;
    }

    .pillar-card.featured:hover {

        transform:
            translateY(-8px);
    }

    .services-grid {

        grid-template-columns: 1fr;
    }

    .partnership-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .partnership-visual {

        min-height: 400px;
    }

    .africa-orbit {

        transform: scale(0.75);
    }

    .process {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .process-line {

        top: 0;

        bottom: 0;

        left: 27px;

        width: 1px;

        height: auto;
    }

    .process-item {

        display: grid;

        grid-template-columns:
            56px
            1fr;

        column-gap: 20px;
    }

    .process-number {

        grid-row:
            span 2;

        margin: 0;
    }

    .process-item p {

        padding: 0;
    }

    .why-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .why-intro {

        position: static;
    }

    .why-list {

        grid-template-columns: 1fr;
    }

    .clients-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .quality-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .future-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .vision-grid {

        grid-template-columns: 1fr;
    }

    .values-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {

        flex-direction: column;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .hero {

        padding-top: 120px;
    }

    .hero h1 {

        font-size: 2.7rem;
    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {

        width: 100%;
    }

    .hero-visual {

        transform: scale(0.7);

        margin:
            -50px
            0;
    }

    .brand-section h2 {

        font-size: 2.4rem;
    }

    .about-stats {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .clients-grid {

        grid-template-columns: 1fr;
    }

    .future-grid {

        grid-template-columns: 1fr;
    }

    .values-grid {

        grid-template-columns: 1fr;
    }

    .life-arrow {

        display: none;
    }

    .lifecycle {

        display: grid;

        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

    .cta-buttons {

        flex-direction: column;
    }

    .cta-buttons .btn {

        width: 100%;
    }

}
.logo img{
    width: 100px;
    height: auto;
    display: block;
}
.footer-brand img{
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
@media(max-width: 768px){
    .logo img{
        width: 120px;
    }
    .footer-brand img{
        width: 100px;
    }
}