/*
Theme Name: GICT Public
Theme URI: https://gictsystems.com/
Author: GICT Systems
Author URI: https://gictsystems.com/
Description: Lightweight custom public theme for GICT Systems.
Version: 1.5.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: gict-public
*/

:root {
    --gict-navy: #102a43;
    --gict-navy-deep: #071a2b;

    --gict-blue: #1479bd;
    --gict-blue-dark: #0d639d;

    --gict-green: #4f9f48;

    --gict-text: #263746;
    --gict-muted: #66798a;

    --gict-line: #dce6ed;

    --gict-white: #ffffff;
    --gict-soft: #f5f8fa;
    --gict-soft-blue: #edf6fb;

    --gict-radius-sm: 10px;
    --gict-radius-md: 18px;
    --gict-radius-lg: 28px;

    --gict-shadow:
        0 20px 60px rgba(16, 42, 67, 0.10);

    --gict-container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--gict-white);
    color: var(--gict-text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
}

body.gict-menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--gict-blue);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--gict-blue-dark);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

.gict-container {
    width: min(
        calc(100% - 40px),
        var(--gict-container)
    );

    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    z-index: 99999;

    top: 10px;
    left: 10px;

    width: auto;
    height: auto;

    padding: 10px 14px;
    margin: 0;

    clip: auto;

    background: #fff;
    color: var(--gict-navy);

    border-radius: 8px;
    box-shadow: var(--gict-shadow);
}

/* ==========================================================
   HEADER
   ========================================================== */

.gict-header {
    position: relative;
    z-index: 100;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(220, 230, 237, 0.85);
}

.gict-header__inner {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}

.gict-brand {
    display: inline-flex;
    align-items: center;

    flex: 0 0 auto;
}

.gict-brand__logo {
    width: auto;
    height: 57px;

    object-fit: contain;
}

.gict-nav {
    display: flex;
    align-items: center;

    gap: 28px;

    font-size: 14px;
    font-weight: 650;
}

.gict-nav > a:not(.gict-nav__cta) {
    position: relative;

    color: var(--gict-text);

    white-space: nowrap;
}

.gict-nav > a:not(.gict-nav__cta)::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -8px;

    height: 2px;

    background: var(--gict-blue);

    transition: right 0.2s ease;
}

.gict-nav > a:not(.gict-nav__cta):hover,
.gict-nav > a:not(.gict-nav__cta):focus-visible {
    color: var(--gict-blue);
}

.gict-nav > a:not(.gict-nav__cta):hover::after,
.gict-nav > a:not(.gict-nav__cta):focus-visible::after {
    right: 0;
}

.gict-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 10px 19px;

    border-radius: 999px;

    background: var(--gict-navy);
    color: #fff;

    font-weight: 750;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.gict-nav__cta:hover,
.gict-nav__cta:focus-visible {
    background: var(--gict-blue);
    color: #fff;

    transform: translateY(-1px);
}

.gict-menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    padding: 8px;

    cursor: pointer;
}

.gict-menu-toggle__label {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.gict-menu-toggle__icon {
    width: 26px;

    display: grid;

    gap: 5px;
}

.gict-menu-toggle__icon span {
    width: 100%;
    height: 2px;

    display: block;

    background: var(--gict-navy);

    border-radius: 99px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

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

.gict-site-main {
    min-height: 60vh;
}

.gict-hero {
    position: relative;

    overflow: hidden;

    padding: 72px 0 82px;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(20, 121, 189, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 94% 70%,
            rgba(79, 159, 72, 0.08),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #fbfdff,
            #f5f9fc
        );
}

.gict-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -290px;
    bottom: -250px;

    border-radius: 50%;

    border: 1px solid rgba(20, 121, 189, 0.15);
}

.gict-hero__grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);

    align-items: center;

    gap: clamp(52px, 7vw, 96px);
}

.gict-eyebrow {
    margin: 0 0 18px;

    color: var(--gict-blue);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.gict-hero h1 {
    max-width: 690px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 0.99;

    letter-spacing: -0.052em;

    text-wrap: balance;
}

.gict-hero__lead {
    max-width: 640px;

    margin: 28px 0 0;

    color: var(--gict-muted);

    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.7;
}

.gict-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}

.gict-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 13px 22px;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 750;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.gict-button:hover,
.gict-button:focus-visible {
    transform: translateY(-2px);
}

.gict-button--primary {
    background: var(--gict-blue);
    color: #fff;

    border: 1px solid var(--gict-blue);
}

.gict-button--primary:hover,
.gict-button--primary:focus-visible {
    background: var(--gict-blue-dark);
    color: #fff;

    border-color: var(--gict-blue-dark);
}

.gict-button--secondary {
    background: rgba(255, 255, 255, 0.82);
    color: var(--gict-navy);

    border: 1px solid var(--gict-line);
}

.gict-button--secondary:hover,
.gict-button--secondary:focus-visible {
    background: #fff;
    color: var(--gict-blue);

    border-color: rgba(20, 121, 189, 0.35);
}

.gict-hero__focus {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 34px;
}

.gict-hero__focus span {
    padding: 7px 11px;

    border: 1px solid var(--gict-line);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.7);

    color: #536979;

    font-size: 12px;
    font-weight: 650;
}

.gict-hero__visual {
    min-width: 0;
}

.gict-hero__image-shell {
    position: relative;

    padding: 10px;

    background: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(220, 230, 237, 0.9);
    border-radius: 30px;

    box-shadow: var(--gict-shadow);
}

.gict-hero__image {
    width: 100%;
    height: clamp(390px, 42vw, 520px);

    object-fit: cover;

    border-radius: 22px;
}

.gict-hero__badge {
    position: absolute;

    left: -30px;
    bottom: 27px;

    min-width: 240px;

    display: grid;

    gap: 2px;

    padding: 16px 19px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid var(--gict-line);
    border-radius: 15px;

    box-shadow:
        0 14px 35px rgba(16, 42, 67, 0.13);
}

.gict-hero__badge strong {
    color: var(--gict-navy);

    font-size: 14px;
}

