/* ============================================================
   MATHUMBU CONSULTING IT SOLUTIONS
   MAIN APPLICATION STYLESHEET
   ============================================================ */


/* ============================================================
   VARIABLES
   ============================================================ */

:root {
    --navy: #12305d;
    --navy-mid: #174575;
    --dark: #071a36;
    --dark-soft: #0d274d;

    --blue: #0798e8;
    --blue-dark: #067fc3;
    --light-blue: #37c4ff;

    --white: #ffffff;

    --background: #f5f8fc;
    --background-light: #f9fbfd;
    --background-blue: #edf8ff;

    --text: #101828;
    --text-dark: #0d274d;

    --muted: #667085;
    --muted-light: #8492a6;

    --border: #e4e9f0;
    --border-blue: #cceafa;

    --success: #067647;
    --success-bg: #ecfdf3;

    --warning: #b54708;
    --warning-bg: #fffaeb;

    --danger: #b42318;
    --danger-bg: #fef3f2;

    --shadow-small:
        0 6px 20px rgba(18, 48, 93, 0.06);

    --shadow:
        0 20px 50px rgba(18, 48, 93, 0.10);

    --shadow-large:
        0 35px 85px rgba(7, 26, 54, 0.18);

    --radius-small: 10px;
    --radius: 18px;
    --radius-large: 28px;
}


/* ============================================================
   RESET
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


/* ============================================================
   PUBLIC WEBSITE HEADER
   ============================================================ */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    min-height: 88px;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid #e8edf4;

    box-shadow:
        0 4px 20px
        rgba(7, 26, 54, 0.05);

    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* ============================================================
   PUBLIC HEADER LOGO
   ============================================================ */

.site-logo {
    width: 76px;
    height: 76px;

    flex: 0 0 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #ffffff;

    border: 3px solid #edf2f7;

    box-shadow:
        0 5px 18px rgba(18, 48, 93, 0.10);
}

.site-logo img {
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;

    border-radius: 50%;

    display: block;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.main-nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 5px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 15px;

    color: #16345d;

    font-size: 14px;

    font-weight: 600;

    border-radius: 9px;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.main-nav a:not(.admin-button):hover {
    color: var(--blue);

    background: #f0f9ff;
}

.main-nav a:not(.admin-button)::after {
    content: "";

    position: absolute;

    left: 15px;

    right: 15px;

    bottom: 5px;

    height: 2px;

    border-radius: 20px;

    background: var(--blue);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.2s ease;
}

.main-nav a:not(.admin-button):hover::after {
    transform: scaleX(1);
}


/* ============================================================
   ADMIN PORTAL BUTTON
   ============================================================ */

.main-nav .admin-button {
    margin-left: 10px;

    padding: 12px 21px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--blue)
        );

    border-radius: 10px;

    box-shadow:
        0 8px 24px
        rgba(7, 152, 232, 0.22);
}

.main-nav .admin-button:hover {
    color: var(--white);

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(7, 152, 232, 0.30);
}


/* ============================================================
   GENERAL BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 13px 22px;

    border: 0;

    border-radius: 11px;

    font: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn-primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--blue)
        );

    box-shadow:
        0 10px 28px
        rgba(7, 152, 232, 0.20);
}

.btn-primary:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 14px 32px
        rgba(7, 152, 232, 0.27);
}

.btn-secondary {
    color: var(--navy);

    background: var(--white);

    border:
        1px solid var(--border);
}

.btn-secondary:hover {
    color: var(--blue);

    border-color:
        #a8d9f4;
}

.full {
    width: 100%;
}


/* ============================================================
   HOME HERO
   ============================================================ */

.mc-hero {
    position: relative;

    min-height: 690px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(55, 196, 255, 0.12),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f8fcff 52%,
            #edf8ff 100%
        );
}

.mc-hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(380px, 0.88fr);

    gap: 80px;

    align-items: center;

    padding-top: 85px;

    padding-bottom: 85px;
}

.mc-hero-content {
    min-width: 0;
}

.hero-tag {
    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    margin-bottom: 24px;

    color: #087fc5;

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid #cdeafa;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.15em;
}

.mc-hero-content h1 {
    max-width: 720px;

    margin: 0 0 28px;

    color: #102d56;

    font-size:
        clamp(
            52px,
            5.2vw,
            78px
        );

    font-weight: 750;

    line-height: 0.99;

    letter-spacing: -0.055em;
}

.mc-hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #105a99,
            var(--blue)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    -webkit-text-fill-color:
        transparent;
}

.mc-hero-content > p {
    max-width: 650px;

    margin: 0;

    color: #66758a;

    font-size: 18px;

    line-height: 1.75;
}


/* ============================================================
   HERO BUTTONS
   ============================================================ */

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

