:root {

    --light: rgb(220,220,221);
    --silver: rgb(197,195,198);

    --slate: rgb(70,73,76);
    --steel: rgb(76,92,104);

    --cyan: rgb(25,133,161);
    --blue: rgb(24,93,139);

    --dark: #101315;
    --dark-two: #171b1e;

    --white: #f7f8fa;
    --muted: #aeb5ba;

    --border: rgba(220,220,221,.14);

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    color: var(--white);

    background: var(--dark);

    line-height: 1.7;

    overflow-x: hidden;

}


a {
    color: inherit;
    text-decoration: none;
}


.container {

    width: min(1150px, 92%);

    margin: auto;

}


/* =========================
   ANIMATED BACKGROUND
========================= */

.animated-background {

    position: fixed;

    inset: 0;

    z-index: -10;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(25,133,161,.15),
            transparent 28%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(24,93,139,.15),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #101315,
            #171b1e
        );

}


.pattern {

    position: absolute;

    inset: -50%;

    opacity: .45;

    background-image:

        repeating-linear-gradient(
            45deg,
            transparent 0 28px,
            rgba(220,220,221,.035) 29px 30px
        ),

        repeating-linear-gradient(
            -45deg,
            transparent 0 28px,
            rgba(25,133,161,.025) 29px 30px
        );

}


.pattern-one {

    animation: movePattern 25s linear infinite;

}


.pattern-two {

    transform: rotate(12deg);

    animation: movePatternReverse 32s linear infinite;

}


@keyframes movePattern {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(100px,100px);
    }

}


@keyframes movePatternReverse {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(-100px,70px);
    }

}


.circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(220,220,221,.08);

}


.circle-one {

    width: 600px;
    height: 600px;

    left: -280px;
    top: 20%;

    box-shadow:
        0 0 0 30px rgba(25,133,161,.025),
        0 0 0 70px rgba(220,220,221,.02);

    animation: circleFloat 15s ease-in-out infinite alternate;

}


.circle-two {

    width: 450px;
    height: 450px;

    right: -200px;
    bottom: 5%;

    animation: circleFloat 18s ease-in-out infinite alternate-reverse;

}


@keyframes circleFloat {

    to {
        transform: translate(100px,-60px) rotate(30deg);
    }

}


/* =========================
   LOADER
========================= */

.loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: grid;

    place-items: center;

    background: #101315;

    transition: .6s;

}


.loader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-ring {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    border: 3px solid rgba(220,220,221,.15);

    border-top-color: var(--cyan);

    border-right-color: var(--blue);

    animation: spin 1s linear infinite;

}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================
   HEADER
========================= */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(16,19,21,.75);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);

}


.nav-container {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    font-family: "Space Grotesk";

    font-size: 14px;

    font-weight: 700;

}


.logo strong {

    color: var(--cyan);

}


.logo-icon {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--blue)
        );

    clip-path:
        polygon(
            50% 0,
            100% 25%,
            100% 75%,
            50% 100%,
            0 75%,
            0 25%
        );

}


.navigation {

    display: flex;

    align-items: center;

    gap: 5px;

}


.navigation a {

    padding: 10px 12px;

    color: #c5c9cc;

    font-size: 14px;

    font-weight: 600;

    border-radius: 7px;

    transition: .25s;

}


.navigation a:hover {

    color: white;

    background: rgba(25,133,161,.12);

}


.nav-button {

    background: var(--cyan) !important;

    color: white !important;

    margin-left: 8px;

}


.nav-button:hover {

    transform: translateY(-2px);

}


.menu-toggle {

    display: none;

    background: none;

    border: 0;

    color: white;

    font-size: 27px;

    cursor: pointer;

}


/* =========================
   HERO
========================= */

.hero {

    min-height: calc(100vh - 78px);

    display: grid;

    align-items: center;

}


.hero-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 50px;

    align-items: center;

    padding: 80px 0;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;

}


.eyebrow::before {

    content: "";

    width: 27px;

    height: 2px;

    background: var(--cyan);

}


h1,
h2,
h3 {

    font-family: "Space Grotesk", sans-serif;

    line-height: 1.12;

}


h1 {

    font-size: clamp(42px,6vw,76px);

    letter-spacing: -2px;

}


h1 span,
h2 span {

    color: var(--cyan);

}


.hero-content p {

    color: var(--muted);

    max-width: 650px;

    font-size: 18px;

    margin: 25px 0 32px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

}


/* =========================
   BUTTONS
========================= */

.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 13px 20px;

    border-radius: 8px;

    border: 1px solid var(--border);

    font-size: 14px;

    font-weight: 700;

    transition: .3s;

}


.primary-btn {

    background: var(--cyan);

    border-color: var(--cyan);

}


