/* =====================================================
                    GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #101828;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    transition: 0.3s ease;
}


/* =====================================================
                    HEADER
===================================================== */

header {
    width: 100%;
    height: 90px;

    background: rgba(255, 255, 255, 0.97);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    position: sticky;
    top: 0;

    z-index: 1000;

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);

    backdrop-filter: blur(10px);
}

/* =====================================================
                    LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;

    height: 60px;
}

.logo img {
    width: 52px;
    height: 52px;

    border-radius: 12px;

    object-fit: cover;
    object-position: center;

    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.16);
}

.logo-name {
    display: block;

    color: #101828;

    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-name strong {
    color: #2563eb;
}

.logo-name small {
    display: block;

    font-size: 8px;
    font-weight: 700;

    color: #667085;

    letter-spacing: 2px;

    margin-top: 4px;
}
/* =====================================================
                    MENU BUTTON
===================================================== */

.menu-btn {
    width: 58px;
    height: 58px;

    border: none;
    border-radius: 15px;

    background: #f4f3ff;

    cursor: pointer;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 6px;

    transition: 0.3s ease;
}

.menu-btn:hover {
    background: #ede9fe;
    transform: scale(1.04);
}

.menu-btn span {
    width: 29px;
    height: 3px;

    background: #5b21b6;

    border-radius: 5px;

    transition: 0.3s ease;
}


/* =====================================================
                    MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    top: 90px;
    right: -340px;

    width: 320px;
    height: calc(100vh - 90px);

    background: #080f1c;

    padding: 35px;

    transition: right 0.4s ease;

    z-index: 999;

    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.25);

    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;

    color: white;

    text-decoration: none;

    font-size: 20px;

    font-weight: 600;

    padding: 20px 0;

    border-bottom: 1px solid #263244;
}

.mobile-menu a:hover {
    color: #a78bfa;
    padding-left: 8px;
}


/* =====================================================
                    HERO SECTION
===================================================== */

.hero {
    min-height: calc(100vh - 90px);

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 90px 7%;

    /*
        IMAGE LOCATION:

        index.html
        style.css
        images/
            software-office.png

        IMPORTANT:
        The image path is relative to style.css.
    */

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 10, 25, 0.88) 0%,
            rgba(5, 10, 25, 0.68) 35%,
            rgba(5, 10, 25, 0.38) 65%,
            rgba(5, 10, 25, 0.18) 100%
        ),
        url("./images/software-office.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


/*
    EXTRA HERO OVERLAY

    Helps text remain readable while
    keeping the background image visible.
*/

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(37, 99, 235, 0.12),
            transparent 45%
        );

    pointer-events: none;
}


/* =====================================================
                    HERO CONTENT
===================================================== */

.hero-content {
    max-width: 900px;

    position: relative;

    z-index: 2;
}


/* =====================================================
                    HERO SMALL TITLE
===================================================== */

.eyebrow {
    color: #c4b5fd;

    font-size: 16px;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 30px;

    text-transform: uppercase;
}


/* =====================================================
                    HERO HEADING
===================================================== */

.hero h1 {
    color: white;

    font-size: clamp(55px, 8vw, 100px);

    line-height: 0.98;

    letter-spacing: -5px;

    margin-bottom: 40px;

    max-width: 950px;
}


/* =====================================================
                    HERO GRADIENT TEXT
===================================================== */

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            #c4b5fd,
            #60a5fa
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* =====================================================
                    HERO DESCRIPTION
===================================================== */

.hero-description {
    color: #e5e7eb;

    font-size: 23px;

    line-height: 1.7;

    max-width: 800px;

    margin-bottom: 40px;
}


/* =====================================================
                    BUTTONS
===================================================== */

.buttons {
    display: flex;

    gap: 18px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 20px 34px;

    text-decoration: none;

    font-size: 19px;

    font-weight: bold;

    border-radius: 10px;

    transition: 0.3s ease;
}


/* =====================================================
                    PRIMARY BUTTON
===================================================== */

.btn-primary {
    color: white;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #2563eb
        );

    box-shadow:
        0 10px 30px
        rgba(37, 99, 235, 0.30);
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(124, 58, 237, 0.45);
}


/* =====================================================
                    OUTLINE BUTTON
===================================================== */

.btn-outline {
    color: white;

    border:
        1px solid
        rgba(255, 255, 255, 0.7);

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: white;

    color: #111827;

    border-color: white;
}


