﻿/* =====================================================
   INFINIX INFORMATION SYSTEMS
   Main Website Styles
   ===================================================== */

:root {
    --infinix-primary: #0b57d0;
    --infinix-primary-dark: #063b91;
    --infinix-dark: #081120;
    --infinix-dark-light: #101c30;
    --infinix-text: #172033;
    --infinix-muted: #64748b;
    --infinix-light: #f8fafc;
    --infinix-white: #ffffff;
    --infinix-border: #e2e8f0;
}

/* General */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--infinix-text);
    background: var(--infinix-white);
}

* {
    box-sizing: border-box;
}

/* Container */
.infinix-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* =====================================================
   NAVBAR
   ===================================================== */

.infinix-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 17, 32, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

    .brand-name span {
        color: #4da3ff;
    }

.brand-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    color: #aab7ca;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-links a {
        color: #dbe5f1;
        text-decoration: none;
        font-size: 15px;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: white;
        }

.nav-button {
    background: var(--infinix-primary);
    padding: 11px 18px;
    border-radius: 7px;
    color: white !important;
    font-weight: 600;
}

    .nav-button:hover {
        background: #2871e3;
    }


/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: #ffffff;
        margin: 5px auto;
        border-radius: 2px;
        transition: all 0.3s ease;
    }


@media (max-width: 768px) {

    .infinix-navbar {
        overflow: visible !important;
    }

    .navbar-inner {
        height: 70px;
        position: static;
    }

    .infinix-logo {
        max-width: 145px;
        height: auto;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1003;
    }

    .nav-links {
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #081120;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px 20px 20px;
        box-sizing: border-box;
        z-index: 1002;
        /* Initially hidden */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

        .nav-links.active {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        .nav-links a {
            display: block;
            padding: 15px 10px;
            font-size: 16px;
            color: #dbe5f1;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

            .nav-links a:hover {
                color: #7eb8ff;
            }

    .nav-button {
        margin-top: 12px;
        text-align: center;
        border-bottom: none !important;
        padding: 14px 18px !important;
    }

    /* Hamburger to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


@media (max-width: 480px) {

    .navbar-inner {
        height: 64px;
    }

    .infinix-logo {
        max-width: 125px;
    }

    .nav-links {
        top: 64px !important;
    }
}

/* =====================================================
   HERO
   ===================================================== */

.infinix-hero {
    min-height: 100vh;
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 30%, rgba(11, 87, 208, 0.25), transparent 30%), radial-gradient(circle at 85% 70%, rgba(35, 135, 255, 0.16), transparent 28%), linear-gradient(135deg, #07101f, #0b1930 55%, #081120);
}

    .infinix-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(77, 163, 255, 0.12);
        border-radius: 50%;
        right: -180px;
        top: 80px;
    }

    .infinix-hero::after {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border: 1px solid rgba(77, 163, 255, 0.07);
        border-radius: 50%;
        right: -300px;
        top: -20px;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-eyebrow {
    display: inline-block;
    color: #7eb8ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.hero-title {
    margin: 0;
    color: white;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

    .hero-title span {
        color: #55a6ff;
    }

.hero-description {
    max-width: 700px;
    color: #b8c6d9;
    font-size: 20px;
    line-height: 1.7;
    margin: 28px 0 35px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--infinix-primary);
    color: white;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #2871e3;
        transform: translateY(-2px);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 14px 23px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: 0.3s;
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.08);
    }

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 65px;
    flex-wrap: wrap;
}

.stat-item {
    border-left: 2px solid var(--infinix-primary);
    padding-left: 16px;
}

.stat-number {
    display: block;
    color: white;
    font-size: 28px;
    font-weight: 800;
}

.stat-label {
    display: block;
    color: #8fa1b8;
    font-size: 13px;
    margin-top: 5px;
}

.infinix-logo {
    width: 220px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    display: block;
}

.brand {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .infinix-logo {
        width: 130px;
    }
}

.hero-title {
    border: none !important;
    outline: none !important;
}



@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(48px, 14vw, 68px);
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.6;
        margin-top: 30px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        margin-top: 40px;
    }

        .hero-buttons a {
            width: auto;
            min-width: 250px;
            text-align: center;
            box-sizing: border-box;
        }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 25px;
        margin-top: 70px;
    }

    .stat-item {
        min-width: 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 15px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 105px 0 60px;
    }

    .hero-title {
        font-size: clamp(46px, 13vw, 60px);
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons a {
        min-width: 0;
        width: 100%;
    }

    .hero-stats {
        gap: 35px 20px;
        margin-top: 60px;
    }
}