.hero-primary,
.hero-secondary {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 22px;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 700;

    transition:
        all 0.25s ease;
}

.hero-primary {
    gap: 15px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #078fdf
        );

    box-shadow:
        0 12px 30px
        rgba(7, 143, 223, 0.22);
}

.hero-primary:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 16px 34px
        rgba(7, 143, 223, 0.30);
}

.hero-secondary {
    color: var(--navy);

    background: var(--white);

    border:
        1px solid #dce5ef;
}

.hero-secondary:hover {
    color: var(--blue);

    border-color:
        #94d3f4;
}


/* ============================================================
   HERO FEATURES
   ============================================================ */

.hero-features {
    display: flex;

    flex-wrap: wrap;

    gap: 38px;

    margin-top: 54px;
}

.hero-features div {
    padding-left: 15px;

    border-left:
        2px solid var(--blue);
}

.hero-features strong,
.hero-features span {
    display: block;
}

.hero-features strong {
    color: var(--navy);

    font-size: 14px;
}

.hero-features span {
    margin-top: 4px;

    color: #7a8697;

    font-size: 11px;
}


/* ============================================================
   HERO TECH CARD
   ============================================================ */

.hero-tech {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.tech-card-main {
    position: relative;

    width: 430px;
    min-height: 445px;

    padding:
        85px 42px
        42px;

    overflow: visible;

    color: #ffffff;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(28, 174, 255, 0.55),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #071b38,
            #123d72
        );

    box-shadow:
        0 40px 85px
        rgba(12, 42, 79, 0.26);
}

.tech-label {
    color: #6fd1ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.17em;
}

.tech-card-main h2 {
    max-width: 330px;

    margin: 20px 0 38px;

    color: var(--white);

    font-size: 42px;

    line-height: 1.04;

    letter-spacing: -0.04em;
}

.tech-lines {
    display: grid;

    gap: 8px;

    margin-bottom: 35px;
}

.tech-lines span {
    display: block;

    width: 100%;

    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #38c6ff,
            transparent
        );
}

.tech-lines span:nth-child(2) {
    width: 74%;
}

.tech-lines span:nth-child(3) {
    width: 48%;
}

.tech-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 10px;
}

.tech-grid div {
    padding: 15px;

    color: var(--white);

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 12px;

    font-size: 12px;
}

.tech-grid span {
    display: block;

    margin-bottom: 5px;

    color: #62ccff;

    font-size: 10px;
}



/* ============================================================
   HERO BACKGROUND EFFECTS
   ============================================================ */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.hero-glow-one {
    width: 450px;

    height: 450px;

    right: -160px;

    top: -100px;

    background:
        rgba(55, 196, 255, 0.12);
}

.hero-glow-two {
    width: 300px;

    height: 300px;

    left: -130px;

    bottom: -150px;

    background:
        rgba(18, 62, 112, 0.08);
}


/* ============================================================
   GENERAL SECTIONS
   ============================================================ */

.section {
    padding: 90px 0;
}

.soft-section {
    background:
        var(--background);
}

.section-label,
.eyebrow {
    display: inline-block;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* ==========================================================
   SERVICES PAGE - COMPACT CARDS
   ========================================================== */

.services-page-section {
    padding: 45px 0 65px;
    background: #ffffff;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* CARD */

.service-detail-card {
    position: relative;

    display: flex;
    flex-direction: column;

    /* Much smaller */
    min-height: 275px;

    padding: 22px 24px;

    background: #ffffff;

    border: 1px solid #dce6f0;
    border-radius: 16px;

    box-shadow:
        0 6px 20px rgba(18, 48, 93, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-detail-card:hover {
    transform: translateY(-3px);

    border-color: #9bd9f8;

    box-shadow:
        0 12px 28px rgba(18, 48, 93, 0.09);
}


/* ICON */

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 14px;

    background: linear-gradient(
        135deg,
        #edf9ff,
        #dff4ff
    );

    color: #0798e8;

    border: 1px solid #cceafa;
    border-radius: 11px;
}

.service-icon svg {
    width: 22px;
    height: 22px;
}


/* TITLE */

.service-detail-card h2 {
    margin: 0 0 8px;

    color: #102e58;

    font-size: 20px;
    font-weight: 750;

    line-height: 1.2;
    letter-spacing: -0.02em;
}


/* DESCRIPTION */

.service-detail-card > p {
    margin: 0 0 12px;

    color: #68768b;

    font-size: 13px;
    line-height: 1.5;
}


/* LIST */

.service-detail-card ul {
    margin: 0 0 14px;
    padding: 0;

    list-style: none;
}

.service-detail-card li {
    position: relative;

    margin-bottom: 5px;

    padding-left: 20px;

    color: #42526a;

    font-size: 12.5px;
    line-height: 1.35;
}

.service-detail-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #0798e8;

    font-size: 12px;
    font-weight: 800;
}


/* LINK */

.service-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-top: auto;

    color: #087fc4;

    font-size: 12.5px;
    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}

.service-link span {
    font-size: 15px;
}

.service-link:hover {
    gap: 10px;
    color: #102e58;
}


/* TABLET */

@media (max-width: 900px) {

    .services-page-grid {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .services-page-section {
        padding: 35px 0 50px;
    }

    .service-detail-card {
        min-height: auto;
        padding: 20px;
    }

    .service-detail-card h2 {
        font-size: 19px;
    }

}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .services-page-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .services-page-section {
        padding: 45px 0 70px;
    }

    .service-detail-card {
        min-height: auto;
        padding: 28px;
    }

    .service-detail-card h2 {
        font-size: 24px;
    }

}
/* ============================================================
   SERVICES MAIN LAYOUT
   PROJECT CTA + SERVICE CARDS
   ============================================================ */

.services-content-layout {
    display: grid;

    grid-template-columns:
        240px
        minmax(0, 1fr);

    gap: 22px;

    align-items: stretch;
}


/* ============================================================
   PROJECT CTA - LEFT SIDE
   ============================================================ */

.services-project-card {
    position: sticky;
    top: 115px;

    align-self: start;

    min-height: 100%;

    padding: 26px 22px;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(55, 196, 255, 0.30),
            transparent 35%
        ),
        linear-gradient(
            160deg,
            #071a36,
            #123d72
        );

    border-radius: 18px;

    box-shadow:
        0 14px 35px
        rgba(18, 48, 93, 0.16);
}