.gict-hero__badge span {
    color: var(--gict-muted);

    font-size: 12px;
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 1050px) {

    .gict-header__inner {
        min-height: 78px;
    }

    .gict-brand__logo {
        height: 49px;
    }

    .gict-menu-toggle {
        display: inline-flex;

        position: relative;
        z-index: 120;
    }

    .gict-nav {
        position: fixed;

        z-index: 110;

        inset:
            78px
            0
            auto
            0;

        display: none;

        max-height: calc(100vh - 78px);

        overflow-y: auto;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 18px 20px 28px;

        background: #fff;

        border-top: 1px solid var(--gict-line);
        border-bottom: 1px solid var(--gict-line);

        box-shadow:
            0 20px 40px rgba(16, 42, 67, 0.12);
    }

    .gict-nav.is-open {
        display: flex;
    }

    .gict-nav > a:not(.gict-nav__cta) {
        padding: 13px 5px;

        border-bottom:
            1px solid rgba(220, 230, 237, 0.75);
    }

    .gict-nav > a:not(.gict-nav__cta)::after {
        display: none;
    }

    .gict-nav__cta {
        margin-top: 18px;
    }

    .gict-menu-open
    .gict-menu-toggle__icon span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .gict-menu-open
    .gict-menu-toggle__icon span:nth-child(2) {
        opacity: 0;
    }

    .gict-menu-open
    .gict-menu-toggle__icon span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    .gict-hero {
        padding-top: 58px;
    }

    .gict-hero__grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .gict-hero__content {
        max-width: 760px;
    }

    .gict-hero__visual {
        max-width: 820px;
    }

    .gict-hero__image {
        height: auto;

        aspect-ratio: 16 / 9;
    }

    .gict-hero__badge {
        left: 28px;
    }
}

@media (max-width: 640px) {

    .gict-container {
        width: min(
            calc(100% - 28px),
            var(--gict-container)
        );
    }

    .gict-header__inner {
        min-height: 72px;
    }

    .gict-brand__logo {
        height: 43px;
    }

    .gict-nav {
        inset:
            72px
            0
            auto
            0;

        max-height: calc(100vh - 72px);
    }

    .gict-hero {
        padding:
            45px
            0
            58px;
    }

    .gict-hero h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .gict-hero__actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .gict-button {
        width: 100%;
    }

    .gict-hero__focus {
        gap: 7px;
    }

    .gict-hero__image-shell {
        padding: 7px;

        border-radius: 23px;
    }

    .gict-hero__image {
        border-radius: 17px;

        aspect-ratio: 4 / 3;
    }

    .gict-hero__badge {
        position: relative;

        left: auto;
        bottom: auto;

        min-width: 0;

        margin:
            -25px
            13px
            4px;
    }
}


/* ==========================================================
   GICT-WEB-1C SERVICES
   ========================================================== */

.gict-services-home {
    padding: 90px 0 98px;
    background: #fff;
}

.gict-section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(320px, 0.6fr);

    align-items: end;
    gap: 70px;

    margin-bottom: 44px;
}

.gict-section-heading .gict-eyebrow {
    margin-bottom: 14px;
}

.gict-section-heading h2 {
    max-width: 720px;
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.gict-section-heading__intro {
    margin: 0;

    color: var(--gict-muted);

    font-size: 16px;
    line-height: 1.75;
}

.gict-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.gict-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 28px;

    overflow: hidden;

    border: 1px solid var(--gict-line);
    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fbfdfe
        );

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.gict-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 28px;

    width: 42px;
    height: 3px;

    background: var(--gict-blue);

    border-radius: 0 0 4px 4px;
}

.gict-service-card:hover {
    transform: translateY(-4px);

    border-color: rgba(20, 121, 189, 0.28);

    box-shadow:
        0 18px 42px rgba(16, 42, 67, 0.09);
}

.gict-service-card__icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border-radius: 14px;

    background: var(--gict-soft-blue);
    color: var(--gict-blue);
}

.gict-service-card__icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gict-service-card h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -0.018em;
}

.gict-service-card p {
    margin: 15px 0 24px;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.72;
}

.gict-service-card a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;

    color: var(--gict-blue);

    font-size: 13px;
    font-weight: 750;
}

.gict-service-card a span {
    transition: transform 0.2s ease;
}

.gict-service-card a:hover span,
.gict-service-card a:focus-visible span {
    transform: translateX(3px);
}

@media (max-width: 960px) {

    .gict-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gict-section-heading__intro {
        max-width: 680px;
    }

    .gict-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {

    .gict-services-home {
        padding: 66px 0 72px;
    }

    .gict-section-heading {
        margin-bottom: 32px;
    }

    .gict-services-grid {
        grid-template-columns: 1fr;
    }

    .gict-service-card {
        min-height: 0;
        padding: 25px;
    }
}


/* ==========================================================
   GICT-WEB-1D WORK
   ========================================================== */

.gict-work-home {
    padding: 94px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f6f9fb 0%,
            #ffffff 100%
        );

    border-top: 1px solid rgba(220, 230, 237, 0.7);
}

.gict-section-heading--work {
    margin-bottom: 42px;
}

.gict-work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.gict-work-card {
    display: grid;

    grid-template-columns: 170px minmax(0, 1fr);

    min-height: 285px;

    overflow: hidden;

    border: 1px solid var(--gict-line);
    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 12px 32px rgba(16, 42, 67, 0.045);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.gict-work-card:hover {
    transform: translateY(-3px);

    border-color: rgba(20, 121, 189, 0.25);

    box-shadow:
        0 20px 44px rgba(16, 42, 67, 0.08);
}

.gict-work-card__logo {
    display: grid;
    place-items: center;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f8fa
        );

    border-right: 1px solid var(--gict-line);
}

.gict-work-card__logo img {
    width: 100%;
    max-width: 145px;
    max-height: 105px;

    object-fit: contain;
}

.gict-work-card__body {
    display: flex;
    flex-direction: column;

    padding: 28px;
}

.gict-work-card__meta {
    margin-bottom: 8px;

    color: var(--gict-blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gict-work-card h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.022em;
}

.gict-work-card p {
    margin: 14px 0 22px;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.68;
}

.gict-work-card__tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;
}

.gict-work-card__tags span {
    padding: 5px 9px;

    border-radius: 999px;

    background: var(--gict-soft-blue);
    color: var(--gict-blue-dark);

    font-size: 11px;
    font-weight: 700;
}

.gict-work-home__action {
    display: flex;
    justify-content: center;

    margin-top: 34px;
}


/* ==========================================================
   CLIENT LOGO WALL
   ========================================================== */

.gict-client-wall {
    margin-top: 84px;

    padding-top: 68px;

    border-top: 1px solid var(--gict-line);
}

.gict-client-wall__heading {
    max-width: 650px;

    margin: 0 auto 34px;

    text-align: center;
}

.gict-client-wall__heading .gict-eyebrow {
    margin-bottom: 10px;
}