/* =====================================================
                    ABOUT / WHAT WE DO
===================================================== */

.what-we-do {
    padding: 110px 7%;

    background: #f8f9fc;
}

.section-label {
    color: #7c3aed;

    font-weight: bold;

    letter-spacing: 4px;

    font-size: 15px;

    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.08;

    letter-spacing: -3px;

    max-width: 1050px;
}

.section-description {
    margin-top: 40px;

    font-size: 22px;

    line-height: 1.8;

    color: #667085;

    max-width: 850px;
}


/* =====================================================
                    SERVICES
===================================================== */

.services {
    background: #f8f9fc;

    padding: 20px 6% 100px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

.service-card {
    padding: 50px;

    background: white;

    border:
        1px solid #eaecf0;

    border-radius: 22px;

    min-height: 420px;

    box-shadow:
        0 10px 40px
        rgba(16, 24, 40, 0.05);

    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #c4b5fd;

    box-shadow:
        0 20px 50px
        rgba(16, 24, 40, 0.12);
}


/* =====================================================
                    SERVICE ICON
===================================================== */

.service-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 30px;

    color: #5b21b6;

    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #dbeafe
        );

    margin-bottom: 35px;
}


/* =====================================================
                    SERVICE TITLE
===================================================== */

.service-card h3 {
    font-size: 35px;

    margin-bottom: 20px;
}


/* =====================================================
                    SERVICE DESCRIPTION
===================================================== */

.service-card p {
    font-size: 19px;

    line-height: 1.7;

    color: #667085;
}


/* =====================================================
                    LEARN MORE
===================================================== */

.learn-more {
    display: inline-block;

    margin-top: 30px;

    color: #2563eb;

    font-size: 18px;

    font-weight: bold;

    text-decoration: none;
}

.learn-more:hover {
    color: #7c3aed;

    transform: translateX(5px);
}


/* =====================================================
                    TECHNOLOGY
===================================================== */

.tech-section {
    padding: 90px 7%;

    text-align: center;

    background: white;
}

.tech-section h2 {
    font-size: 45px;

    margin-bottom: 40px;
}

.tech-list {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}

.tech {
    padding: 15px 25px;

    background: #f4f3ff;

    color: #5b21b6;

    border:
        1px solid #e5e7eb;

    border-radius: 50px;

    font-weight: bold;

    box-shadow:
        0 5px 15px
        rgba(0, 0, 0, 0.04);

    transition: 0.3s ease;
}

.tech:hover {
    transform: translateY(-3px);

    background: #ede9fe;

    border-color: #c4b5fd;
}


/* =====================================================
                    CTA
===================================================== */

.cta {
    padding: 110px 7%;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #4c1d95,
            #1d4ed8
        );
}

.cta h2 {
    font-size: clamp(45px, 6vw, 70px);

    margin-bottom: 25px;
}

.cta p {
    font-size: 21px;

    line-height: 1.7;

    max-width: 700px;

    margin:
        0 auto 40px;

    color: #e0e7ff;
}

.contact-form {
    max-width: 720px;

    margin: 45px auto 0;

    padding: 30px;

    text-align: left;

    background: rgba(8, 15, 28, 0.28);

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 14px;

    backdrop-filter: blur(8px);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: white;

    font-weight: bold;
}

.form-field input,
.form-field textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 8px;

    color: #101828;

    background: white;

    font: inherit;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 3px solid rgba(196, 181, 253, 0.5);

    border-color: #c4b5fd;
}

.contact-form .cta-button {
    border: none;

    cursor: pointer;

    font-size: 16px;
}

.form-note {
    margin: 18px 0 0;

    font-size: 14px !important;

    line-height: 1.5 !important;
}

.cta-button {
    display: inline-block;

    padding: 17px 28px;

    background: white;

    color: #111827;

    text-decoration: none;

    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);

    background: #f4f3ff;
}


/* =====================================================
                    FOOTER
===================================================== */

footer {
    background: #080f1c;

    color: white;

    padding: 60px 7%;

    display: flex;

    justify-content: space-between;

    gap: 50px;

    flex-wrap: wrap;
}

footer strong {
    font-size: 20px;
}

footer p {
    color: #98a2b3;

    line-height: 1.6;

    margin-top: 10px;
}