/* Decorative circle */

.services-project-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -85px;
    bottom: -75px;

    border-radius: 50%;

    background:
        rgba(55, 196, 255, 0.12);
}


/* Label */

.services-project-card .section-label {
    position: relative;
    z-index: 2;

    color: #55caff;

    font-size: 10px;
}


/* Heading */

.services-project-card h2 {
    position: relative;
    z-index: 2;

    margin: 20px 0 16px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.05;

    letter-spacing: -0.035em;
}


/* Paragraph */

.services-project-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #bfd0e1;

    font-size: 13px;

    line-height: 1.65;
}


/* Button */

.project-side-button {
    position: relative;
    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    padding: 12px 15px;

    color: #12305d;

    background: #ffffff;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        gap 0.2s ease;
}


.project-side-button:hover {
    gap: 14px;

    transform:
        translateY(-2px);
}


/* ============================================================
   SERVICE GRID
   ============================================================ */

.services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 18px;
}
/* ============================================================
   PAGE HEADERS
   ABOUT / TEAM / CONTACT
   ============================================================ */

.page-header {
    padding:
        90px 0 75px;

    background:
        radial-gradient(
            circle at 80% 10%,
            #ddf4ff,
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f6fbff,
            var(--white)
        );
}

.page-header h1 {
    max-width: 850px;

    margin: 15px 0 20px;

    color: #102e58;

    font-size:
        clamp(
            42px,
            5vw,
            65px
        );

    line-height: 1.03;

    letter-spacing: -0.045em;
}

.page-header p {
    max-width: 720px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}


/* ============================================================
   ABOUT
   ============================================================ */

.content-two {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 70px;

    align-items: start;
}

.content-two h2 {
    margin-top: 0;

    color: var(--navy);

    font-size: 40px;

    letter-spacing: -0.03em;
}

.content-two p {
    margin-top: 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* ============================================================
   TEAM
   ============================================================ */

.team-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 25px;
}

.team-card {
    overflow: hidden;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    box-shadow:
        0 8px 30px
        rgba(18, 48, 93, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.team-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}

.team-card img,
.member-placeholder {
    width: 100%;

    height: 310px;

    object-fit: cover;
}

.member-placeholder {
    display: grid;

    place-items: center;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--blue)
        );

    font-size: 80px;

    font-weight: 900;
}

.team-info {
    padding: 25px;
}

.team-info span {
    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.team-info h3 {
    margin:
        8px 0 12px;

    color: var(--navy);

    font-size: 23px;
}

.team-info p {
    color: var(--muted);

    line-height: 1.65;
}

.empty-state {
    grid-column: 1 / -1;

    padding: 55px;

    text-align: center;

    background:
        var(--background-light);

    border:
        1px dashed
        #abc8df;

    border-radius: 20px;
}

.empty-state h2 {
    color: var(--navy);
}

.empty-state p {
    color: var(--muted);
}


/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 60px;

    align-items: start;
}

.contact-grid > div:first-child {
    padding-top: 20px;
}

.contact-grid h2 {
    margin-top: 0;

    color: var(--navy);

    font-size: 42px;

    letter-spacing: -0.04em;
}