.gict-client-wall__heading h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.gict-client-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.gict-client-logo {
    min-height: 145px;

    display: grid;
    place-items: center;

    padding: 22px;

    border: 1px solid var(--gict-line);
    border-radius: 16px;

    background: #fff;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.gict-client-logo:hover {
    transform: translateY(-2px);

    border-color: rgba(20, 121, 189, 0.23);

    box-shadow:
        0 12px 28px rgba(16, 42, 67, 0.06);
}

.gict-client-logo img {
    width: 100%;
    max-width: 190px;
    max-height: 92px;

    object-fit: contain;
}

.gict-client-wall__note {
    max-width: 620px;

    margin: 24px auto 0;

    color: var(--gict-muted);

    text-align: center;

    font-size: 13px;
}


@media (max-width: 1020px) {

    .gict-work-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .gict-client-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 820px) {

    .gict-work-grid {
        grid-template-columns: 1fr;
    }

    .gict-work-card {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .gict-client-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 560px) {

    .gict-work-home {
        padding: 68px 0 74px;
    }

    .gict-work-card {
        grid-template-columns: 1fr;
    }

    .gict-work-card__logo {
        min-height: 145px;

        border-right: 0;
        border-bottom: 1px solid var(--gict-line);
    }

    .gict-work-card__body {
        padding: 24px;
    }

    .gict-client-wall {
        margin-top: 62px;
        padding-top: 54px;
    }

    .gict-client-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gict-client-logo {
        min-height: 120px;
        padding: 16px;
    }

    .gict-client-logo img {
        max-height: 72px;
    }
}


/* ==========================================================
   GICT-WEB-1E INNOVATION
   ========================================================== */

.gict-impact-home {
    padding: 96px 0 104px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(20, 121, 189, 0.10),
            transparent 27%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f3f8fc
        );

    border-top: 1px solid rgba(220, 230, 237, 0.7);
}

.gict-impact-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(420px, 1.12fr);

    align-items: center;

    gap: clamp(42px, 7vw, 88px);
}

.gict-impact-intro__content {
    max-width: 590px;
}

.gict-impact-intro h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.04;

    letter-spacing: -0.045em;
}

.gict-impact-intro__content > p:not(.gict-eyebrow) {
    margin: 23px 0 30px;

    color: var(--gict-muted);

    font-size: 17px;
    line-height: 1.75;
}

.gict-impact-intro__visual {
    overflow: hidden;

    padding: 8px;

    border: 1px solid var(--gict-line);
    border-radius: 25px;

    background: #fff;

    box-shadow:
        0 20px 52px rgba(16, 42, 67, 0.09);
}

.gict-impact-intro__visual img {
    width: 100%;

    aspect-ratio: 16 / 7;

    object-fit: cover;

    border-radius: 18px;
}


.gict-impact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-top: 62px;
}

.gict-impact-card {
    min-height: 390px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    border: 1px solid var(--gict-line);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 13px 34px rgba(16, 42, 67, 0.05);
}

.gict-impact-card__top {
    min-height: 105px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 22px;
}

.gict-impact-card__label {
    padding: 6px 9px;

    border-radius: 999px;

    background: var(--gict-soft-blue);
    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.gict-impact-card__logo {
    width: 190px;
    height: 95px;

    display: grid;
    place-items: center;
}

.gict-impact-card__logo img {
    max-width: 100%;
    max-height: 90px;

    object-fit: contain;
}

.gict-impact-card h3 {
    margin: 19px 0 0;

    color: var(--gict-navy);

    font-size: 26px;
    line-height: 1.2;

    letter-spacing: -0.025em;
}

.gict-impact-card > p {
    margin: 14px 0 25px;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.75;
}

.gict-impact-card__areas {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;
}

.gict-impact-card__areas span {
    padding: 6px 9px;

    border: 1px solid var(--gict-line);
    border-radius: 999px;

    color: #526a7b;

    font-size: 11px;
    font-weight: 650;
}


.gict-impact-collaboration {
    display: grid;

    grid-template-columns: 210px minmax(0, 1fr);

    align-items: center;

    gap: 40px;

    margin-top: 22px;
    padding: 34px;

    border: 1px solid rgba(20, 121, 189, 0.20);
    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            #ffffff,
            var(--gict-soft-blue)
        );
}

.gict-impact-collaboration__logo {
    min-height: 125px;

    display: grid;
    place-items: center;

    padding: 16px;

    background: rgba(255, 255, 255, 0.78);

    border-radius: 16px;
}

.gict-impact-collaboration__logo img {
    max-width: 180px;
    max-height: 110px;

    object-fit: contain;
}

.gict-impact-collaboration__label {
    margin: 0 0 7px;

    color: var(--gict-blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.gict-impact-collaboration h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;

    letter-spacing: -0.03em;
}

.gict-impact-collaboration__content > p:last-child {
    max-width: 760px;

    margin: 13px 0 0;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.75;
}


@media (max-width: 930px) {

    .gict-impact-intro {
        grid-template-columns: 1fr;
    }

    .gict-impact-intro__content {
        max-width: 720px;
    }

    .gict-impact-intro__visual {
        max-width: 850px;
    }
}


@media (max-width: 720px) {

    .gict-impact-grid {
        grid-template-columns: 1fr;
    }

    .gict-impact-collaboration {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gict-impact-collaboration__logo {
        width: 100%;
    }
}


@media (max-width: 560px) {

    .gict-impact-home {
        padding: 70px 0 76px;
    }

    .gict-impact-intro__visual img {
        aspect-ratio: 4 / 3;
    }

    .gict-impact-grid {
        margin-top: 46px;
    }

    .gict-impact-card {
        min-height: 0;
        padding: 25px;
    }

    .gict-impact-card__top {
        min-height: 0;

        flex-direction: column;

        margin-bottom: 20px;
    }

    .gict-impact-card__logo {
        width: 100%;
        height: 100px;

        justify-content: flex-start;
    }

    .gict-impact-card__logo img {
        max-width: 230px;
    }

    .gict-impact-collaboration {
        padding: 24px;
    }
}


/* ==========================================================
   GICT-WEB-1F FINAL
   WHY GICT
   ========================================================== */

.gict-why-home {
    padding: 96px 0;

    background: #fff;
}

.gict-why-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(450px, 1.18fr);

    gap: clamp(54px, 8vw, 105px);
}

.gict-why-copy {
    max-width: 520px;
}

.gict-why-copy h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(36px, 4.7vw, 56px);
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.gict-why-copy > p:not(.gict-eyebrow) {
    margin: 22px 0 0;

    color: var(--gict-muted);

    font-size: 16px;
    line-height: 1.78;
}

.gict-why-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top: 1px solid var(--gict-line);
    border-left: 1px solid var(--gict-line);
}