.primary-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(25,133,161,.25);

}


.secondary-btn:hover {

    border-color: var(--cyan);

    transform: translateY(-3px);

}


/* =========================
   TECHNOLOGY ORBIT
========================= */

.hero-visual {

    min-height: 430px;

    display: grid;

    place-items: center;

}


.tech-orbit {

    width: min(410px,85vw);

    aspect-ratio: 1;

    border-radius: 50%;

    border: 1px solid rgba(220,220,221,.15);

    position: relative;

    animation: floating 6s ease-in-out infinite;

}


.orbit {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(25,133,161,.4);

}


.orbit-1 {

    inset: 13%;

    animation: spin 16s linear infinite;

}


.orbit-2 {

    inset: 27%;

    border-color: rgba(220,220,221,.2);

    animation: spin 12s linear infinite reverse;

}


.orbit-3 {

    inset: 38%;

    border-color: rgba(25,133,161,.25);

}


.tech-core {

    position: absolute;

    inset: 37%;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            var(--cyan),
            var(--blue)
        );

    box-shadow:
        0 0 70px rgba(25,133,161,.3);

    font-family: "Space Grotesk";

    font-size: 28px;

    font-weight: 800;

}


.tech-node {

    width: 14px;
    height: 14px;

    position: absolute;

    border-radius: 50%;

    background: var(--light);

    box-shadow:
        0 0 20px rgba(220,220,221,.5);

}


.node-1 {

    top: 7%;
    left: 48%;

}


.node-2 {

    right: 7%;
    top: 48%;

}


.node-3 {

    bottom: 7%;
    left: 48%;

}


.node-4 {

    left: 7%;
    top: 48%;

}


@keyframes floating {

    50% {
        transform: translateY(-13px) rotate(2deg);
    }

}


/* =========================
   SECTIONS
========================= */

.section {

    padding: 100px 0;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 45px;

}


.section-heading h2 {

    font-size: clamp(32px,4vw,50px);

    margin-bottom: 15px;

}


.section-heading p {

    color: var(--muted);

}


/* =========================
   CARDS
========================= */

.cards-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.service-card,
.solution-card,
.team-card,
.info-panel,
.content-box,
.contact-form-panel {

    border: 1px solid var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(76,92,104,.13),
            rgba(17,20,23,.7)
        );

    padding: 30px;

    transition: .35s;

}


.service-card:hover,
.solution-card:hover,
.team-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(25,133,161,.45);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);

}


.card-number {

    color: var(--cyan);

    font-family: "Space Grotesk";

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 20px;

}


.service-card h3,
.solution-card h3 {

    font-size: 22px;

    margin-bottom: 12px;

}


.service-card p,
.solution-card p {

    color: var(--muted);

    font-size: 14px;

}


.service-card a {

    display: inline-block;

    margin-top: 20px;

    color: var(--cyan);

    font-weight: 700;

    font-size: 13px;

}


.service-card ul {

    margin-top: 18px;

    padding-left: 18px;

    color: var(--muted);

    font-size: 14px;

}


.service-card li {

    margin: 7px 0;

}


/* =========================
   TWO COLUMN
========================= */

.two-column {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 30px;

    align-items: center;

}


.content-box h2 {

    font-size: 40px;

    margin-bottom: 18px;

}


.content-box p {

    color: var(--muted);

}


.feature-list {

    display: grid;

    gap: 12px;

    margin-top: 25px;

}


.feature-list div {

    color: #d6d9dc;

}


.feature-list span {

    color: var(--cyan);

    margin-right: 9px;

}


.info-panel h3 {

    font-size: 25px;

    margin-bottom: 25px;

}


.info-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);

    color: var(--muted);

}


.info-row strong {

    color: var(--light);

}


.info-row a {

    color: var(--cyan);

}


/* =========================
   PAGE HERO
========================= */

.page-hero {

    padding: 100px 0 70px;

    border-bottom: 1px solid var(--border);

}


.page-hero h1 {

    font-size: clamp(42px,6vw,65px);

}


.page-hero p {

    max-width: 720px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 17px;

}


/* =========================
   SOLUTIONS
========================= */

.solution-card {

    text-align: left;

}


.solution-icon {

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 12px;

    background: rgba(25,133,161,.12);

    border: 1px solid rgba(25,133,161,.25);

    color: var(--cyan);

    font-family: "Space Grotesk";

    font-weight: 800;

    font-size: 22px;

}


/* =========================
   TEAM
========================= */

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

}


.team-card {

    text-align: center;

}


.avatar {

    width: 90px;
    height: 90px;

    display: grid;

    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--blue)
        );

    font-family: "Space Grotesk";

    font-size: 25px;

    font-weight: 800;

}


.team-card h3 {

    font-size: 22px;

}