.contact-grid p {
    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;
}

.contact-grid strong {
    display: inline-block;

    margin-top: 15px;

    color: var(--blue);
}


/* ============================================================
   FORMS
   ============================================================ */

.form-card {
    padding: 32px;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    box-shadow:
        var(--shadow);
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #253a57;

    font-size: 13px;

    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 13px 14px;

    color: var(--text);

    background:
        var(--white);

    border:
        1px solid #d3dce7;

    border-radius: 9px;

    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color:
        var(--blue);

    box-shadow:
        0 0 0 4px
        rgba(7, 152, 232, 0.10);
}

.form-group textarea {
    resize: vertical;
}

.error,
.field-error {
    display: block;

    margin-top: 6px;

    color: var(--danger);

    font-size: 12px;
}


/* ============================================================
   MESSAGES
   ============================================================ */

.messages {
    padding-top: 15px;
}

.message {
    padding: 13px 16px;

    margin: 10px 0;

    border:
        1px solid
        #b9e5ff;

    border-radius: 9px;

    background:
        #eaf7ff;

    color: #175b82;
}

.message.success {
    color: var(--success);

    background:
        var(--success-bg);

    border-color:
        #abefc6;
}

.message.warning {
    color: var(--warning);

    background:
        var(--warning-bg);

    border-color:
        #fedf89;
}

.message.error {
    color: var(--danger);

    background:
        var(--danger-bg);

    border-color:
        #fecdca;
}


/* ============================================================
   FOOTER - COMPACT
   ============================================================ */

footer {
    margin-top: 25px;
    background: var(--dark);
    color: #c6d4e5;
}


/* Main footer content */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 70px;

    align-items: start;

    padding-top: 25px;
    padding-bottom: 22px;
}


/* ============================================================
   FOOTER BRAND
   ============================================================ */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-logo {
    width: 78px;
    height: 78px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, 0.8);

    margin-bottom: 12px;
}


.footer-brand p {
    margin: 0;

    max-width: 280px;

    font-size: 13px;
    line-height: 1.5;

    color: #b8c8dd;
}


/* ============================================================
   FOOTER COLUMNS
   ============================================================ */

.footer-grid h4 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}


.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-grid a {
    display: block;

    margin: 0 0 6px;

    color: #c6d4e5;

    font-size: 13px;
    line-height: 1.45;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-grid a:hover {
    color: #19aaf2;
}


/* ============================================================
   FOOTER BOTTOM
   ============================================================ */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom .container {
    padding-top: 10px;
    padding-bottom: 10px;
}


.footer-bottom p {
    margin: 0;

    color: #8fa6c2;

    font-size: 11px;
    line-height: 1.4;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    footer {
        margin-top: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;

        padding-top: 25px;
        padding-bottom: 20px;
    }

    .footer-logo {
        width: 68px;
        height: 68px;
    }

}


/* ============================================================
   LOGIN PAGE
   ============================================================ */

.login-page,
.login-body {
    min-height: 100vh;

    display: grid;

    place-items: center;

    padding: 30px;

    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(55, 196, 255, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--dark),
            var(--navy)
        );
}

.login-box {
    width:
        min(
            430px,
            100%
        );

    padding: 42px;

    background:
        var(--white);

    border-radius: 24px;

    box-shadow:
        0 35px 85px
        rgba(0, 0, 0, 0.24);
}

.login-logo {
    width: 180px;

    height: 90px;

    margin-bottom: 24px;

    display: flex;

    align-items: center;
}

.login-logo img {
    width: 180px;

    height: 85px;

    object-fit: contain;
}

.login-box h1 {
    margin:
        0 0 5px;

    color: var(--navy);

    font-size: 30px;
}

.login-box > p {
    margin-bottom: 30px;

    color: var(--muted);
}


/* ============================================================
   BACK OFFICE
   ============================================================ */

.admin-body {
    margin: 0;

    min-height: 100vh;

    background:
        #f4f7fb;
}


/* ============================================================
   BACK OFFICE SIDEBAR
   ============================================================ */

.sidebar {
    position: fixed;

    inset:
        0 auto 0 0;

    width: 250px;

    padding:
        25px 18px;

    display: flex;

    flex-direction: column;

    color: var(--white);

    background:
        linear-gradient(
            180deg,
            #071a36,
            #0c2b53
        );

    box-shadow:
        10px 0 35px
        rgba(7, 26, 54, 0.08);
}

.sidebar-brand {
    margin-bottom: 35px;
}

.sidebar-brand img {
    width: 100%;

    height: 72px;

    padding: 7px;

    object-fit: contain;

    background:
        var(--white);

    border-radius: 12px;

    margin-bottom: 12px;
}

.sidebar-brand strong,
.sidebar-brand span {
    display: block;
}