.gict-why-point {
    display: flex;

    gap: 18px;

    min-height: 190px;

    padding: 28px;

    border-right: 1px solid var(--gict-line);
    border-bottom: 1px solid var(--gict-line);
}

.gict-why-point__number {
    flex: 0 0 auto;

    color: var(--gict-blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.gict-why-point h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: 18px;
    line-height: 1.3;

    letter-spacing: -0.015em;
}

.gict-why-point p {
    margin: 10px 0 0;

    color: var(--gict-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================================
   HOME CTA
   ========================================================== */

.gict-home-cta {
    padding: 0 0 92px;

    background: #fff;
}

.gict-home-cta__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 60px;

    padding:
        clamp(36px, 6vw, 68px);

    overflow: hidden;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(20, 121, 189, 0.34),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            var(--gict-navy-deep),
            var(--gict-navy)
        );

    color: #fff;
}

.gict-home-cta__eyebrow {
    margin: 0 0 10px;

    color: #75c5f2;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gict-home-cta h2 {
    max-width: 670px;

    margin: 0;

    color: #fff;

    font-size: clamp(34px, 4.3vw, 52px);
    line-height: 1.04;

    letter-spacing: -0.042em;
}

.gict-home-cta__inner > div:first-child > p:last-child {
    max-width: 620px;

    margin: 17px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.7;
}

.gict-home-cta__actions {
    min-width: 190px;

    display: grid;

    gap: 14px;

    justify-items: center;
}

.gict-button--light {
    min-width: 170px;

    background: #fff;
    border: 1px solid #fff;

    color: var(--gict-navy);
}

.gict-button--light:hover,
.gict-button--light:focus-visible {
    background: var(--gict-soft-blue);
    border-color: var(--gict-soft-blue);

    color: var(--gict-blue-dark);
}

.gict-home-cta__email {
    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 650;
}

.gict-home-cta__email:hover,
.gict-home-cta__email:focus-visible {
    color: #fff;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.gict-footer {
    padding: 70px 0 24px;

    background: #f5f8fa;

    border-top: 1px solid var(--gict-line);
}

.gict-footer__main {
    display: grid;

    grid-template-columns:
        minmax(260px, 1.5fr)
        repeat(3, minmax(140px, 0.6fr));

    gap: 54px;
}

.gict-footer__brand {
    max-width: 330px;
}

.gict-footer__logo {
    width: auto;
    height: 58px;

    object-fit: contain;
}

.gict-footer__brand p {
    max-width: 300px;

    margin: 20px 0 12px;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.7;
}

.gict-footer__email {
    color: var(--gict-blue);

    font-size: 14px;
    font-weight: 750;
}

.gict-footer__column h2 {
    margin: 5px 0 18px;

    color: var(--gict-navy);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gict-footer__column nav {
    display: grid;

    gap: 11px;
}

.gict-footer__column a {
    color: var(--gict-muted);

    font-size: 13px;
    font-weight: 600;
}

.gict-footer__column a:hover,
.gict-footer__column a:focus-visible {
    color: var(--gict-blue);
}

.gict-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 58px;
    padding-top: 22px;

    border-top: 1px solid var(--gict-line);

    color: #7b8d9b;

    font-size: 11px;
}

.gict-footer__bottom p {
    margin: 0;
}


/* ==========================================================
   1F RESPONSIVE
   ========================================================== */

@media (max-width: 920px) {

    .gict-why-grid {
        grid-template-columns: 1fr;
    }

    .gict-why-copy {
        max-width: 700px;
    }

    .gict-home-cta__inner {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .gict-home-cta__actions {
        justify-items: start;
    }

    .gict-footer__main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .gict-footer__brand {
        max-width: none;
    }
}


@media (max-width: 620px) {

    .gict-why-home {
        padding: 70px 0;
    }

    .gict-why-points {
        grid-template-columns: 1fr;
    }

    .gict-why-point {
        min-height: 0;
    }

    .gict-home-cta {
        padding-bottom: 70px;
    }

    .gict-home-cta__inner {
        padding: 32px 26px;

        border-radius: 22px;
    }

    .gict-footer {
        padding-top: 54px;
    }

    .gict-footer__main {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .gict-footer__bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 7px;

        margin-top: 44px;
    }
}


/* ==========================================================
   GICT-WEB-2A — INTERNAL PAGE FOUNDATION
   ========================================================== */

.gict-page-hero {
    padding: 70px 0 76px;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(20, 121, 189, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbfdff,
            #f4f8fb
        );
}

.gict-page-hero__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(430px, 1.1fr);

    align-items: center;

    gap: clamp(45px, 7vw, 88px);
}

.gict-page-hero__content h1 {
    max-width: 700px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(42px, 5.5vw, 66px);
    line-height: 1.01;

    letter-spacing: -0.05em;
}

.gict-page-hero__content > p:last-child {
    max-width: 640px;

    margin: 25px 0 0;

    color: var(--gict-muted);

    font-size: 17px;
    line-height: 1.75;
}

.gict-page-hero__visual {
    padding: 8px;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--gict-line);
    border-radius: 25px;

    box-shadow: var(--gict-shadow);
}

.gict-page-hero__visual img {
    width: 100%;

    aspect-ratio: 16 / 8;

    object-fit: cover;

    border-radius: 18px;
}


/* ==========================================================
   SERVICES PAGE
   ========================================================== */

.gict-services-page {
    padding: 92px 0 96px;

    background: #fff;
}

.gict-service-pillar {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);

    gap: clamp(50px, 8vw, 110px);

    padding: 60px 0;

    border-bottom: 1px solid var(--gict-line);
}

.gict-service-pillar:first-child {
    padding-top: 0;
}

.gict-service-pillar__heading {
    display: grid;

    grid-template-columns: 38px minmax(0, 1fr);

    gap: 18px;
}

.gict-service-pillar__heading > span {
    padding-top: 3px;

    color: var(--gict-blue);

    font-size: 11px;
    font-weight: 800;
}

.gict-service-pillar__heading .gict-eyebrow {
    margin-bottom: 12px;
}

.gict-service-pillar__heading h2 {
    max-width: 540px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.08;

    letter-spacing: -0.038em;
}

.gict-service-pillar__content > p {
    margin: 0 0 24px;

    color: var(--gict-muted);

    font-size: 15px;
    line-height: 1.78;
}