/* =====================================================
                    WHATSAPP
===================================================== */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 62px;
    height: 62px;

    border-radius: 50%;

    background: #22c55e;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    font-size: 27px;

    text-decoration: none;

    z-index: 2000;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.25);

    transition: 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
}


/* =====================================================
                    INNER HERO
                    ABOUT / SERVICES
===================================================== */

.inner-hero {
    min-height: 520px;

    display: flex;

    align-items: center;

    padding: 100px 7%;

    color: white;

    position: relative;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 8, 20, 0.88),
            rgba(20, 16, 68, 0.68),
            rgba(7, 27, 53, 0.40)
        ),
        url("./images/software-office.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}

.inner-hero > div {
    max-width: 900px;

    position: relative;

    z-index: 2;
}

.inner-hero h1 {
    font-size: clamp(48px, 7vw, 85px);

    line-height: 1;

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.inner-hero p {
    max-width: 760px;

    font-size: 21px;

    line-height: 1.7;

    color: #d1d5db;
}


/* =====================================================
                    ABOUT CONTENT
===================================================== */

.about-content {
    padding: 110px 7%;

    background: #f8f9fc;
}

.large-text {
    font-size: 25px;

    line-height: 1.7;

    color: #344054;

    margin-bottom: 25px;
}

.normal-text {
    font-size: 18px;

    line-height: 1.8;

    color: #667085;
}


/* =====================================================
                    MISSION
===================================================== */

.mission-section {
    padding: 100px 7%;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;

    background: white;
}

.mission-card {
    padding: 55px;

    border:
        1px solid #eaecf0;

    border-radius: 22px;

    box-shadow:
        0 10px 40px
        rgba(16, 24, 40, 0.05);

    transition: 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px
        rgba(16, 24, 40, 0.10);
}

.mission-card h2 {
    font-size: 35px;

    margin-bottom: 20px;
}

.mission-card p {
    font-size: 19px;

    line-height: 1.8;

    color: #667085;
}


/* =====================================================
                    VALUES
===================================================== */

.values-section {
    padding: 100px 7%;

    background: #f8f9fc;
}

.values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.value-card {
    background: white;

    padding: 35px;

    border-radius: 18px;

    border:
        1px solid #eaecf0;

    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);

    border-color: #c4b5fd;

    box-shadow:
        0 15px 35px
        rgba(16, 24, 40, 0.08);
}

.value-card h3 {
    font-size: 24px;

    margin-bottom: 15px;
}

.value-card p {
    color: #667085;

    line-height: 1.7;
}


/* =====================================================
                    DETAILED SERVICES
===================================================== */

.detailed-services {
    padding: 100px 7%;

    background: #f8f9fc;
}

.detailed-service {
    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 70px;

    align-items: center;

    padding: 70px 0;

    border-bottom:
        1px solid #e4e7ec;
}

.detailed-service.reverse {
    grid-template-columns:
        1fr 180px;
}

.detailed-service.reverse
.big-service-icon {
    order: 2;
}

.big-service-icon {
    width: 150px;
    height: 150px;

    border-radius: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 60px;

    color: #5b21b6;

    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #dbeafe
        );

    box-shadow:
        0 20px 40px
        rgba(91, 33, 182, 0.10);

    transition: 0.3s ease;
}

.big-service-icon:hover {
    transform: scale(1.05) rotate(2deg);
}

.detailed-service h2 {
    font-size: 48px;

    margin-bottom: 20px;
}

.detailed-service p {
    max-width: 800px;

    font-size: 19px;

    line-height: 1.8;

    color: #667085;
}

.detailed-service ul {
    margin-top: 25px;

    padding-left: 20px;

    color: #344054;

    line-height: 2;
}


/* =====================================================
                    TABLET
===================================================== */

@media (max-width: 1000px) {

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 75px;
    }
}


/* =====================================================
                    MOBILE
===================================================== */