.sidebar-brand strong {
    font-size: 17px;
}

.sidebar-brand span {
    margin-top: 3px;

    color: #9cb2cc;

    font-size: 11px;
}

.sidebar nav {
    display: grid;

    gap: 7px;
}

.sidebar nav a,
.logout {
    padding: 12px 14px;

    color: #c5d4e6;

    border-radius: 9px;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sidebar nav a:hover {
    color: var(--white);

    background:
        rgba(7, 152, 232, 0.18);
}

.logout {
    margin-top: auto;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 0;

    padding-top: 18px;
}


/* ============================================================
   BACK OFFICE MAIN
   ============================================================ */

.admin-main {
    min-height: 100vh;

    margin-left: 250px;
}

.admin-topbar {
    position: sticky;

    top: 0;

    z-index: 20;

    height: 75px;

    padding:
        0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        var(--white);

    border-bottom:
        1px solid
        var(--border);
}

.admin-topbar strong {
    color: var(--navy);

    font-size: 14px;
}

.admin-content {
    padding: 30px;
}


/* ============================================================
   ADMIN HEADINGS
   ============================================================ */

.admin-heading {
    margin-bottom: 25px;
}

.admin-heading span {
    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.14em;
}

.admin-heading h1 {
    margin:
        5px 0;

    color: var(--navy);

    font-size: 36px;

    letter-spacing: -0.03em;
}

.admin-heading p {
    color: var(--muted);
}

.actions {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* ============================================================
   DASHBOARD STATISTICS
   ============================================================ */

.stats {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 20px;

    margin-bottom: 25px;
}

.stats > div {
    padding: 22px;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    box-shadow:
        0 8px 24px
        rgba(18, 48, 93, 0.04);
}

.stats span,
.stats strong {
    display: block;
}

.stats span {
    color: var(--muted);

    font-size: 13px;
}

.stats strong {
    margin-top: 10px;

    color: var(--navy);

    font-size: 35px;
}


/* ============================================================
   ADMIN PANELS
   ============================================================ */

.admin-panel {
    margin-bottom: 20px;

    padding: 25px;

    overflow: hidden;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    box-shadow:
        0 8px 28px
        rgba(18, 48, 93, 0.04);
}

.admin-panel h2 {
    margin-top: 0;

    color: var(--navy);

    font-size: 20px;
}

.admin-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 24px;
}


/* ============================================================
   TABLES
   ============================================================ */

table {
    width: 100%;

    border-collapse: collapse;

    font-size: 13px;
}

th {
    padding: 12px;

    text-align: left;

    color: var(--muted);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.04em;

    background:
        #f9fbfd;

    border-bottom:
        1px solid
        var(--border);
}

td {
    padding: 13px 12px;

    text-align: left;

    vertical-align: top;

    border-bottom:
        1px solid
        var(--border);
}

tbody tr:hover {
    background:
        #fbfdff;
}

td a {
    color: var(--blue);

    font-weight: 700;
}


/* ============================================================
   ADMIN HISTORY
   ============================================================ */

.history {
    padding:
        18px 0;

    border-top:
        1px solid
        var(--border);
}

.history strong {
    color: var(--navy);
}

.history p {
    color: var(--muted);

    line-height: 1.6;
}

.form-width {
    max-width: 720px;
}


/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .mc-hero-grid {
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    .hero-tech {
        min-height: 450px;
    }

    .modern-services {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .section-intro {
        grid-template-columns:
            1fr;

        gap: 22px;
    }

    .content-two,
    .contact-grid,
    .admin-grid {
        grid-template-columns:
            1fr;
    }

    .team-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .stats {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }
}


/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 760px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                1180px
            );
    }


    /* HEADER */

    .site-header {
        min-height: auto;
    }

    .header-inner {
        min-height: auto;

        flex-direction: column;

        padding-top: 10px;

        padding-bottom: 12px;

        gap: 8px;
    }

    .site-logo {
        width: 170px;

        height: 60px;

        flex-basis: auto;
    }

    .site-logo img {
        width: 170px !important;

        max-width: 170px !important;

        height: 58px !important;

        max-height: 58px !important;
    }

    .main-nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }

    .main-nav a {
        padding:
            9px 10px;

        font-size: 12px;
    }

    .main-nav .admin-button {
        margin-left: 0;
    }


    /* HERO */

    .mc-hero {
        min-height: auto;
    }

    .mc-hero-grid {
        padding-top: 65px;

        padding-bottom: 65px;
    }

    .mc-hero-content h1 {
        font-size: 46px;
    }

    .mc-hero-content > p {
        font-size: 16px;
    }

    .hero-tech {
        display: none;
    }

    .hero-features {
        flex-direction: column;

        gap: 16px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }


    /* SERVICES */

    .services-section {
        padding:
            75px 0;
    }

    .modern-services {
        grid-template-columns:
            1fr;
    }

    .section-intro h2 {
        font-size: 38px;
    }


    /* PAGES */

    .page-header {
        padding:
            65px 0 55px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .team-grid {
        grid-template-columns:
            1fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            1fr;

        gap: 30px;
    }


    /* ADMIN */

    .sidebar {
        position: static;

        width: 100%;
    }

    .sidebar nav {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .logout {
        margin-top: 15px;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-topbar {
        padding:
            0 18px;
    }

    .admin-content {
        padding: 20px;
    }

    .stats {
        grid-template-columns:
            1fr;
    }

    .actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .admin-panel {
        overflow-x: auto;
    }
}


/* ============================================================
   VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .mc-hero-content h1 {
        font-size: 40px;
    }

    .page-header h1 {
        font-size: 37px;
    }

    .login-box {
        padding: 30px 22px;
    }

    .sidebar nav {
        grid-template-columns:
            1fr;
    }
}
/* ============================================================
   CIRCULAR HERO LOGO
   ============================================================ */

.hero-circle-logo {
    width: 105px;
    height: 105px;

    position: absolute;

    top: -32px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #ffffff;

    border-radius: 50%;

    border: 5px solid rgba(255, 255, 255, 0.95);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.18);
}

.hero-circle-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    transform: scale(1.15);
}