.gict-service-pillar__content ul {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px 24px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.gict-service-pillar__content li {
    position: relative;

    padding-left: 18px;

    color: var(--gict-text);

    font-size: 13px;
    line-height: 1.55;
}

.gict-service-pillar__content li::before {
    content: "";

    position: absolute;

    top: 0.62em;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gict-blue);
}


.gict-custom-solutions {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 55px;

    margin-top: 60px;
    padding: 42px;

    background:
        linear-gradient(
            135deg,
            var(--gict-soft-blue),
            #ffffff
        );

    border: 1px solid var(--gict-line);
    border-radius: 22px;
}

.gict-custom-solutions h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.08;

    letter-spacing: -0.035em;
}

.gict-custom-solutions div > p:last-child {
    max-width: 730px;

    margin: 15px 0 0;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.75;
}


/* ==========================================================
   INTERNAL PAGE CTA
   ========================================================== */

.gict-page-cta {
    padding: 0 0 90px;

    background: #fff;
}

.gict-page-cta__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 50px;

    padding:
        clamp(34px, 5vw, 58px);

    background: var(--gict-navy);

    border-radius: 25px;

    color: #fff;
}

.gict-page-cta__eyebrow {
    margin: 0 0 8px;

    color: #75c5f2;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gict-page-cta h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.06;

    letter-spacing: -0.038em;
}

.gict-page-cta__inner div > p:last-child {
    max-width: 650px;

    margin: 14px 0 0;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================
   GENERIC INTERNAL PAGE
   ========================================================== */

.gict-simple-page {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #f7fafc,
            #ffffff
        );
}

.gict-simple-page__article {
    max-width: 850px;

    min-height: 420px;
}

.gict-simple-page__article h1 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.02;

    letter-spacing: -0.045em;
}

.gict-simple-page__placeholder {
    max-width: 620px;

    margin: 25px 0 0;

    color: var(--gict-muted);

    font-size: 17px;
    line-height: 1.75;
}

.gict-simple-page__content {
    margin-top: 30px;
}


/* ==========================================================
   2A RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .gict-page-hero__grid,
    .gict-service-pillar {
        grid-template-columns: 1fr;
    }

    .gict-page-hero__content {
        max-width: 760px;
    }

    .gict-custom-solutions,
    .gict-page-cta__inner {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 620px) {

    .gict-page-hero {
        padding: 48px 0 54px;
    }

    .gict-page-hero__visual img {
        aspect-ratio: 4 / 3;
    }

    .gict-services-page {
        padding: 68px 0 72px;
    }

    .gict-service-pillar {
        gap: 30px;

        padding: 46px 0;
    }

    .gict-service-pillar__content ul {
        grid-template-columns: 1fr;
    }

    .gict-custom-solutions {
        margin-top: 48px;
        padding: 26px;
    }

    .gict-page-cta {
        padding-bottom: 68px;
    }

    .gict-page-cta__inner {
        padding: 30px 25px;
    }

    .gict-simple-page {
        padding: 65px 0;
    }
}


/* ==========================================================
   GICT-WEB-2B — OUR WORK
   ========================================================== */

.gict-work-page-hero {
    padding: 78px 0 72px;

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(20,121,189,.12),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fbfdff,
            #f4f8fb
        );
}

.gict-work-page-hero__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(330px, .62fr);

    align-items: end;

    gap: 70px;
}

.gict-work-page-hero h1 {
    max-width: 760px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(44px, 6vw, 70px);
    line-height: 1;

    letter-spacing: -.052em;
}

.gict-work-page-hero__side > p {
    margin: 0;

    color: var(--gict-muted);

    font-size: 15px;
    line-height: 1.75;
}

.gict-work-page-hero__count {
    display: flex;
    align-items: baseline;

    gap: 11px;

    margin-top: 22px;
}

.gict-work-page-hero__count strong {
    color: var(--gict-blue);

    font-size: 36px;
    line-height: 1;
}

.gict-work-page-hero__count span {
    color: var(--gict-muted);

    font-size: 12px;
}


/* Projects */

.gict-projects-page {
    padding: 82px 0 96px;

    background: #fff;
}

.gict-projects-page__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.gict-project-card {
    overflow: hidden;

    border: 1px solid var(--gict-line);
    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 12px 32px rgba(16,42,67,.045);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.gict-project-card:hover {
    transform: translateY(-3px);

    border-color: rgba(20,121,189,.25);

    box-shadow:
        0 20px 45px rgba(16,42,67,.08);
}

.gict-project-card__media {
    min-height: 210px;

    display: grid;
    place-items: center;

    padding: 34px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f4f8fa
        );

    border-bottom: 1px solid var(--gict-line);
}

.gict-project-card__logo {
    width: 100%;
    max-width: 270px;
    max-height: 125px;

    object-fit: contain;
}

.gict-project-card__screenshot {
    width: 100%;
    height: 240px;

    object-fit: cover;

    border-radius: 12px;
}

.gict-project-card__content {
    display: flex;
    flex-direction: column;

    min-height: 315px;

    padding: 30px;
}

.gict-project-card__sector {
    margin: 0 0 8px;

    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.gict-project-card h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: 25px;
    line-height: 1.2;

    letter-spacing: -.025em;
}

.gict-project-card__summary {
    margin: 15px 0 23px;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.72;
}

.gict-project-card__services {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: auto;
}

.gict-project-card__services span {
    padding: 6px 9px;

    border-radius: 999px;

    background: var(--gict-soft-blue);
    color: var(--gict-blue-dark);

    font-size: 10px;
    font-weight: 700;
}

.gict-project-card__link {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: 21px;

    color: var(--gict-blue);

    font-size: 13px;
    font-weight: 750;
}


/* Growing portfolio */

.gict-portfolio-growth {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 55px;

    margin-top: 62px;
    padding: 42px;

    border: 1px solid var(--gict-line);
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            var(--gict-soft-blue),
            #fff
        );
}

.gict-portfolio-growth h2 {
    max-width: 650px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.08;

    letter-spacing: -.036em;
}

.gict-portfolio-growth div > p:last-child {
    max-width: 710px;

    margin: 14px 0 0;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.72;
}