/* =====================================================
   OUR PURPOSE / MISSION
   ===================================================== */

.mission-section {
    padding: 120px 0;
    background: #eef4fc;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

.section-eyebrow {
    display: inline-block;
    color: var(--infinix-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mission-content h2 {
    margin: 0;
    color: var(--infinix-dark);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 800;
}

    .mission-content h2 span {
        color: var(--infinix-primary);
    }

.mission-intro {
    font-size: 20px !important;
    color: #334155 !important;
    margin-top: 30px !important;
}

.mission-content p {
    max-width: 650px;
    color: var(--infinix-muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 18px 0;
}

.mission-content strong {
    color: var(--infinix-dark);
}

.mission-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: var(--infinix-primary);
    text-decoration: none;
    font-weight: 700;
}

    .mission-link span {
        font-size: 22px;
        transition: 0.3s;
    }

    .mission-link:hover span {
        transform: translateX(6px);
    }


/* Opportunity Card */

.opportunity-card {
    padding: 42px;
    border-radius: 20px;
    background: var(--infinix-dark);
    color: white;
    box-shadow: 0 25px 60px rgba(8, 17, 32, 0.18);
}

.card-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 87, 208, 0.25);
    border: 1px solid rgba(77, 163, 255, 0.35);
    border-radius: 14px;
    color: #66b2ff;
    font-size: 32px;
}

.card-small-title {
    color: #6eaef5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.card-top h3 {
    margin: 10px 0 0;
    font-size: 28px;
    line-height: 1.3;
}

.opportunity-list {
    margin-top: 30px;
}

.opportunity-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

    .opportunity-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.opportunity-number {
    color: #55a6ff;
    font-size: 13px;
    font-weight: 800;
    padding-top: 4px;
}

.opportunity-item h4 {
    margin: 0 0 7px;
    font-size: 18px;
}

.opportunity-item p {
    margin: 0;
    color: #9aaabd;
    font-size: 14px;
    line-height: 1.6;
}


/* Mission Responsive */

@media (max-width: 900px) {

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    .mission-section {
        padding: 80px 0;
    }

    .mission-content h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .opportunity-card {
        padding: 30px 24px;
    }
}

/* =====================================================
   WHAT WE DO / SERVICES
   ===================================================== */

.services-section {
    padding: 120px 0;
    background: #ffffff;
    border-top: 1px solid #dbe7f5;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 55px;
}

    .services-header h2 {
        margin: 0;
        color: var(--infinix-dark);
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1.1;
        letter-spacing: -2px;
        font-weight: 800;
    }

        .services-header h2 span {
            color: var(--infinix-primary);
        }

    .services-header > p {
        max-width: 460px;
        margin: 0;
        color: var(--infinix-muted);
        font-size: 16px;
        line-height: 1.8;
    }

/* Service Cards */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 36px;
    min-height: 410px;
    border: 1px solid var(--infinix-border);
    border-radius: 18px;
    background: #ffffff;
    transition: 0.3s ease;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(11, 87, 208, 0.35);
        box-shadow: 0 25px 50px rgba(8, 17, 32, 0.10);
    }

.service-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #b5c1d0;
    font-size: 13px;
    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 14px;
    background: #edf4ff;
    color: var(--infinix-primary);
    font-size: 22px;
    font-weight: 800;
}

.service-card h3 {
    margin: 0 0 15px;
    color: var(--infinix-dark);
    font-size: 24px;
    font-weight: 750;
}