/* ============================================================
   WHY MATHUMBU SECTION
   ============================================================ */

.why-section {
    padding: 105px 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(55, 196, 255, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071a36,
            #12305d
        );
}

.why-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.light-label {
    color: #55caff;
}

.why-heading h2 {
    margin:
        15px 0 20px;

    font-size:
        clamp(
            38px,
            4vw,
            52px
        );

    line-height: 1.05;

    letter-spacing:
        -0.04em;
}

.why-heading p {
    max-width: 540px;

    color: #b7c8da;

    font-size: 16px;

    line-height: 1.75;
}

.why-process {
    display: grid;

    gap: 13px;
}

.why-item {
    display: flex;

    gap: 20px;

    padding: 21px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 15px;
}

.why-item > span {
    color: #55caff;

    font-size: 12px;

    font-weight: 800;
}

.why-item h3 {
    margin:
        0 0 5px;

    font-size: 18px;
}

.why-item p {
    margin: 0;

    color: #b8c8d9;

    font-size: 14px;

    line-height: 1.6;
}


/* ============================================================
   HOME CTA
   ============================================================ */

.home-cta {
    padding:
        85px 0 15px;
}

.home-cta-box {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 40px;

    padding: 50px;

    background:
        linear-gradient(
            135deg,
            #edf9ff,
            #ffffff
        );

    border:
        1px solid #d9edf8;

    border-radius: 26px;
}

.home-cta-box h2 {
    margin:
        12px 0 7px;

    color: #12305d;

    font-size: 37px;

    letter-spacing:
        -0.035em;
}

.home-cta-box p {
    margin: 0;

    color: #6c788b;
}


@media (max-width: 900px) {

    .why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 700px) {

    .home-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

}
/* ============================================================
   BACK OFFICE BRANDING
   ============================================================ */

.sidebar-brand {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 12px;

    margin-bottom: 35px;

    text-align: center;
}

.sidebar-logo {
    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #ffffff;

    border: 4px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18);
}

.sidebar-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    transform: scale(1.15);
}

.sidebar-brand-text strong {
    display: block;

    color: #ffffff;

    font-size: 15px;
}