@media (max-width: 850px) {

    .gict-work-page-hero__inner {
        grid-template-columns: 1fr;

        align-items: start;

        gap: 28px;
    }

    .gict-work-page-hero__side {
        max-width: 680px;
    }

    .gict-projects-page__grid {
        grid-template-columns: 1fr;
    }

    .gict-portfolio-growth {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 560px) {

    .gict-work-page-hero {
        padding: 52px 0 55px;
    }

    .gict-projects-page {
        padding: 64px 0 70px;
    }

    .gict-project-card__media {
        min-height: 170px;

        padding: 25px;
    }

    .gict-project-card__content {
        min-height: 0;

        padding: 25px;
    }

    .gict-portfolio-growth {
        margin-top: 48px;

        padding: 27px;
    }
}


/* ==========================================================
   GICT-WEB-2C INNOVATION PAGE
   ========================================================== */

.gict-impact-page-hero {
    padding: 70px 0 76px;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(20,121,189,.10),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #fbfdff,
            #f3f8fb
        );
}

.gict-impact-page-hero__grid {
    display: grid;

    grid-template-columns:
        minmax(0,.88fr)
        minmax(430px,1.12fr);

    align-items: center;

    gap: clamp(46px,7vw,90px);
}

.gict-impact-page-hero__content h1 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(44px,6vw,70px);
    line-height: 1;

    letter-spacing: -.052em;
}

.gict-impact-page-hero__content > p:last-child {
    max-width: 610px;

    margin: 24px 0 0;

    color: var(--gict-muted);

    font-size: 17px;
    line-height: 1.76;
}

.gict-impact-page-hero__visual {
    padding: 8px;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--gict-line);
    border-radius: 25px;

    box-shadow: var(--gict-shadow);
}

.gict-impact-page-hero__visual img {
    width: 100%;

    aspect-ratio: 16 / 8;

    object-fit: cover;

    border-radius: 18px;
}


/* Intro */

.gict-impact-page-intro {
    padding: 88px 0;

    background: #fff;
}

.gict-impact-page-intro__grid {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(400px,1.1fr);

    gap: clamp(50px,8vw,110px);
}

.gict-impact-page-intro h2 {
    max-width: 620px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(34px,4.4vw,52px);
    line-height: 1.06;

    letter-spacing: -.043em;
}

.gict-impact-page-intro__copy p {
    margin: 0 0 18px;

    color: var(--gict-muted);

    font-size: 15px;
    line-height: 1.8;
}

.gict-impact-page-intro__copy p:last-child {
    margin-bottom: 0;
}


/* Initiatives */

.gict-initiatives-page {
    padding: 90px 0 96px;

    background: #f5f9fc;

    border-top: 1px solid var(--gict-line);
    border-bottom: 1px solid var(--gict-line);
}

.gict-initiatives-page__heading {
    max-width: 750px;

    margin-bottom: 42px;
}

.gict-initiatives-page__heading h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(34px,4.5vw,52px);
    line-height: 1.06;

    letter-spacing: -.043em;
}

.gict-initiatives-page__grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 22px;
}

.gict-initiative-detail {
    overflow: hidden;

    border: 1px solid var(--gict-line);
    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 13px 34px rgba(16,42,67,.05);
}

.gict-initiative-detail__logo {
    min-height: 185px;

    display: grid;
    place-items: center;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #f5f8fa
        );

    border-bottom: 1px solid var(--gict-line);
}

.gict-initiative-detail__logo img {
    max-width: 290px;
    max-height: 125px;

    object-fit: contain;
}

.gict-initiative-detail__body {
    padding: 30px;
}

.gict-initiative-detail__label {
    margin: 0 0 8px;

    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.gict-initiative-detail h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: 28px;
    line-height: 1.18;

    letter-spacing: -.027em;
}

.gict-initiative-detail__body > p:not(
    .gict-initiative-detail__label
) {
    margin: 15px 0 24px;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.76;
}

.gict-initiative-detail__areas {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.gict-initiative-detail__areas span {
    padding: 6px 9px;

    border-radius: 999px;

    background: var(--gict-soft-blue);
    color: var(--gict-blue-dark);

    font-size: 10px;
    font-weight: 700;
}


/* 360 developing collaboration */

.gict-impact-collab-page {
    padding: 94px 0;

    background: #fff;
}

.gict-impact-collab-page__inner {
    display: grid;

    grid-template-columns:
        minmax(230px,.55fr)
        minmax(0,1.45fr);

    align-items: center;

    gap: clamp(42px,7vw,88px);

    padding:
        clamp(35px,5vw,60px);

    border: 1px solid rgba(20,121,189,.20);
    border-radius: 25px;

    background:
        linear-gradient(
            125deg,
            #fff,
            var(--gict-soft-blue)
        );
}

.gict-impact-collab-page__logo {
    display: grid;
    place-items: center;

    min-height: 190px;

    padding: 25px;

    background: rgba(255,255,255,.76);

    border-radius: 18px;
}

.gict-impact-collab-page__logo img {
    width: 100%;
    max-width: 230px;
    max-height: 130px;

    object-fit: contain;
}

.gict-impact-collab-page__label {
    margin: 0 0 9px;

    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.gict-impact-collab-page h2 {
    max-width: 720px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(32px,4.2vw,49px);
    line-height: 1.06;

    letter-spacing: -.042em;
}

.gict-impact-collab-page__content > p:not(
    .gict-impact-collab-page__label
) {
    max-width: 790px;

    margin: 17px 0 0;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.78;
}


/* Principles */

.gict-impact-principles {
    padding: 90px 0 96px;

    background:
        linear-gradient(
            180deg,
            #f6f9fb,
            #fff
        );
}

.gict-impact-principles__heading {
    max-width: 690px;

    margin-bottom: 38px;
}

.gict-impact-principles__heading h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(32px,4vw,46px);
    line-height: 1.08;

    letter-spacing: -.038em;
}

.gict-impact-principles__grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 18px;
}

.gict-impact-principles__grid article {
    min-height: 230px;

    padding: 28px;

    border: 1px solid var(--gict-line);
    border-radius: 18px;

    background: #fff;
}

.gict-impact-principles__grid article > span {
    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;
}

.gict-impact-principles__grid h3 {
    margin: 27px 0 0;

    color: var(--gict-navy);

    font-size: 20px;
    line-height: 1.25;
}

.gict-impact-principles__grid p {
    margin: 11px 0 0;

    color: var(--gict-muted);

    font-size: 13px;
    line-height: 1.72;
}