@media (max-width: 800px) {

    header {
        height: 75px;

        padding: 0 20px;
    }

    .logo {
        gap: 9px;
    }

    .logo img {
        width: 46px;
        height: 46px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-name small {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .menu-btn {
        width: 50px;
        height: 50px;

        border-radius: 13px;
    }

    .menu-btn span {
        width: 25px;
    }


    /* MOBILE MENU */

    .mobile-menu {
        top: 75px;

        height: calc(100vh - 75px);

        width: 300px;

        right: -320px;

        padding: 25px;
    }


    /* HERO */

    .hero {
        min-height: calc(100vh - 75px);

        padding: 70px 25px;

        background-position: center center;

        background-image:
            linear-gradient(
                90deg,
                rgba(5, 10, 25, 0.88),
                rgba(5, 10, 25, 0.55)
            ),
            url("./images/software-office.png");
    }

    .hero h1 {
        font-size: 55px;

        line-height: 1;

        letter-spacing: -3px;

        margin-bottom: 30px;
    }

    .eyebrow {
        font-size: 13px;

        letter-spacing: 3px;

        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 19px;

        line-height: 1.6;

        margin-bottom: 30px;
    }


    /* BUTTONS */

    .buttons {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .btn {
        font-size: 17px;

        padding: 17px 25px;
    }


    /* WHAT WE DO */

    .what-we-do {
        padding: 80px 25px;
    }

    .section-title {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .section-description {
        font-size: 20px;

        line-height: 1.7;
    }


    /* SERVICES */

    .services {
        grid-template-columns: 1fr;

        padding:
            20px 18px 70px;
    }

    .service-card {
        padding: 35px 28px;

        min-height: auto;
    }

    .service-card h3 {
        font-size: 30px;
    }

    .service-card p {
        font-size: 18px;
    }


    /* TECHNOLOGY */

    .tech-section {
        padding: 70px 25px;
    }

    .tech-section h2 {
        font-size: 34px;
    }


    /* CTA */

    .cta {
        padding: 75px 25px;
    }

    .cta h2 {
        font-size: 48px;
    }

    .cta p {
        font-size: 18px;
    }


    /* FOOTER */

    footer {
        padding: 45px 25px;
    }


    /* WHATSAPP */

    .whatsapp {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 24px;
    }


    /* INNER HERO */

    .inner-hero {
        min-height: 500px;

        padding: 80px 25px;

        background-position: center center;

        background-image:
            linear-gradient(
                90deg,
                rgba(5, 8, 20, 0.88),
                rgba(20, 16, 68, 0.60)
            ),
            url("./images/software-office.png");
    }

    .inner-hero h1 {
        font-size: 50px;

        letter-spacing: -3px;
    }

    .inner-hero p {
        font-size: 18px;
    }


    /* ABOUT */

    .about-content {
        padding: 80px 25px;
    }

    .large-text {
        font-size: 21px;
    }

    .normal-text {
        font-size: 17px;
    }


    /* MISSION */

    .mission-section {
        grid-template-columns: 1fr;

        padding: 70px 25px;
    }

    .mission-card {
        padding: 35px;
    }


    /* VALUES */

    .values-section {
        padding: 70px 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }


    /* DETAILED SERVICES */

    .detailed-services {
        padding: 60px 25px;
    }

    .detailed-service,
    .detailed-service.reverse {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 60px 0;
    }

    .detailed-service.reverse
    .big-service-icon {
        order: 0;
    }

    .big-service-icon {
        width: 100px;
        height: 100px;

        font-size: 40px;

        border-radius: 25px;
    }

    .detailed-service h2 {
        font-size: 38px;
    }
}


/* =====================================================
                    SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    header {
        padding: 0 15px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-name small {
        font-size: 6px;
    }

    .menu-btn {
        width: 46px;
        height: 46px;
    }

    .hero {
        padding:
            60px 20px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .btn {
        width: 100%;

        text-align: center;
    }

    .what-we-do {
        padding:
            65px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 18px;
    }

    .services {
        padding:
            15px 15px 60px;
    }

    .service-card {
        padding: 30px 22px;

        border-radius: 18px;
    }

    .service-card h3 {
        font-size: 27px;
    }

    .service-card p {
        font-size: 17px;
    }

    .inner-hero {
        min-height: 430px;

        padding:
            70px 20px;
    }

    .inner-hero h1 {
        font-size: 42px;
    }

    .inner-hero p {
        font-size: 17px;
    }

    .mission-section {
        padding:
            60px 20px;
    }

    .mission-card {
        padding: 28px;
    }

    .mission-card h2 {
        font-size: 30px;
    }

    .detailed-services {
        padding:
            50px 20px;
    }

    .detailed-service h2 {
        font-size: 32px;
    }

    .cta {
        padding:
            65px 20px;
    }

    .cta h2 {
        font-size: 40px;
    }

    footer {
        padding:
            40px 20px;
    }
}