/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #0758d5;
    --primary-light: #168cff;

    --blue: #1487ed;

    --dark: #020817;
    --dark-blue: #061535;

    --red: #ed1c24;

    --white: #ffffff;

    --light-bg: #f6f9fd;

    --text: #16233d;
    --muted: #6c788c;

    --border: #e5ebf3;

    --gradient-blue:
        linear-gradient(135deg,
            #0757d5,
            #168cff);

    --gradient-main:
        linear-gradient(135deg,
            #0757d5,
            #278cf5,
            #ed1c24);

    --container:
        1180px;

    --shadow:
        0 20px 60px rgba(6, 45, 95, .10);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: #ffffff;

    line-height: 1.7;

    overflow-x: hidden;

}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width:
        min(var(--container),
            calc(100% - 40px));

    margin: auto;

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 20px 0;
}

.section-heading {

    text-align: center;

    max-width: 750px;

    margin:
        0 auto 55px;

}

.section-label {

    display: block;

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 8px;

}

.section-heading h2 {

    font-family: "Manrope", sans-serif;

    color: var(--dark-blue);

    font-size:
        clamp(32px,
            4vw,
            46px);

    line-height: 1.15;

    font-weight: 800;

}

.section-heading p {

    color: var(--muted);

    margin-top: 18px;

    font-size: 15px;

}

.section-heading::after {

    content: "";

    display: block;

    width: 75px;

    height: 3px;

    margin:
        18px auto 0;

    background:
        linear-gradient(90deg,
            var(--red),
            var(--primary),
            var(--red));

    border-radius: 10px;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    z-index: 1000;

    background:
      #eaebef;

    backdrop-filter:
        blur(8px);

    transition:
        all .3s ease;

}

.site-header.scrolled {

    height: 72px;

 background:
      #eaebef;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .18);

}

.navbar {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.brand img {
    width: 220px;
    transition: .3s ease;
    padding-top: 10px;
}

.site-header.scrolled .brand img {

    width: 190px;

}

.nav-menu {

    list-style: none;

    display: flex;

    align-items: center;

    gap: 32px;

}

.nav-link {

    position: relative;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -9px;

    width: 0;

    height: 2px;

    background: var(--red);

    transition: .3s ease;

}

.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}

.mobile-menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 8px;

    color: var(--primary);

    background:
        rgba(255, 255, 255, .1);

    font-size: 19px;

}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 469px;
    /* height: 100vh; */
    max-height: 900px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background: url(../images/hero-banner.png) center center / cover no-repeat;
    overflow: hidden;
    padding-top: 20px;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(90deg,
            rgba(1, 7, 22, .96) 0%,
            rgba(2, 10, 28, .84) 38%,
            rgba(2, 10, 28, .35) 67%,
            rgba(2, 5, 15, .60) 100%);

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 690px;

    padding-top: 0px;

}

.hero-kicker {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #74baff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

.hero-kicker::before {

    content: "";

    width: 35px;

    height: 2px;

    background: var(--red);

}

.hero-content h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(27px, 6vw, 40px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

* .blue-text {
    color: #1698ff;
}

.red-text {
    color: #ff3037;
}

.hero-content p {

    max-width: 650px;

    color:
        rgba(255,
            255,
            255,
            .76);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    gap: 14px;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        14px 24px;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .4px;

    transition: .3s ease;

}

.btn-primary {

    color: #fff;

    background:
        var(--gradient-main);

    box-shadow:
        0 10px 30px rgba(20, 120, 230, .3);

}

.btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(20, 120, 230, .4);

}

.btn-outline {

    color: #fff;

    border:
        1px solid rgba(255, 255, 255, .35);

    background:
        rgba(255, 255, 255, .05);

}

.btn-outline:hover {

    background:
        rgba(255, 255, 255, .12);

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    position: relative;

    z-index: 10;

    margin-top: -65px;

}

.stats-wrapper {

    background: #fff;

    border-radius: 15px;

    padding: 25px 15px;

    box-shadow:
        0 20px 60px rgba(5, 35, 80, .13);

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

}

.stat-item {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 15px 20px;

}

.stat-item:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;

    top: 15px;

    width: 1px;

    height: 55px;

    background:
        var(--border);

}

.stat-icon {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    color:
        var(--primary);

    font-size: 22px;

}

.stat-item h3 {

    color:
        var(--dark-blue);

    font-family:
        "Manrope",
        sans-serif;

    font-size: 30px;

    line-height: 1.1;

}

.stat-item p {

    color:
        var(--muted);

    font-size: 11px;

    font-weight: 600;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: #fff;
}

.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.service-card {

    position: relative;

    padding: 38px 32px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    background: #fff;

    transition: .35s ease;

}

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background:
        var(--gradient-main);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition: .35s ease;

}

.service-card:hover {

    transform:
        translateY(-9px);

    box-shadow:
        var(--shadow);

}