@media (max-width: 900px) {

    .gict-impact-page-hero__grid,
    .gict-impact-page-intro__grid {
        grid-template-columns: 1fr;
    }

    .gict-impact-page-hero__content {
        max-width: 760px;
    }

    .gict-impact-collab-page__inner {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 720px) {

    .gict-initiatives-page__grid,
    .gict-impact-principles__grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 560px) {

    .gict-impact-page-hero {
        padding: 50px 0 54px;
    }

    .gict-impact-page-hero__visual img {
        aspect-ratio: 4 / 3;
    }

    .gict-impact-page-intro,
    .gict-initiatives-page,
    .gict-impact-collab-page,
    .gict-impact-principles {
        padding-top: 66px;
        padding-bottom: 70px;
    }

    .gict-initiative-detail__logo {
        min-height: 155px;
    }

    .gict-initiative-detail__body {
        padding: 25px;
    }

    .gict-impact-collab-page__inner {
        padding: 25px;
    }

    .gict-impact-collab-page__logo {
        min-height: 150px;
    }

    .gict-impact-principles__grid article {
        min-height: 0;
        padding: 25px;
    }
}


/* ==========================================================
   GICT-WEB-2D ABOUT
   ========================================================== */

.gict-about-hero {
    padding: 70px 0 76px;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(20,121,189,.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbfdff,
            #f4f8fb
        );
}

.gict-about-hero__grid {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(430px,1.1fr);

    align-items: center;

    gap: clamp(46px,7vw,90px);
}

.gict-about-hero__content h1 {
    max-width: 720px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(44px,6vw,70px);
    line-height: 1;

    letter-spacing: -.052em;
}

.gict-about-hero__content > p:last-child {
    max-width: 650px;

    margin: 24px 0 0;

    color: var(--gict-muted);

    font-size: 17px;
    line-height: 1.76;
}

.gict-about-hero__visual {
    padding: 8px;

    overflow: hidden;

    border: 1px solid var(--gict-line);
    border-radius: 25px;

    background: #fff;

    box-shadow: var(--gict-shadow);
}

.gict-about-hero__visual img {
    width: 100%;

    aspect-ratio: 16 / 8;

    object-fit: cover;

    border-radius: 18px;
}


/* About introduction */

.gict-about-intro {
    padding: 92px 0;

    background: #fff;
}

.gict-about-intro__grid {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(400px,1.1fr);

    gap: clamp(52px,8vw,112px);
}

.gict-about-intro h2 {
    max-width: 620px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(35px,4.5vw,53px);
    line-height: 1.05;

    letter-spacing: -.044em;
}

.gict-about-intro__copy p {
    margin: 0 0 18px;

    color: var(--gict-muted);

    font-size: 15px;
    line-height: 1.8;
}

.gict-about-intro__copy p:last-child {
    margin-bottom: 0;
}


/* Capabilities */

.gict-about-capabilities {
    padding: 90px 0 96px;

    background: #f5f9fc;

    border-top: 1px solid var(--gict-line);
    border-bottom: 1px solid var(--gict-line);
}

.gict-about-capabilities__heading {
    max-width: 760px;

    margin-bottom: 40px;
}

.gict-about-capabilities__heading h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(34px,4.4vw,52px);
    line-height: 1.06;

    letter-spacing: -.043em;
}

.gict-about-capabilities__grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 15px;
}

.gict-about-capabilities__grid article {
    min-height: 255px;

    padding: 28px;

    border: 1px solid var(--gict-line);
    border-radius: 18px;

    background: #fff;
}

.gict-about-capabilities__grid span {
    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;
}

.gict-about-capabilities__grid h3 {
    margin: 30px 0 0;

    color: var(--gict-navy);

    font-size: 20px;
    line-height: 1.25;
}

.gict-about-capabilities__grid p {
    margin: 11px 0 0;

    color: var(--gict-muted);

    font-size: 13px;
    line-height: 1.72;
}


/* Method */

.gict-about-method {
    padding: 94px 0;

    background: #fff;
}

.gict-about-method__grid {
    display: grid;

    grid-template-columns:
        minmax(0,.82fr)
        minmax(450px,1.18fr);

    gap: clamp(55px,8vw,110px);
}

.gict-about-method__heading h2 {
    max-width: 570px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(34px,4.3vw,50px);
    line-height: 1.06;

    letter-spacing: -.042em;
}

.gict-about-method__steps {
    border-top: 1px solid var(--gict-line);
}

.gict-about-method__steps article {
    display: grid;

    grid-template-columns: 46px minmax(0,1fr);

    gap: 20px;

    padding: 24px 0;

    border-bottom: 1px solid var(--gict-line);
}

.gict-about-method__number {
    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;
}

.gict-about-method__steps h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: 19px;
    line-height: 1.25;
}

.gict-about-method__steps p {
    max-width: 630px;

    margin: 8px 0 0;

    color: var(--gict-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* Principles */

.gict-about-principles {
    padding: 88px 0 96px;

    background:
        linear-gradient(
            180deg,
            #f6f9fb,
            #fff
        );
}

.gict-about-principles__heading {
    max-width: 720px;

    margin-bottom: 38px;
}

.gict-about-principles__heading h2 {
    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(32px,4vw,47px);
    line-height: 1.07;

    letter-spacing: -.04em;
}

.gict-about-principles__grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 15px;
}

.gict-about-principles__grid article {
    padding: 27px;

    border: 1px solid var(--gict-line);
    border-radius: 18px;

    background: #fff;
}

.gict-about-principles__grid h3 {
    margin: 0;

    color: var(--gict-navy);

    font-size: 19px;
}

.gict-about-principles__grid p {
    margin: 11px 0 0;

    color: var(--gict-muted);

    font-size: 13px;
    line-height: 1.7;
}


@media (max-width: 940px) {

    .gict-about-hero__grid,
    .gict-about-intro__grid,
    .gict-about-method__grid {
        grid-template-columns: 1fr;
    }

    .gict-about-capabilities__grid,
    .gict-about-principles__grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }
}


@media (max-width: 560px) {

    .gict-about-hero {
        padding: 50px 0 54px;
    }

    .gict-about-hero__visual img {
        aspect-ratio: 4 / 3;
    }

    .gict-about-intro,
    .gict-about-capabilities,
    .gict-about-method,
    .gict-about-principles {
        padding-top: 66px;
        padding-bottom: 70px;
    }

    .gict-about-capabilities__grid,
    .gict-about-principles__grid {
        grid-template-columns: 1fr;
    }

    .gict-about-capabilities__grid article {
        min-height: 0;
    }
}


/* ==========================================================
   GICT-WEB-2E CONTACT
   ========================================================== */