.service-card p {
    margin: 0;
    color: var(--infinix-muted);
    font-size: 15px;
    line-height: 1.8;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

    .service-tags span {
        padding: 7px 10px;
        border-radius: 6px;
        background: #f1f5f9;
        color: #526176;
        font-size: 12px;
        font-weight: 600;
    }

/* Services Responsive */

@media (max-width: 900px) {

    .services-header {
        display: block;
    }

        .services-header > p {
            margin-top: 25px;
        }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {

    .services-section {
        padding: 80px 0;
    }

    .services-header h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }
}

/* =====================================================
   RURAL YOUTH EMPOWERMENT
   Completely isolated from other sections
===================================================== */

.rural-empowerment-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient( circle at 85% 20%, rgba(30, 136, 229, 0.16), transparent 28% ), linear-gradient( 135deg, #07101f, #0b1930 60%, #081120 );
    color: #ffffff;
}


    /* Decorative circles */

    .rural-empowerment-section::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border: 1px solid rgba(126, 184, 255, 0.08);
        border-radius: 50%;
        left: -300px;
        bottom: -260px;
        pointer-events: none;
    }

    .rural-empowerment-section::after {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border: 1px solid rgba(126, 184, 255, 0.06);
        border-radius: 50%;
        right: -380px;
        top: -280px;
        pointer-events: none;
    }


    /* Container */

    .rural-empowerment-section .infinix-container {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
   HEADER
===================================================== */

    .rural-empowerment-section .empowerment-header {
        max-width: 760px;
    }

    .rural-empowerment-section .empowerment-eyebrow {
        color: #7eb8ff;
    }

    .rural-empowerment-section .empowerment-header h2 {
        margin: 0;
        color: #ffffff;
        font-size: clamp(48px, 6vw, 76px);
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -2px;
    }

        .rural-empowerment-section .empowerment-header h2 span {
            color: #55a6ff;
        }

    .rural-empowerment-section .empowerment-header > p {
        max-width: 650px;
        margin: 28px 0 0;
        color: #b8c6d9;
        font-size: 19px;
        line-height: 1.8;
    }


    /* =====================================================
   MAIN GRID
===================================================== */

    .rural-empowerment-section .empowerment-grid {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 90px;
        margin-top: 80px;
        align-items: start;
    }


    /* =====================================================
   STORY
===================================================== */

    .rural-empowerment-section .empowerment-story h3 {
        margin: 0 0 25px;
        max-width: 540px;
        color: #ffffff;
        font-size: 32px;
        line-height: 1.3;
        font-weight: 700;
    }

    .rural-empowerment-section .empowerment-story p {
        max-width: 560px;
        color: #aebed1;
        font-size: 16px;
        line-height: 1.9;
        margin: 0 0 22px;
    }


    /* =====================================================
   JOURNEY
===================================================== */

    .rural-empowerment-section .empowerment-journey {
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .rural-empowerment-section .journey-item {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 22px;
        padding: 0 0 30px 35px;
        position: relative;
    }

        .rural-empowerment-section .journey-item::before {
            content: "";
            position: absolute;
            left: -6px;
            top: 7px;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #55a6ff;
            box-shadow: 0 0 0 6px rgba(85, 166, 255, 0.10);
        }

    .rural-empowerment-section .journey-number {
        color: #6caeff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1px;
        padding-top: 4px;
    }

    .rural-empowerment-section .journey-content h4 {
        margin: 0 0 8px;
        color: #ffffff;
        font-size: 21px;
        font-weight: 700;
    }

    .rural-empowerment-section .journey-content p {
        margin: 0;
        max-width: 500px;
        color: #aebed1;
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
   QUOTE
===================================================== */

    .rural-empowerment-section .empowerment-quote {
        position: relative;
        margin-top: 85px;
        padding: 38px 45px 38px 105px;
        max-width: 950px;
        border-left: 3px solid #55a6ff;
        background: rgba(255, 255, 255, 0.045);
        border-radius: 0 16px 16px 0;
    }

    .rural-empowerment-section .quote-mark {
        position: absolute;
        left: 35px;
        top: 18px;
        color: #55a6ff;
        font-size: 76px;
        font-family: Georgia, serif;
        line-height: 1;
    }

    .rural-empowerment-section .empowerment-quote p {
        margin: 0;
        color: #d6e0ec;
        font-size: 21px;
        line-height: 1.6;
        font-weight: 500;
    }


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .rural-empowerment-section .empowerment-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}


@media (max-width: 768px) {

    .rural-empowerment-section {
        padding: 80px 0;
    }

        .rural-empowerment-section .empowerment-header h2 {
            font-size: 46px;
            letter-spacing: -1px;
        }

        .rural-empowerment-section .empowerment-grid {
            margin-top: 55px;
        }

        .rural-empowerment-section .empowerment-story h3 {
            font-size: 27px;
        }

        .rural-empowerment-section .journey-item {
            grid-template-columns: 50px 1fr;
            padding-left: 25px;
        }

        .rural-empowerment-section .empowerment-quote {
            margin-top: 55px;
            padding: 30px 25px 30px 65px;
        }

        .rural-empowerment-section .quote-mark {
            left: 20px;
            font-size: 56px;
        }

        .rural-empowerment-section .empowerment-quote p {
            font-size: 17px;
        }
}

/* =====================================================
   EXPERIENCE & STRENGTH
   ===================================================== */

.experience-section {
    padding: 120px 0;
    background: #ffffff;
}

.experience-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: end;
}

.experience-heading h2 {
    margin: 0;
    color: var(--infinix-dark);
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

    .experience-heading h2 span {
        color: var(--infinix-primary);
    }

.experience-intro {
    padding-bottom: 5px;
}

    .experience-intro p {
        margin: 0 0 18px;
        color: var(--infinix-muted);
        font-size: 16px;
        line-height: 1.85;
    }

        .experience-intro p:last-child {
            margin-bottom: 0;
        }


/* Experience Cards */

.experience-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.experience-number-card {
    position: relative;
    padding: 38px;
    min-height: 310px;
    border: 1px solid #dfe7f0;
    border-radius: 18px;
    background: #f9fbfe;
    overflow: hidden;
}

    .experience-number-card.featured {
        background: var(--infinix-dark);
        border-color: var(--infinix-dark);
    }

.experience-number {
    margin-bottom: 25px;
    color: var(--infinix-primary);
    font-size: clamp(58px, 6vw, 82px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}

    .experience-number span {
        font-size: 0.7em;
    }

.experience-number-card h3 {
    margin: 0 0 14px;
    color: var(--infinix-dark);
    font-size: 21px;
    font-weight: 750;
}

.experience-number-card p {
    margin: 0;
    color: var(--infinix-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* Featured Card */

.experience-number-card.featured .experience-number {
    color: #7eb8ff;
}

.experience-number-card.featured h3 {
    color: white;
}

.experience-number-card.featured p {
    color: #b8c6d9;
}

.experience-number-card.featured::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(126, 184, 255, 0.12);
    border-radius: 50%;
    right: -110px;
    bottom: -110px;
}


/* Bottom Statement */

.experience-statement {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-top: 70px;
    max-width: 900px;
}

.statement-line {
    width: 3px;
    min-height: 100%;
    background: var(--infinix-primary);
}

.experience-statement p {
    margin: 0;
    color: #536276;
    font-size: 19px;
    line-height: 1.8;
}

.experience-statement strong {
    color: var(--infinix-dark);
}


/* Responsive */

@media (max-width: 900px) {

    .experience-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experience-numbers {
        grid-template-columns: 1fr;
    }

    .experience-number-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {

    .experience-section {
        padding: 80px 0;
    }

    .experience-heading h2 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .experience-numbers {
        margin-top: 50px;
    }

    .experience-statement {
        grid-template-columns: 25px 1fr;
        gap: 18px;
        margin-top: 50px;
    }

        .experience-statement p {
            font-size: 17px;
        }
}

/* =====================================================
   OUR IMPACT
   ===================================================== */

.impact-section {
    padding: 120px 0;
    background: #0b1729;
    color: white;
    position: relative;
    overflow: hidden;
}


    /* Subtle Background Decoration */

    .impact-section::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border: 1px solid rgba(126, 184, 255, 0.07);
        border-radius: 50%;
        right: -280px;
        top: -250px;
    }

    .impact-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        border: 1px solid rgba(126, 184, 255, 0.05);
        border-radius: 50%;
        left: -250px;
        bottom: -280px;
    }


/* Header */

.impact-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: end;
}

.section-eyebrow-light {
    color: #7eb8ff;
}

.impact-header h2 {
    margin: 0;
    color: white;
    font-size: clamp(46px, 5.5vw, 74px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

    .impact-header h2 span {
        color: #7eb8ff;
    }

.impact-header > p {
    margin: 0;
    color: #aebed1;
    font-size: 17px;
    line-height: 1.85;
}


/* Impact Journey */

.impact-journey {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    align-items: stretch;
    margin-top: 80px;
}

.impact-item {
    position: relative;
    min-height: 300px;
    padding: 34px 28px;
    border: 1px solid rgba(126, 184, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.impact-number {
    margin-bottom: 28px;
    color: #6faeff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.impact-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(126, 184, 255, 0.25);
    border-radius: 14px;
    background: rgba(35, 100, 190, 0.16);
    color: #7eb8ff;
    font-size: 24px;
    font-weight: 700;
}

.impact-item h3 {
    margin: 0 0 13px;
    color: white;
    font-size: 22px;
    font-weight: 750;
}

.impact-item p {
    margin: 0;
    color: #aebed1;
    font-size: 14px;
    line-height: 1.8;
}


/* Connectors */

.impact-connector {
    position: relative;
    min-height: 2px;
    align-self: center;
    background: linear-gradient( to right, rgba(126, 184, 255, 0.45), rgba(126, 184, 255, 0.08) );
}

    .impact-connector::after {
        content: "→";
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-52%);
        color: #7eb8ff;
        font-size: 18px;
    }


/* Footer Statement */

.impact-footer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 3px 1fr;
    gap: 34px;
    max-width: 950px;
    margin-top: 80px;
}

.impact-footer-line {
    background: #4c96f0;
}

.impact-footer-label {
    margin-bottom: 15px;
    color: #7eb8ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.impact-footer p {
    margin: 0;
    color: #c1cede;
    font-size: 21px;
    line-height: 1.65;
}

.impact-footer strong {
    color: white;
}


/* Responsive */

@media (max-width: 1100px) {

    .impact-journey {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .impact-connector {
        display: none;
    }
}

@media (max-width: 900px) {

    .impact-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .impact-section {
        padding: 80px 0;
    }

    .impact-header h2 {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .impact-journey {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .impact-item {
        min-height: auto;
    }

    .impact-footer {
        grid-template-columns: 3px 1fr;
        gap: 20px;
        margin-top: 50px;
    }

        .impact-footer p {
            font-size: 18px;
        }
}

/* =========================================
   SECTION 7 - CONTACT
========================================= */

.contact-section {
    background: #f4f6f9;
    padding: 130px 0;
    position: relative;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: center;
}


/* LEFT */

.contact-left {
    max-width: 480px;
}

.section-eyebrow {
    color: #245da8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-title {
    margin: 0;
    color: #142033;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

    .contact-title span {
        color: #2d6fbe;
        display: block;
    }

.contact-description {
    margin: 28px 0 0;
    color: #596779;
    font-size: 17px;
    line-height: 1.8;
    max-width: 460px;
}


/* RIGHT CARD */

.contact-card {
    background: #101c2d;
    border-radius: 18px;
    padding: 55px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(20, 32, 51, 0.12);
}

    .contact-card::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(90, 154, 230, 0.15);
        border-radius: 50%;
        right: -100px;
        bottom: -110px;
    }

.contact-card-label {
    color: #78adf0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.contact-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

    .contact-card h3 span {
        color: #73aaf0;
    }

.contact-card p {
    color: #aebdce;
    font-size: 15px;
    line-height: 1.7;
    margin: 24px 0 30px;
    position: relative;
    z-index: 1;
}


/* BUTTONS */

.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

    .btn-outline-dark:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.45);
    }


/* RESPONSIVE */

@media (max-width: 900px) {

    .contact-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-section {
        padding: 90px 30px;
    }
}

@media (max-width: 600px) {

    .contact-section {
        padding: 75px 20px;
    }

    .contact-card {
        padding: 35px 28px;
    }

    .contact-actions {
        flex-direction: column;
    }

        .contact-actions a {
            width: 100%;
        }
}

/* =========================================
   SECTION 8 - FOOTER
========================================= */

.site-footer {
    background: #0c1727;
    padding: 75px 0 28px;
    color: #ffffff;
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 65px;
    padding-bottom: 60px;
}


/* BRAND */

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    width: 180px;
    height: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-brand p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}


/* COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

    .footer-column h4 {
        margin: 0 0 8px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
    }

    .footer-column a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s ease;
    }

        .footer-column a:hover {
            color: #7eb8ff;
        }


/* BOTTOM */

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #718096;
    font-size: 13px;
}

.footer-tagline {
    color: #7eb8ff;
    font-weight: 600;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .site-footer {
        padding: 65px 30px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {

    .site-footer {
        padding: 55px 20px 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        width: 165px;
    }
}

/* =====================================================
   SOFTWARE DEVELOPMENT
   ===================================================== */

.software-development-section {
    padding: 130px 0;
    background: #0b1728;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    /* Background decoration */
    .software-development-section::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border: 1px solid rgba(77, 163, 255, 0.10);
        border-radius: 50%;
        top: -350px;
        right: -220px;
    }

.software-development-header {
    max-width: 720px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

    .software-development-header .section-eyebrow {
        color: #78adf2;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 4px;
        margin-bottom: 22px;
    }

    .software-development-header h2 {
        margin: 0 0 28px;
        font-size: clamp(46px, 6vw, 78px);
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -2px;
    }

        .software-development-header h2 span {
            color: #4da3ff;
        }

    .software-development-header p {
        max-width: 650px;
        margin: 0;
        color: #aebed1;
        font-size: 18px;
        line-height: 1.8;
    }


/* Grid */

.software-development-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}


/* Card */

.software-development-card {
    min-height: 330px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(125, 164, 210, 0.18);
    border-radius: 18px;
    position: relative;
    transition: 0.3s ease;
}

    .software-development-card:hover {
        transform: translateY(-6px);
        border-color: rgba(77, 163, 255, 0.5);
        background: rgba(255, 255, 255, 0.06);
    }

    .software-development-card.featured {
        background: #111f34;
    }

.service-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #7190b4;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    border-radius: 14px;
    background: rgba(77, 163, 255, 0.10);
    border: 1px solid rgba(77, 163, 255, 0.25);
    color: #70adf4;
    font-size: 24px;
    font-weight: 700;
}

.software-development-card h3 {
    margin: 0 0 16px;
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
}

.software-development-card p {
    margin: 0;
    color: #aebed1;
    font-size: 15px;
    line-height: 1.75;
}


/* Bottom statement */

.software-development-footer {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    max-width: 900px;
    margin-top: 70px;
    position: relative;
    z-index: 1;
}

.footer-line {
    width: 3px;
    min-width: 3px;
    height: 76px;
    background: #4da3ff;
}

.software-development-footer p {
    margin: 0;
    color: #b9c6d6;
    font-size: 17px;
    line-height: 1.75;
}

.software-development-footer strong {
    color: #ffffff;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

    .software-development-section {
        padding: 100px 0;
    }

    .software-development-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-development-card {
        min-height: 300px;
    }
}


@media (max-width: 600px) {

    .software-development-section {
        padding: 80px 0;
    }

    .software-development-header {
        margin-bottom: 45px;
    }

        .software-development-header h2 {
            font-size: 48px;
            letter-spacing: -1px;
        }

        .software-development-header p {
            font-size: 17px;
        }

    .software-development-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .software-development-card {
        min-height: auto;
        padding: 28px;
    }

    .service-icon {
        margin-bottom: 30px;
    }

    .software-development-footer {
        gap: 20px;
        margin-top: 50px;
    }

    .footer-line {
        height: 105px;
    }
}

/* =====================================================
   TECHNOLOGY SERVICES
   ===================================================== */

.technology-services-section {
    background: #f4f5f7;
    padding: 90px 0 100px;
    color: #17263a;
}


/* =====================================================
   HEADER
   ===================================================== */

.technology-header {
    margin-bottom: 45px;
}

.technology-services-section .section-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #315985;
    margin-bottom: 18px;
}

.technology-title {
    margin: 0 0 20px;
    max-width: 620px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #17263a;
}

.technology-intro {
    max-width: 950px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #52657b;
}


/* =====================================================
   SERVICES LIST
   ===================================================== */

.technology-service-list {
    border-top: 1px solid rgba(23, 38, 58, 0.15);
}


/* =====================================================
   SERVICE ROW
   ===================================================== */

.tech-service-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 25px;
    min-height: 150px;
    padding: 32px 25px;
    border-bottom: 1px solid rgba(23, 38, 58, 0.15);
    transition: background 0.3s ease, transform 0.3s ease;
}

    .tech-service-row:hover {
        background: rgba(49, 89, 133, 0.05);
    }


/* =====================================================
   ACTIVE SERVICE ROW
   ===================================================== */

.tech-service-row-active {
    background: #26374d;
    color: white;
}

    .tech-service-row-active:hover {
        background: #2b4059;
    }


/* =====================================================
   NUMBER
   ===================================================== */

.tech-service-number {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #315985;
}

.tech-service-row-active .tech-service-number {
    color: #8bb9ee;
}


/* =====================================================
   CONTENT
   ===================================================== */

.tech-service-content h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b2b40;
}

.tech-service-content p {
    margin: 0;
    max-width: 850px;
    font-size: 16px;
    line-height: 1.65;
    color: #5b6d80;
}


/* Active Content */

.tech-service-row-active .tech-service-content h3 {
    color: #ffffff;
}

.tech-service-row-active .tech-service-content p {
    color: #c6d1dd;
}


/* =====================================================
   ARROW
   ===================================================== */

.tech-service-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b7c2ce;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 400;
    color: #315985;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.tech-service-row:hover .tech-service-arrow {
    transform: translateX(4px);
}

.tech-service-row-active .tech-service-arrow {
    background: #315f9c;
    border-color: #3f73b4;
    color: white;
}


/* =====================================================
   PRACTICAL APPROACH
   ===================================================== */

.tech-practical {
    margin-top: 65px;
    padding-top: 55px;
    padding-bottom: 15px;
    border-top: 1px solid rgba(23, 38, 58, 0.15);
}

.tech-practical-content {
    max-width: 1000px;
}

    .tech-practical-content .section-eyebrow {
        margin-bottom: 18px;
    }

    .tech-practical-content p {
        margin: 0;
        font-size: 18px;
        line-height: 1.8;
        color: #52657b;
    }

    .tech-practical-content strong {
        color: #17263a;
        font-weight: 700;
    }


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 768px) {

    .technology-services-section {
        padding: 70px 0 80px;
    }

    .technology-header {
        margin-bottom: 35px;
    }

    .technology-services-section .section-eyebrow {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .technology-title {
        font-size: 42px;
    }

    .technology-intro {
        font-size: 17px;
        line-height: 1.7;
    }

    .tech-service-row {
        grid-template-columns: 65px minmax(0, 1fr) 50px;
        gap: 15px;
        min-height: auto;
        padding: 30px 15px;
    }

    .tech-service-content h3 {
        font-size: 24px;
    }

    .tech-service-content p {
        font-size: 15px;
    }

    .tech-service-arrow {
        width: 44px;
        height: 44px;
        font-size: 21px;
    }

    .tech-practical {
        margin-top: 50px;
        padding-top: 45px;
    }

    .tech-practical-content p {
        font-size: 17px;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 576px) {

    .technology-services-section {
        padding: 60px 0 70px;
    }

    .technology-title {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .technology-intro {
        font-size: 16px;
    }

    .tech-service-row {
        grid-template-columns: 1fr 48px;
        gap: 15px;
        padding: 28px 12px;
    }

    .tech-service-number {
        grid-column: 1 / 2;
        font-size: 12px;
        margin-bottom: -8px;
    }

    .tech-service-content {
        grid-column: 1 / 2;
    }

    .tech-service-arrow {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 42px;
        height: 42px;
    }

    .tech-service-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .tech-service-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .tech-practical {
        margin-top: 45px;
        padding-top: 40px;
        padding-bottom: 0;
    }

    .tech-practical-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =========================================================
   IT TALENT SOLUTIONS
========================================================= */

.talent-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient( circle at 85% 20%, rgba(30, 136, 229, 0.16), transparent 28% ), linear-gradient( 135deg, #07101f, #0b1930 60%, #081120 );
    color: #ffffff;
}

    .talent-section::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        top: -250px;
        right: -180px;
        border-radius: 50%;
        background: rgba(54, 120, 196, 0.08);
        filter: blur(80px);
        pointer-events: none;
    }

.talent-wrapper {
    position: relative;
    z-index: 1;
    width: min(100% - 120px, 1180px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.talent-header {
    max-width: 900px;
}

.talent-section .section-label {
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #8fb9e8;
}

.talent-header h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(58px, 6.8vw, 98px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -3px;
    color: #f7f9fc;
}

    .talent-header h2 span {
        background: linear-gradient( 90deg, #4d8ed9, #8ac0f5 );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.talent-intro {
    max-width: 760px;
    margin: 28px 0 55px;
    font-size: 18px;
    line-height: 1.75;
    color: #b8c7d8;
}


/* =========================================================
   TALENT CARDS
========================================================= */

.talent-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.talent-card {
    position: relative;
    min-height: 360px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(126, 171, 217, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

    .talent-card.active {
        background: rgba(64, 99, 140, 0.55);
        border-color: rgba(110, 169, 230, 0.38);
    }

    .talent-card:hover {
        transform: translateY(-5px);
        border-color: rgba(117, 172, 232, 0.55);
        background: rgba(255, 255, 255, 0.09);
    }


/* =========================================================
   CARD TOP
========================================================= */

.talent-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
}

.card-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #8fb9e8;
}

.talent-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(126, 171, 217, 0.25);
    border-radius: 14px;
    color: #8fb9e8;
    font-size: 20px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.talent-card-content h3 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff !important;
}

.talent-card-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #c3cfdd !important;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.talent-card-footer {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8fb9e8 !important;
}


/* =========================================================
   BUILDING CAPABILITY
========================================================= */

.talent-message {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    margin-top: 70px;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.message-symbol {
    font-size: 40px;
    line-height: 1;
    color: #75ace8;
}

.message-content {
    max-width: 1000px;
}

    .message-content .section-label {
        margin-bottom: 16px;
    }

    .message-content p {
        max-width: 900px;
        margin: 0;
        font-size: 18px;
        line-height: 1.7;
        color: #b8c7d8 !important;
    }

    .message-content strong {
        color: #ffffff !important;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .talent-wrapper {
        width: min(100% - 50px, 1180px);
    }

    .talent-cards {
        grid-template-columns: 1fr;
    }

    .talent-card {
        min-height: 300px;
    }
}


@media (max-width: 600px) {

    .talent-section {
        padding: 90px 0;
    }

    .talent-wrapper {
        width: min(100% - 32px, 1180px);
    }

    .talent-section .section-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .talent-header h2 {
        font-size: clamp(48px, 13vw, 68px);
        letter-spacing: -2px;
    }

    .talent-intro {
        margin-bottom: 40px;
        font-size: 17px;
    }

    .talent-message {
        grid-template-columns: 40px 1fr;
        gap: 18px;
    }

    .message-symbol {
        font-size: 32px;
    }

    .talent-card {
        padding: 26px;
    }

    .talent-card-content h3 {
        font-size: 25px;
    }
}

/* =========================================================
   EMPOWERMENT / OUR PURPOSE
========================================================= */

.empowerment-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient( circle at 85% 20%, rgba(44, 111, 184, 0.12), transparent 30% ), linear-gradient( 135deg, #f4f7fb 0%, #e8eef6 50%, #f7f9fc 100% );
    color: #18283d;
}

.empowerment-container {
    position: relative;
    z-index: 1;
    width: min(100% - 120px, 1180px);
    margin: 0 auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.empowerment-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #315a88;
}

    .empowerment-label span:first-child {
        font-size: 11px;
        letter-spacing: 1px;
        color: #5c7fa7;
    }


/* =========================================================
   MAIN HEADING
========================================================= */

.empowerment-header {
    max-width: 900px;
}

    .empowerment-header h2 {
        margin: 0;
        font-size: clamp(58px, 6.8vw, 98px);
        line-height: 0.98;
        font-weight: 800;
        letter-spacing: -3px;
        color: #17263a;
    }

        .empowerment-header h2 span {
            background: linear-gradient( 90deg, #235da8, #5c91cf );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


/* =========================================================
   CONTENT
========================================================= */

.empowerment-content {
    max-width: 940px;
    margin-top: 45px;
}

    .empowerment-content p {
        max-width: 900px;
        margin: 0 0 22px;
        font-size: 18px;
        line-height: 1.8;
        color: #536a84;
    }

    .empowerment-content .empowerment-intro {
        max-width: 980px;
        font-size: 27px;
        line-height: 1.55;
        font-weight: 400;
        color: #263b54;
    }

    .empowerment-content strong {
        font-weight: 700;
        color: #17263a;
    }


/* =========================================================
   CTA LINK
========================================================= */

.empowerment-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #235da8;
    text-decoration: none;
    transition: color 0.25s ease;
}

    .empowerment-link span {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(35, 93, 168, 0.35);
        border-radius: 50%;
        font-size: 20px;
        transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .empowerment-link:hover {
        color: #17263a;
    }

        .empowerment-link:hover span {
            transform: translateX(5px);
            background: #235da8;
            border-color: #235da8;
            color: #ffffff;
        }


/* =========================================================
   FOOTER STATEMENT
========================================================= */

.empowerment-footer {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    max-width: 1100px;
    margin-top: 80px;
    padding-top: 42px;
    border-top: 1px solid rgba(35, 70, 110, 0.14);
}

.empowerment-plus {
    font-size: 40px;
    line-height: 1;
    color: #4b8ed1;
}

.empowerment-footer-label {
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #315a88;
}

.empowerment-footer p {
    max-width: 920px;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #536a84;
}

.empowerment-footer strong {
    color: #17263a;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .empowerment-container {
        width: min(100% - 50px, 1180px);
    }

    .empowerment-header h2 {
        font-size: clamp(52px, 9vw, 78px);
    }

    .empowerment-content .empowerment-intro {
        font-size: 23px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .empowerment-section {
        padding: 90px 0;
    }

    .empowerment-container {
        width: min(100% - 32px, 1180px);
    }

    .empowerment-label {
        margin-bottom: 22px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .empowerment-header h2 {
        font-size: clamp(48px, 13vw, 68px);
        letter-spacing: -2px;
    }

    .empowerment-content {
        margin-top: 32px;
    }

        .empowerment-content p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.75;
        }

        .empowerment-content .empowerment-intro {
            font-size: 20px;
            line-height: 1.55;
        }

    .empowerment-link {
        gap: 12px;
        font-size: 15px;
    }

        .empowerment-link span {
            width: 38px;
            height: 38px;
        }

    .empowerment-footer {
        grid-template-columns: 40px 1fr;
        gap: 18px;
        margin-top: 60px;
        padding-top: 32px;
    }

    .empowerment-plus {
        font-size: 32px;
    }

    .empowerment-footer-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .empowerment-footer p {
        font-size: 16px;
    }
}