.service-card:hover::before {

    transform:
        scaleX(1);

}

.service-number {

    position: absolute;

    right: 25px;

    top: 20px;

    font-size: 48px;

    font-weight: 800;

    color: #dceeff;

}

.service-icon {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background:
        var(--gradient-blue);

    margin-bottom: 25px;

}

.service-card h3 {

    color:
        var(--dark-blue);

    font-size: 18px;

    margin-bottom: 12px;

}

.service-card p {

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 22px;

}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

}

.service-link i {

    transition: .3s ease;

}

.service-link:hover i {

    transform:
        translateX(5px);

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    color: #fff;

    background:
        linear-gradient(110deg,
            #020b20,
            #071d43,
            #070d24);

    overflow: hidden;

}

.about-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 75px;

}

.about-content h2 {

    color: #fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(35px,
            4vw,
            50px);

    line-height: 1.1;

    margin-bottom: 25px;

}

.about-content p {

    color:
        rgba(255,
            255,
            255,
            .68);

    font-size: 14px;

    margin-bottom: 15px;

}

.about-content .btn {

    margin-top: 18px;

}

.about-images {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    transform:
        skewX(-7deg);

}

.about-image {

    height: 190px;

    border-radius: 8px;

    background-size: cover;

    background-position: center;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .25);

}

.image-one {

    background-image:
        url("../images/about-img.png");

}

.image-two {

    margin-top: 15px;

    background-image:
        url("../images/about-img-2.png");

}

.image-three {

    background-image:
        url("../images/about-image-3.png");

}

.image-four {

    margin-top: 15px;

    background-image:
        url("../images/about-img-4.png");

}


/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities-section {

    background: #fff;

}

.capabilities-grid {

    display:
        grid;

    grid-template-columns:
        repeat(5, 1fr);

    border:
        1px solid var(--border);

    border-radius: 15px;

    overflow: hidden;

}

.capability-item {

    padding: 35px 20px;

    text-align: center;

    border-right:
        1px solid var(--border);

    transition: .3s ease;

}

.capability-item:last-child {

    border-right: none;

}

.capability-item:hover {

    background:
        #f5f9ff;

}

.capability-item i {

    color:
        var(--primary);

    font-size: 27px;

    margin-bottom: 17px;

}

.capability-item h4 {

    color:
        var(--dark-blue);

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   CLIENTELE
========================================================= */

.clientele-section {

    background:
        var(--light-bg);

}

.client-box {

    display:
        grid;

    grid-template-columns:
        .8fr 1.2fr;

    align-items: center;

    gap: 60px;

    background:
        #fff;

    padding: 55px;

    border-radius: 20px;

    box-shadow:
        0 15px 50px rgba(8, 48, 100, .06);

}

.client-logo-area {

    display: flex;

    justify-content: center;

    align-items: center;

}

.client-logo-text {

    display: flex;

    flex-direction: column;

    align-items: center;

}

.client-logo-text span {

    font-family:
        "Manrope",
        sans-serif;
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    background:
        linear-gradient(90deg,
            #1477e8,
            #53c7f3);
    -webkit-background-clip:
        text;
    -webkit-text-fill-color:
        transparent;

}

.client-logo-text small {

    color: #111;
    font-size: 20px;
    letter-spacing: 5px;
    margin-top: 8px;

}

.client-content h3 {

    color:
        var(--dark-blue);
    font-size: 25px;
    margin-bottom: 15px;

}

.client-content p {

    color:
        var(--muted);
    font-size: 14px;
    margin-bottom: 25px;

}


/* =========================================================
   NEWS
========================================================= */

.news-section {

    background: #fff;

}

.news-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.news-card {

    border:
        1px solid var(--border);

    border-radius: 15px;

    overflow: hidden;

    background: #fff;

    transition: .35s ease;

}

.news-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}

.news-image {

    height: 210px;

    background:
        center / cover no-repeat;

}

.news-content {

    padding: 27px;

}

.news-category {

    color:
        var(--red);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}

.news-content h3 {

    color:
        var(--dark-blue);

    font-size: 18px;

    line-height: 1.4;

    margin:
        10px 0;

}

.news-content p {

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 20px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    color: #fff;

    background:
        radial-gradient(circle at 90% 50%,
            rgba(237, 28, 36, .18),
            transparent 35%),
        linear-gradient(100deg,
            #020a1e,
            #071c40);

}

.contact-grid {

    display:
        grid;

    grid-template-columns:
        .8fr 1.2fr;

    align-items: center;

    gap: 70px;

}

.contact-content h2 {

    color: #fff;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(35px,
            4vw,
            50px);

    line-height: 1.1;

}

.contact-content p {

    max-width: 450px;

    color:
        rgba(255,
            255,
            255,
            .68);

    font-size: 14px;

    margin-top: 20px;

}

.contact-form {

    display: flex;
    flex-direction: column;
    gap: 15px;

}

.form-row {

    display:
        grid;
    grid-template-columns:
        1fr 1fr;
    gap: 15px;

}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
    border:
        1px solid rgba(255,
            255,
            255,
            .13);
    background:
        rgba(255,
            255,
            255,
            .06);
    color: #fff;
    outline: none;
    border-radius: 6px;
    padding:
        14px 16px;
    font-size: 13px;
    transition: .3s ease;

}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color:
        rgba(255,
            255,
            255,
            .5);

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--primary-light);

}