.sidebar-brand-text span {
    display: block;

    margin-top: 4px;

    color: #91aac5;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}
/* ============================================================
   HOW WE WORK - LARGE ALIGNED CARD
   ============================================================ */

.service-process-section {
    padding: 35px 0 90px;
    background: #ffffff;
}


/* Outer Large Card */

.service-process-card-wrapper {
    width: 100%;

    padding: 48px;

    background:
        linear-gradient(
            135deg,
            #f9fcff,
            #ffffff
        );

    border: 1px solid #dce7f1;
    border-radius: 24px;

    box-shadow:
        0 14px 40px rgba(18, 48, 93, 0.06);
}


/* Header */

.service-process-header {
    max-width: 760px;
    margin-bottom: 42px;
}


.service-process-header .section-label {
    color: #0798e8;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}


.service-process-header h2 {
    margin: 12px 0 14px;

    color: #102e58;

    font-size: 38px;

    line-height: 1.1;
    letter-spacing: -0.035em;
}


.service-process-header p {
    max-width: 700px;

    margin: 0;

    color: #68768b;

    font-size: 15px;
    line-height: 1.75;
}


/* 4 Process Cards */

.service-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* Individual Process */

.service-process-item {
    min-height: 250px;

    padding: 26px;

    background: #ffffff;

    border: 1px solid #e1e9f1;
    border-radius: 18px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.service-process-item:hover {
    transform: translateY(-5px);

    border-color: #afdff7;

    box-shadow:
        0 16px 35px rgba(18, 48, 93, 0.08);
}


/* Icon */

.process-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    color: #0798e8;

    background: #eaf7ff;

    border: 1px solid #c9e9f8;
    border-radius: 14px;

    font-size: 17px;
    font-weight: 800;
}


/* Heading */

.service-process-item h3 {
    margin: 0 0 12px;

    color: #12305d;

    font-size: 20px;
}


/* Text */

.service-process-item p {
    margin: 0;

    color: #68768b;

    font-size: 14px;
    line-height: 1.65;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

    .service-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .service-process-card-wrapper {
        padding: 28px;
    }

    .service-process-grid {
        grid-template-columns: 1fr;
    }

}
/* ============================================================
   VISION & VALUES PAGE
   ============================================================ */

.vision-hero {
    padding: 85px 0 80px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(43, 190, 255, 0.14),
            transparent 30%
        ),
        #f8fbfe;
}


.vision-hero-inner {
    max-width: 900px;
}


.vision-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #079ce5;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.vision-hero h1 {
    margin: 0;

    color: #102f5b;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;

    letter-spacing: -0.045em;
}


.vision-hero p {
    max-width: 760px;

    margin: 28px 0 0;

    color: #60728a;

    font-size: 18px;
    line-height: 1.75;
}


/* ============================================================
   WHY MATHUMBU
   ============================================================ */

.vision-approach {
    padding: 95px 0;

    background:
        linear-gradient(
            120deg,
            #071a37,
            #123a6b
        );

    color: #ffffff;
}


.vision-approach-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: center;
}


.vision-intro h2 {
    max-width: 620px;

    margin: 8px 0 26px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -0.04em;
}


.vision-intro p {
    max-width: 610px;

    margin: 0;

    color: #c4d4e6;

    font-size: 17px;

    line-height: 1.8;
}


/* Process cards */

.vision-process {
    display: grid;

    gap: 18px;
}


.vision-process-card {
    padding: 27px 30px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.vision-process-card:hover {
    transform:
        translateX(6px);

    background:
        rgba(255, 255, 255, 0.09);
}


.vision-process-card h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 21px;
}


.vision-process-card p {
    margin: 0;

    color: #c5d5e7;

    font-size: 15px;

    line-height: 1.65;
}


/* ============================================================
   VALUES
   ============================================================ */

.values-section {
    padding: 90px 0 105px;

    background: #ffffff;
}


.values-heading {
    max-width: 750px;

    margin-bottom: 45px;
}


.values-heading h2 {
    margin: 0 0 18px;

    color: #102f5b;

    font-size: 40px;

    letter-spacing: -0.035em;
}


.values-heading p {
    margin: 0;

    color: #66768d;

    font-size: 16px;

    line-height: 1.7;
}


.values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.value-card {
    min-height: 220px;

    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #dce6ef;

    border-radius: 18px;

    box-shadow:
        0 12px 35px
        rgba(16, 47, 91, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.value-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(16, 47, 91, 0.10);
}


.value-card h3 {
    margin: 0 0 15px;

    color: #102f5b;

    font-size: 20px;
}


.value-card p {
    margin: 0;

    color: #66768d;

    font-size: 14px;

    line-height: 1.7;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

    .vision-approach-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .vision-hero {
        padding: 60px 0;
    }


    .vision-approach {
        padding: 65px 0;
    }


    .values-section {
        padding: 65px 0;
    }


    .values-grid {
        grid-template-columns: 1fr;
    }


    .vision-intro h2 {
        font-size: 36px;
    }

}
/* ============================================================
   OUR APPROACH PAGE
   ============================================================ */

.approach-page {
    min-height: calc(100vh - 100px);

    display: flex;
    align-items: center;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(28, 142, 220, 0.20),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #071a37 0%,
            #0b2850 50%,
            #153f70 100%
        );

    color: #ffffff;
}


.approach-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 100px;

    align-items: center;
}


/* LEFT */

.approach-page-intro {
    max-width: 650px;
}


.approach-eyebrow {
    display: block;

    margin-bottom: 25px;

    color: #42c6ff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.approach-page-intro h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(44px, 5vw, 68px);
    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -0.045em;
}


.approach-page-intro p {
    max-width: 610px;

    margin: 30px 0 0;

    color: #c5d6e8;

    font-size: 18px;

    line-height: 1.8;
}


/* CONTACT BUTTON */