.role {

    color: var(--cyan);

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 11px;

    font-weight: 800;

    margin: 6px 0 15px;

}


.team-card p {

    color: var(--muted);

    font-size: 14px;

}


.team-card > a {

    display: inline-block;

    margin-top: 14px;

    color: var(--cyan);

}


/* =========================
   CONTACT
========================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 25px;

}


.contact-details h2 {

    font-size: 42px;

    margin-bottom: 25px;

}


.contact-item {

    padding: 18px;

    margin-bottom: 12px;

    border: 1px solid var(--border);

    border-radius: 11px;

    background: rgba(76,92,104,.07);

}


.contact-item small {

    display: block;

    color: var(--muted);

    margin-bottom: 5px;

}


.contact-item a {

    color: var(--cyan);

}


.contact-form-panel h3 {

    font-size: 28px;

    margin-bottom: 22px;

}


#contactForm,
.quote-form {

    display: grid;

    gap: 16px;

}


input,
textarea,
select {

    width: 100%;

    margin-top: 7px;

    padding: 14px;

    border-radius: 8px;

    border: 1px solid var(--border);

    background: #171b1f;

    color: white;

    outline: none;

}


textarea {

    min-height: 150px;

    resize: vertical;

}


input:focus,
textarea:focus,
select:focus {

    border-color: var(--cyan);

    box-shadow:
        0 0 0 3px rgba(25,133,161,.1);

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;

}


label {

    font-size: 13px;

    font-weight: 600;

    color: var(--light);

}


/* =========================
   QUOTE
========================= */

.quote-form {

    max-width: 900px;

    margin: auto;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: 17px;

    background: rgba(76,92,104,.08);

}


/* =========================
   CTA
========================= */

.cta-section {

    padding: 40px 0 100px;

}


.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 40px;

    border: 1px solid rgba(25,133,161,.3);

    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            rgba(25,133,161,.13),
            rgba(24,93,139,.04)
        );

}


.cta-box h2 {

    font-size: 32px;

}


.cta-box p {

    color: var(--muted);

    margin-top: 8px;

}


/* =========================
   FOOTER
========================= */

.footer {

    border-top: 1px solid var(--border);

    background: rgba(8,10,12,.75);

    padding-top: 55px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.3fr .7fr .9fr;

    gap: 40px;

}


.footer-logo {

    font-family: "Space Grotesk";

    font-size: 20px;

    font-weight: 800;

}


.footer-logo span {

    color: var(--cyan);

}


.footer p {

    color: var(--muted);

    font-size: 14px;

    margin-top: 10px;

}


.footer h3 {

    margin-bottom: 12px;

    font-size: 17px;

}


.footer-grid > div:not(:first-child) a {

    display: block;

    color: var(--muted);

    font-size: 14px;

    margin: 7px 0;

}


.footer-grid a:hover {

    color: var(--cyan) !important;

}


.footer-bottom {

    border-top: 1px solid var(--border);

    margin-top: 40px;

    padding: 18px 0;

}


.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #858b90;

    font-size: 12px;

}


/* =========================
   WHATSAPP
========================= */

.whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #198f5a;

    color: white;

    font-weight: 800;

    z-index: 900;

    animation: whatsappPulse 2.4s infinite;

}


@keyframes whatsappPulse {

    50% {

        box-shadow:
            0 0 0 12px rgba(25,143,90,.08),
            0 10px 30px rgba(25,143,90,.35);

    }

}


/* =========================
   SCROLL ANIMATION
========================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .75s ease,
        transform .75s ease;

}


.reveal.show {

    opacity: 1;

    transform: translateY(0);

}


.delay-1 {

    transition-delay: .12s;

}


.delay-2 {

    transition-delay: .24s;

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px) {

    .menu-toggle {

        display: block;

    }


    .navigation {

        position: absolute;

        top: 78px;

        left: 4%;

        right: 4%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 12px;

        border: 1px solid var(--border);

        border-radius: 12px;

        background: #15191d;

    }


    .navigation.open {

        display: flex;

    }


    .navigation .nav-button {

        margin-left: 0;

        text-align: center;

    }


    .hero-grid,
    .two-column,
    .contact-grid {

        grid-template-columns: 1fr;

    }


    .cards-grid,
    .team-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .hero-visual {

        min-height: 350px;

    }

}


@media(max-width:600px) {

    .section {

        padding: 75px 0;

    }


    .hero-grid {

        padding: 60px 0;

    }


    .cards-grid,
    .team-grid,
    .form-row,
    .footer-grid {

        grid-template-columns: 1fr;

    }


    .tech-orbit {

        width: 300px;

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-bottom .container {

        flex-direction: column;

    }


    h1 {

        font-size: 43px;

    }

}


@media(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

    }

}