.form-group select option {

    color: #111;

}

.form-group textarea {

    min-height: 130px;

    resize: vertical;

}

.form-message {

    font-size: 13px;

    color: #4ee49a;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #eaebefa8;
    color:var(--primary);
    padding-top: 70px;
}

.footer-grid {

    display:
        grid;

    grid-template-columns:
        2.5fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

}

.footer-logo {

    width: 185px;

    margin-bottom: 20px;

}

.footer-brand p {

    max-width: 320px;

    font-size: 13px;

    line-height: 1.8;

}

.footer-column h4 {

    color: var(--primary);

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

.footer-column ul {

    list-style: none;

}

.footer-column li {

    margin-bottom: 10px;

}

.footer-column li a {

    font-size: 12px;

    transition: .25s ease;

}

.footer-column li a:hover {

    color: #fff;

}

.footer-contact li {

    display:
        flex;

    align-items:
        flex-start;

    gap: 10px;

    font-size: 12px;

}

.footer-contact i {

    color:
        #2188ff;

    margin-top: 4px;

}

.social-links {

    display:
        flex;

    gap: 9px;

    margin-top: 20px;

}

.social-links a {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--primary);

    border-radius: 50%;

    color: var(--primary);

    font-size: 12px;

    transition: .3s ease;

}

.social-links a:hover {

    background:
        var(--primary);

    border-color:
        var(--primary);

    transform:
        translateY(-3px);

}

.footer-bottom {

    border-top:
        1px solid var(--primary);

    padding:
        20px 0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    font-size: 11px;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 50%;

    background:
        var(--gradient-main);

    color: #fff;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: .3s ease;

    z-index: 999;

}

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.reveal.active {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {

        gap: 20px;

    }

    .services-grid,
    .news-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .capabilities-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .capability-item:nth-child(3) {

        border-right: none;

    }

    .about-grid,
    .contact-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }

    .client-box {

        grid-template-columns:
            1fr;

        text-align: center;

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 768px) {

    .container {

        width:
            min(100% - 30px,
                650px);

    }

    .site-header {

        height: 72px;

    }

    .brand img {

        width: 155px;

    }

    .mobile-menu-btn {

        display: grid;

        place-items: center;

    }

    .nav-menu {

        position: absolute;

        left: 15px;

        right: 15px;

        top: 72px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        padding: 20px;

        background:
            rgba(2,
                10,
                30,
                .98);

        border-radius: 10px;

    }

    .nav-menu.active {

        display: flex;

    }

    .nav-menu li {

        width: 100%;

    }

    .nav-link {

        display: block;

        padding: 9px 0;

    }

    .hero-section {

        height: auto;

        min-height: 720px;

        padding:
            140px 0 120px;

        background-position:
            65% center;

    }

    .hero-content h1 {

        font-size:
            clamp(42px,
                11vw,
                62px);

    }

    .stats-wrapper {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .stat-item:nth-child(2)::after {

        display: none;

    }

    .services-grid,
    .news-grid {

        grid-template-columns:
            1fr;

    }

    .capabilities-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .capability-item:nth-child(3) {

        border-right:
            1px solid var(--border);

    }

    .capability-item:nth-child(even) {

        border-right: none;

    }

    .capability-item:last-child {

        grid-column:
            1 / -1;

        border-right: none;

        border-top:
            1px solid var(--border);

    }

    .about-images {

        transform: none;

    }

    .image-two,
    .image-four {

        margin-top: 0;

    }

    .form-row {

        grid-template-columns:
            1fr;

    }

    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

    }

    .footer-bottom {

        flex-direction:
            column;

        gap: 8px;

        text-align:
            center;

    }

}


@media (max-width: 480px) {

    .stats-wrapper {

        grid-template-columns:
            1fr;

    }

    .stat-item {

        border-bottom:
            1px solid var(--border);

    }

    .stat-item:last-child {

        border-bottom: none;

    }

    .stat-item::after {

        display: none !important;

    }

    .hero-buttons {

        flex-direction:
            column;

    }

    .btn {

        width: 100%;

    }

    .capabilities-grid {

        grid-template-columns:
            1fr;

    }

    .capability-item {

        border-right: none !important;

        border-bottom:
            1px solid var(--border);

    }

    .capability-item:last-child {

        border-bottom: none;

    }

    .client-box {

        padding:
            30px 20px;

    }

}