.approach-contact-btn {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    margin-top: 32px;

    padding: 15px 24px;

    background:
        linear-gradient(
            135deg,
            #114b83,
            #079ee8
        );

    color: #ffffff;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 14px 30px
        rgba(0, 151, 230, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.approach-contact-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 36px
        rgba(0, 151, 230, 0.28);
}


/* RIGHT */

.approach-steps {
    display: grid;

    gap: 18px;
}


.approach-step-card {
    display: flex;
    align-items: center;

    gap: 22px;

    min-height: 125px;

    padding: 25px 30px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.approach-step-card:hover {
    transform: translateX(6px);

    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(66, 198, 255, 0.45);
}


.approach-step-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(40, 184, 255, 0.12);

    border:
        1px solid
        rgba(66, 198, 255, 0.25);

    color: #42c6ff;

    font-size: 21px;
    font-weight: 700;
}


.approach-step-card h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 21px;
}


.approach-step-card p {
    margin: 0;

    color: #c4d5e7;

    font-size: 15px;

    line-height: 1.6;
}


/* ============================================================
   OUR APPROACH LINK BUTTON
   Used on Home / About / Vision pages
   ============================================================ */

.our-approach-link {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    padding: 13px 21px;

    background: transparent;

    border: 1px solid #0b91d5;

    border-radius: 9px;

    color: #0b4f86;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.our-approach-link:hover {
    background: #0b91d5;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 950px) {

    .approach-page {
        min-height: auto;

        padding: 70px 0;
    }


    .approach-page-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .approach-page {
        padding: 55px 0;
    }


    .approach-page-intro h1 {
        font-size: 40px;
    }


    .approach-step-card {
        padding: 22px;

        align-items: flex-start;
    }

}
/* ============================================================
   APPROACH - HOW WE WORK
   ============================================================ */

.approach-work-card {
    width: 100%;
    padding: 55px 52px;

    background: #ffffff;

    border: 1px solid #dce7f0;
    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(16, 47, 91, 0.06);
}


/* Large outer card */

.approach-work-card {
    padding: 55px 52px;

    background: #ffffff;

    border: 1px solid #dce7f0;
    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(16, 47, 91, 0.06);
}


/* Heading */

.approach-work-heading {
    max-width: 850px;
    margin-bottom: 45px;
}


.section-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #079ce5;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.approach-work-heading h2 {
    margin: 0 0 15px;

    color: #102f5b;

    font-size: 38px;
    line-height: 1.15;

    letter-spacing: -0.03em;
}


.approach-work-heading p {
    max-width: 800px;

    margin: 0;

    color: #66778d;

    font-size: 16px;
    line-height: 1.75;
}


/* Four cards */

.approach-work-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


.approach-work-step {
    min-height: 275px;

    padding: 28px 26px;

    border: 1px solid #dce7f0;
    border-radius: 18px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.approach-work-step:hover {
    transform: translateY(-5px);

    border-color: #b7ddf3;

    box-shadow:
        0 16px 35px rgba(16, 47, 91, 0.08);
}


/* Icons */

.approach-work-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    background: #eaf7fd;

    border: 1px solid #bce6fa;
    border-radius: 13px;

    color: #079ce5;

    font-size: 20px;
    font-weight: 700;
}


/* Card text */

.approach-work-step h3 {
    margin: 0 0 14px;

    color: #102f5b;

    font-size: 21px;
}


.approach-work-step p {
    margin: 0;

    color: #66778d;

    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

    .approach-work-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .approach-work-card {
        padding: 35px 25px;
    }


    .approach-work-grid {
        grid-template-columns: 1fr;
    }


    .approach-work-heading h2 {
        font-size: 31px;
    }


    .approach-work-step {
        min-height: auto;
    }

}
/* ============================================================
   SERVICES SIDE ACTIONS
   ============================================================ */

.services-side-actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 28px;
}


/* Remove margin from first button because wrapper handles spacing */

.services-side-actions .project-side-button {
    margin-top: 0;
}


/* OUR APPROACH BUTTON */

.approach-side-button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    width: 100%;

    padding: 13px 16px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.approach-side-button span {
    font-size: 15px;

    transition:
        transform 0.2s ease;
}


.approach-side-button:hover {
    background:
        rgba(255, 255, 255, 0.14);

    border-color:
        rgba(85, 202, 255, 0.55);

    transform:
        translateY(-2px);
}


.approach-side-button:hover span {
    transform:
        translateX(4px);
}
/* ============================================================
   BACK OFFICE LOGIN LOGO
   ============================================================ */

.login-brand-logo {
    width: 120px;
    height: 120px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #ffffff;

    border: 4px solid #edf3f8;

    box-shadow:
        0 10px 30px rgba(16, 47, 91, 0.12);
}


.login-brand-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}
.backoffice-title,
.backoffice-title + p {
    text-align: center;
}
.signin-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}
.footer-bottom {
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}