.gict-contact-hero {
    padding: 70px 0 76px;

    background:
        radial-gradient(
            circle at 9% 12%,
            rgba(20,121,189,.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fbfdff,
            #f4f8fb
        );
}

.gict-contact-hero__grid {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(430px,1.1fr);

    align-items: center;

    gap: clamp(46px,7vw,90px);
}

.gict-contact-hero__content h1 {
    max-width: 760px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(44px,6vw,70px);
    line-height: 1;

    letter-spacing: -.052em;
}

.gict-contact-hero__content > p:last-child {
    max-width: 650px;

    margin: 24px 0 0;

    color: var(--gict-muted);

    font-size: 17px;
    line-height: 1.76;
}

.gict-contact-hero__visual {
    padding: 8px;

    overflow: hidden;

    border: 1px solid var(--gict-line);
    border-radius: 25px;

    background: #fff;

    box-shadow: var(--gict-shadow);
}

.gict-contact-hero__visual img {
    width: 100%;

    aspect-ratio: 16 / 8;

    object-fit: cover;

    border-radius: 18px;
}


/* Contact body */

.gict-contact-main {
    padding: 92px 0 100px;

    background: #fff;
}

.gict-contact-main__grid {
    display: grid;

    grid-template-columns:
        minmax(300px,.72fr)
        minmax(500px,1.28fr);

    align-items: start;

    gap: clamp(55px,8vw,110px);
}

.gict-contact-details {
    position: sticky;

    top: 115px;
}

.gict-contact-details h2 {
    max-width: 500px;

    margin: 0;

    color: var(--gict-navy);

    font-size: clamp(34px,4vw,48px);
    line-height: 1.06;

    letter-spacing: -.041em;
}

.gict-contact-details > p:not(.gict-eyebrow) {
    max-width: 500px;

    margin: 19px 0 35px;

    color: var(--gict-muted);

    font-size: 14px;
    line-height: 1.76;
}

.gict-contact-detail {
    padding: 20px 0;

    border-top: 1px solid var(--gict-line);
}

.gict-contact-detail:last-child {
    border-bottom: 1px solid var(--gict-line);
}

.gict-contact-detail > span {
    display: block;

    margin-bottom: 7px;

    color: var(--gict-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.gict-contact-detail a {
    color: var(--gict-navy);

    font-size: 17px;
    font-weight: 750;
}

.gict-contact-detail p {
    max-width: 470px;

    margin: 0;

    color: var(--gict-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* Form */

.gict-contact-form-shell {
    padding: clamp(28px,4vw,44px);

    border: 1px solid var(--gict-line);
    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fbfdfe
        );

    box-shadow:
        0 16px 40px rgba(16,42,67,.06);
}

.gict-contact-form {
    display: grid;

    gap: 21px;
}

.gict-form-row {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 18px;
}

.gict-form-field {
    display: grid;

    gap: 8px;
}

.gict-form-field label {
    color: var(--gict-navy);

    font-size: 12px;
    font-weight: 750;
}

.gict-form-field label span {
    color: var(--gict-blue);
}

.gict-form-field input,
.gict-form-field select,
.gict-form-field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #cad7e0;
    border-radius: 10px;

    outline: 0;

    background: #fff;
    color: var(--gict-text);

    font: inherit;
    font-size: 14px;

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.gict-form-field select {
    min-height: 48px;
}

.gict-form-field textarea {
    min-height: 160px;

    resize: vertical;
}

.gict-form-field input:focus,
.gict-form-field select:focus,
.gict-form-field textarea:focus {
    border-color: var(--gict-blue);

    box-shadow:
        0 0 0 3px rgba(20,121,189,.10);
}

.gict-contact-form__footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 2px;
}

.gict-contact-form__footer p {
    margin: 0;

    color: var(--gict-muted);

    font-size: 11px;
}

.gict-form-honeypot {
    position: absolute !important;

    left: -99999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* Notices */

.gict-form-notice {
    margin-bottom: 25px;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 13px;
    line-height: 1.55;
}

.gict-form-notice--success {
    border: 1px solid #badfc5;

    background: #f0faf3;
    color: #235f35;
}

.gict-form-notice--error {
    border: 1px solid #ebc6c6;

    background: #fff5f5;
    color: #8a3232;
}


@media (max-width: 940px) {

    .gict-contact-hero__grid,
    .gict-contact-main__grid {
        grid-template-columns: 1fr;
    }

    .gict-contact-details {
        position: static;

        max-width: 720px;
    }
}


@media (max-width: 620px) {

    .gict-contact-hero {
        padding: 50px 0 54px;
    }

    .gict-contact-hero__visual img {
        aspect-ratio: 4 / 3;
    }

    .gict-contact-main {
        padding: 66px 0 72px;
    }

    .gict-form-row {
        grid-template-columns: 1fr;
    }

    .gict-contact-form-shell {
        padding: 24px;
    }

    .gict-contact-form__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ==========================================================
   GICT-WEB-2E-A1 RECAPTCHA
   ========================================================== */

.gict-form-recaptcha {
    min-height: 78px;

    display: flex;
    align-items: center;

    padding-top: 3px;
}

.gict-form-recaptcha .g-recaptcha {
    max-width: 100%;
}

@media (max-width: 420px) {

    .gict-form-recaptcha {
        transform-origin: left top;
    }

    .gict-form-recaptcha .g-recaptcha {
        transform: scale(.90);
        transform-origin: left top;

        margin-bottom: -7px;
    }
}


/* ==========================================================
   GICT-WEB-3C PRIVACY / LEGAL
   ========================================================== */

.gict-footer__legal {
    display: flex;
    align-items: center;

    gap: 18px;
}

.gict-footer__legal a {
    color: #687d8d;

    font-size: 11px;
    font-weight: 650;
}

.gict-footer__legal a:hover,
.gict-footer__legal a:focus-visible {
    color: var(--gict-blue);
}

.gict-simple-page__content {
    color: var(--gict-muted);

    font-size: 15px;
    line-height: 1.8;
}

.gict-simple-page__content h2 {
    margin: 42px 0 14px;

    color: var(--gict-navy);

    font-size: 25px;
    line-height: 1.25;

    letter-spacing: -0.025em;
}

.gict-simple-page__content p {
    margin: 0 0 17px;
}

.gict-simple-page__content ul {
    margin: 0 0 22px;
    padding-left: 22px;
}

.gict-simple-page__content li {
    margin: 7px 0;
}

.gict-simple-page__content a {
    color: var(--gict-blue);

    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 620px) {

    .gict-footer__legal {
        align-items: flex-start;
        flex-direction: column;

        gap: 7px;
    }

    .gict-simple-page__content h2 {
        margin-top: 34px;

        font-size: 22px;
    }
}
