﻿/* ISR Full Page Landing CSS - Clean Version */

:root {
    --red: #ef2028;
    --red-2: #ff3038;
    --blue: #0ea5e9;
    --dark: #020a14;
    --text: #0f172a;
    --muted: #64748b;
    --header-h: 84px;
}

* { box-sizing: border-box; }

html,
body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--dark);
    color: #fff;
}

html { scroll-behavior: smooth; }

body {
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
}

/* HEADER */

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 9999;
    background: rgba(2, 10, 20, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(14, 165, 233, .22);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .5px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--red); }

.nav-menu a.active::after,
.nav-menu a:not(.login-btn):hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 34px;
    height: 3px;
    transform: translateX(-50%);
    background: var(--red);
    box-shadow: 0 0 14px rgba(239, 32, 40, .75);
}

.login-btn {
    border: 1px solid var(--red);
    padding: 13px 28px;
    border-radius: 8px;
    color: var(--red) !important;
    background: rgba(239, 32, 40, .08);
}

.login-btn:hover {
    color: #fff !important;
    background: var(--red);
}

/* FULL PAGE SECTIONS */

.snap-section {
    height: 100vh;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
}

.section-inner {
    height: 100vh;
    padding-top: var(--header-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-section,
.section-dark {
    background:
        linear-gradient(
            90deg,
            rgba(2, 10, 20, .98) 0%,
            rgba(2, 10, 20, .93) 34%,
            rgba(2, 10, 20, .70) 64%,
            rgba(2, 10, 20, .45) 100%
        ),
        url("/images/circuit-bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section-light {
    background:
        linear-gradient(rgba(248,250,252,.96), rgba(248,250,252,.96)),
        url("/images/circuit-bg.png");
    background-size: cover;
    background-position: center;
    color: var(--text);
}

.hero-section::before,
.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 19% 48%, rgba(14, 165, 233, .25), transparent 34%),
        radial-gradient(circle at 88% 48%, rgba(239, 32, 40, .24), transparent 31%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after,
.section-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 58px 58px;
    z-index: 2;
    pointer-events: none;
}

/* HERO */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 120, 255, .12);
    border: 1px solid rgba(14, 165, 233, .95);
    box-shadow:
        0 0 24px rgba(14, 165, 233, .42),
        inset 0 0 20px rgba(14, 165, 233, .12);
    font-size: clamp(15px, 1.2vw, 19px);
    font-weight: 850;
    margin-bottom: 24px;
}

.hero-title {
    color: #fff;
    font-size: clamp(42px, 4.6vw, 68px);
    line-height: .96;
    font-weight: 950;
    letter-spacing: -2.5px;
    text-transform: uppercase;
    text-shadow: 0 12px 35px rgba(0, 0, 0, .68);
    margin-bottom: 18px;
}

.hero-title span { color: var(--red); }

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    font-size: clamp(20px, 1.8vw, 27px);
    font-weight: 850;
    margin-bottom: 16px;
}

.hero-subtitle::before {
    content: "";
    width: 72px;
    height: 5px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 22px rgba(239, 32, 40, .75);
}

.hero-desc {
    color: rgba(255,255,255,.88);
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.62;
    max-width: 710px;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.btn-main,
.btn-outline-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 14px 26px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 950;
    font-size: 16px;
    transition: .2s ease;
}

.btn-main {
    background: var(--red);
    color: #fff;
    box-shadow: 0 18px 40px rgba(239, 32, 40, .40);
}

.btn-main:hover {
    background: var(--red-2);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-main {
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.07);
}

.btn-outline-main:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
    transform: translateY(-3px);
}

.hero-logo-card {
    position: relative;
    width: min(100%, 560px);
    margin-left: auto;
    background: rgba(255,255,255,.97);
    border-radius: 34px;
    padding: 0;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.88);
    box-shadow:
        -12px 0 32px rgba(14, 165, 233, .50),
        12px 0 38px rgba(239, 32, 40, .40),
        0 38px 90px rgba(0,0,0,.58);
    animation: floatLogo 4.5s ease-in-out infinite;
}

.hero-logo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/images/logo-card-bg.png");
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.hero-logo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    background:
        linear-gradient(135deg,
            rgba(14,165,233,.10),
            transparent 42%,
            rgba(239,32,40,.12));
    z-index: 2;
    pointer-events: none;
}

.hero-logo-card img {
    position: relative;
    z-index: 3;
    width: 100%;
    display: block;
    margin: auto;
}

@keyframes floatLogo {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 6;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-align: center;
    text-decoration: none;
}

.scroll-mouse {
    display: block;
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 999px;
    margin: 0 auto 6px;
    position: relative;
}

.scroll-mouse::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    transform: translateX(-50%);
    animation: mouseMove 1.4s infinite;
}

@keyframes mouseMove {
    0% { opacity: 0; transform: translate(-50%, 0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* SECTION TEXT */

.section-head-center {
    text-align: center;
    margin-bottom: 36px;
}

.section-kicker {
    color: var(--red);
    font-weight: 950;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 3.8vw, 50px);
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-desc {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
}

.section-dark .section-desc {
    color: rgba(255,255,255,.78);
}

/* ABOUT INFO */

.about-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 24px;
}

.about-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-item span {
    width: 34px;
    height: 34px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(239,32,40,.25);
}

.about-item b {
    display: block;
    font-size: 17px;
    margin-bottom: 3px;
    color: var(--text);
}

.about-item div {
    color: #5b6470;
    line-height: 1.55;
}

/* ABOUT CAROUSEL */

.about-card.large {
    width: 100%;
    height: 520px;
    min-height: 520px;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(14,165,233,.35);
    box-shadow: 0 18px 45px rgba(15,23,42,.16);
    background: #020a14;
}

#aboutCarousel,
#aboutCarousel .carousel-inner,
#aboutCarousel .carousel-item {
    width: 100%;
    height: 100%;
}

.about-carousel-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.60);
}

.about-carousel-caption {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    color: #fff;
    z-index: 10;
}

.about-carousel-caption h4 {
    font-size: 34px;
    font-weight: 950;
    margin-bottom: 8px;
}

.about-carousel-caption p {
    font-size: 18px;
    color: rgba(255,255,255,.85);
    margin-bottom: 0;
    line-height: 1.6;
}

#aboutCarousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2,10,20,.06),
        rgba(2,10,20,.72)
    );
    z-index: 2;
    pointer-events: none;
}

#aboutCarousel .carousel-control-prev,
#aboutCarousel .carousel-control-next { z-index: 12; }

#aboutCarousel .carousel-indicators { z-index: 13; }

/* SERVICES */

.service-grid {
    display: grid;
    gap: 22px;
}

.service-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/*.service-card {
    height: 100%;
    min-height: 245px;
    padding: 26px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    box-shadow: 0 18px 45px rgba(239,32,40,.22);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.service-card h4 {
    font-weight: 950;
    font-size: 18px;
}

.service-card p {
    color: rgba(255,255,255,.74);
    line-height: 1.65;
    margin-bottom: 0;
}*/
/* ================= SERVICES CARD ================= */

.service-card {
    position: relative;
    height: 100%;
    min-height: 245px;
    padding: 30px 28px;
    border-radius: 22px;
    background: linear-gradient( 180deg, rgba(255,255,255,.105), rgba(255,255,255,.045) );
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: .28s ease;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(14,165,233,.16), transparent 35%), radial-gradient(circle at 85% 85%, rgba(239,32,40,.16), transparent 38%);
        opacity: 0;
        transition: .28s ease;
        z-index: 1;
    }

    .service-card::after {
        content: "";
        position: absolute;
        left: 22px;
        right: 22px;
        top: 0;
        height: 3px;
        background: linear-gradient( 90deg, transparent, var(--red), var(--blue), transparent );
        opacity: 0;
        transform: translateY(-4px);
        transition: .28s ease;
        box-shadow: 0 0 18px rgba(239,32,40,.65);
    }

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(239,32,40,.75);
        box-shadow: -10px 0 30px rgba(14,165,233,.18), 10px 0 34px rgba(239,32,40,.28), 0 25px 60px rgba(0,0,0,.28);
    }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            opacity: 1;
            transform: translateY(0);
        }

.service-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(239,32,40,.16));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 0 18px rgba(255,255,255,.08);
    transition: .28s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) rotate(-4deg) scale(1.08);
    box-shadow: 0 0 25px rgba(14,165,233,.25), 0 0 28px rgba(239,32,40,.20);
}

.service-card h4 {
    position: relative;
    z-index: 2;
    font-weight: 950;
    font-size: 18px;
    letter-spacing: .4px;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.74);
    line-height: 1.65;
    margin-bottom: 0;
}

.service-card:hover p {
    color: rgba(255,255,255,.86);
}
.next-page-link {
    margin-top: 26px;
    text-align: center;
}

.next-page-link a {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
    letter-spacing: 1px;
}

/* MISSION */

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mission-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    min-height: 78px;
    box-shadow: 0 12px 30px rgba(15,23,42,.08);
    border: 1px solid #e5e7eb;
    font-weight: 900;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 14px;
}

.mission-card span {
    color: var(--red);
    font-size: 30px;
}

/* CONTACT */

.contact-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 44px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
}

.contact-icon {
    color: var(--red);
    width: 32px;
    font-size: 24px;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(14,165,233,.55);
    background: rgba(3,15,28,.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.back-top:hover {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}

/* RESPONSIVE */

@media (max-width: 1199px) {
    .service-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .service-card { min-height: 210px; }

    .hero-logo-card { width: min(100%, 500px); }

    .about-card.large {
        height: 460px;
        min-height: 460px;
    }
}

@media (max-width: 991px) {
    html,
    body {
        height: auto;
        overflow: auto;
    }

    body { scroll-snap-type: none; }

    .snap-section {
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
        overflow: visible;
    }

    .section-inner {
        height: auto;
        min-height: auto;
        padding: 110px 0 80px;
    }

    .nav-menu a:not(.login-btn) { display: none; }

    .hero-logo-card {
        width: min(100%, 420px);
        margin: 42px auto 0;
    }

    .mission-grid,
    .service-grid-4 { grid-template-columns: 1fr; }

    .about-card.large {
        height: 360px;
        min-height: 360px;
        margin-top: 32px;
    }

    .scroll-down { display: none; }
}

@media (max-width: 768px) {
    :root { --header-h: 76px; }

    .brand img { height: 42px; }

    .login-btn { padding: 10px 20px; }

    .hero-title { font-size: 46px; }

    .hero-badge {
        font-size: 15px;
        padding: 10px 16px;
    }

    .hero-desc { font-size: 16px; }

    .btn-main,
    .btn-outline-main { width: 100%; }

    .contact-box { padding: 28px; }

    .about-carousel-caption {
        left: 24px;
        right: 24px;
        bottom: 28px;
    }

    .about-carousel-caption h4 { font-size: 26px; }

    .about-carousel-caption p { font-size: 16px; }
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.contact-panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 32px;
    box-shadow: -10px 0 30px rgba(14,165,233,.18), 10px 0 30px rgba(239,32,40,.16);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.88);
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(239,32,40,.16);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item b {
    display: block;
    color: #fff;
    font-size: 17px;
    margin-bottom: 2px;
}

.contact-item span {
    color: rgba(255,255,255,.76);
    line-height: 1.6;
}

.map-box {
    height: 230px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,.18);
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(20%) contrast(1.05);
    }
.project-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

    .project-stats div {
        background: #fff;
        border-radius: 18px;
        padding: 22px;
        text-align: center;
        box-shadow: 0 12px 30px rgba(15,23,42,.08);
        border: 1px solid #e5e7eb;
    }

    .project-stats b {
        display: block;
        color: var(--red);
        font-size: 34px;
        font-weight: 950;
        line-height: 1;
    }

    .project-stats span {
        display: block;
        margin-top: 8px;
        color: #64748b;
        font-weight: 800;
    }

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project-card {
    position: relative;
    height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background: #020a14;
    box-shadow: 0 18px 45px rgba(15,23,42,.18);
}

    .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .35s ease;
        filter: brightness(.65);
    }

    .project-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent, rgba(2,10,20,.9)), radial-gradient(circle at 80% 20%, rgba(239,32,40,.22), transparent 30%);
    }

    .project-card:hover img {
        transform: scale(1.08);
    }

    .project-card:hover {
        box-shadow: -8px 0 28px rgba(14,165,233,.25), 8px 0 28px rgba(239,32,40,.25);
    }

.project-content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
}

    .project-content h4 {
        font-size: 24px;
        font-weight: 950;
        margin-bottom: 8px;
    }

    .project-content p {
        color: rgba(255,255,255,.82);
        margin-bottom: 0;
        line-height: 1.6;
    }

@media (max-width: 1199px) {
    .project-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-card {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .project-stats,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 260px;
    }
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.brand-card {
    height: 92px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: 1px;
    transition: .25s ease;
}

    .brand-card:hover {
        transform: translateY(-6px);
        border-color: var(--red);
        box-shadow: -8px 0 26px rgba(14,165,233,.22), 8px 0 26px rgba(239,32,40,.28);
        color: var(--red);
    }

@media (max-width: 1199px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}
/*.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.brand-card {
    height: 145px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

    .brand-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(14,165,233,.16), transparent 35%), radial-gradient(circle at 85% 80%, rgba(239,32,40,.16), transparent 35%);
        opacity: 0;
        transition: .25s ease;
    }

    .brand-card img {
        position: relative;
        z-index: 2;
        max-width: 150px;
        max-height: 45px;
        filter: grayscale(1) brightness(2.2);
        opacity: .86;
        transition: .25s ease;
    }

    .brand-card span {
        position: relative;
        z-index: 2;
        color: rgba(255,255,255,.72);
        font-size: 14px;
        font-weight: 750;
        text-align: center;
    }

    .brand-card:hover {
        transform: translateY(-7px);
        border-color: var(--red);
        box-shadow: -8px 0 26px rgba(14,165,233,.24), 8px 0 30px rgba(239,32,40,.28);
    }

        .brand-card:hover::before {
            opacity: 1;
        }

        .brand-card:hover img {
            filter: none;
            opacity: 1;
            transform: scale(1.08);
        }

        .brand-card:hover span {
            color: white;
        }

@media (max-width: 1199px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}*/
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 50px;
    width: 100%;
}

.footer-logo {
    height: 72px;
    margin-bottom: 24px;
}

.footer-desc {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    font-size: 18px;
    max-width: 560px;
}

#footer h5 {
    color: white;
    font-weight: 950;
    margin-bottom: 20px;
}

#footer a {
    display: block;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 750;
}

    #footer a:hover {
        color: var(--red);
    }

#footer p {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.55);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        margin-top: 35px;
    }
}
.circuit-animation {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.circuit-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 10px var(--blue), 0 0 25px var(--blue), 0 0 45px rgba(14,165,233,.65);
    opacity: .85;
}

    .circuit-dot.d1 {
        left: 18%;
        top: 32%;
        animation: pulseBlue 2.4s infinite;
    }

    .circuit-dot.d2 {
        left: 72%;
        top: 28%;
        background: var(--red);
        box-shadow: 0 0 10px var(--red), 0 0 25px var(--red), 0 0 45px rgba(239,32,40,.65);
        animation: pulseRed 2.8s infinite;
    }

    .circuit-dot.d3 {
        left: 62%;
        top: 68%;
        animation: pulseBlue 3.2s infinite;
    }

    .circuit-dot.d4 {
        left: 86%;
        top: 56%;
        background: var(--red);
        box-shadow: 0 0 10px var(--red), 0 0 25px var(--red), 0 0 45px rgba(239,32,40,.65);
        animation: pulseRed 2.2s infinite;
    }

.circuit-line {
    position: absolute;
    height: 2px;
    width: 260px;
    background: linear-gradient( 90deg, transparent, rgba(14,165,233,.85), transparent );
    opacity: .75;
    filter: drop-shadow(0 0 12px rgba(14,165,233,.75));
}

    .circuit-line.l1 {
        left: -280px;
        top: 36%;
        animation: circuitMoveRight 6s linear infinite;
    }

    .circuit-line.l2 {
        right: -280px;
        top: 58%;
        background: linear-gradient( 90deg, transparent, rgba(239,32,40,.85), transparent );
        filter: drop-shadow(0 0 12px rgba(239,32,40,.75));
        animation: circuitMoveLeft 7s linear infinite;
    }

    .circuit-line.l3 {
        left: -280px;
        top: 74%;
        animation: circuitMoveRight 9s linear infinite;
    }

@keyframes pulseBlue {
    0%, 100% {
        transform: scale(1);
        opacity: .45;
    }

    50% {
        transform: scale(1.9);
        opacity: 1;
    }
}

@keyframes pulseRed {
    0%, 100% {
        transform: scale(1);
        opacity: .45;
    }

    50% {
        transform: scale(1.9);
        opacity: 1;
    }
}

@keyframes circuitMoveRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(100vw + 560px));
    }
}

@keyframes circuitMoveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100vw - 560px));
    }
}

.service-card {
    cursor: pointer;
}

.service-modal .modal-content {
    background: linear-gradient(rgba(2,10,20,.96), rgba(2,10,20,.96)), url("/images/circuit-bg.png");
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: -10px 0 35px rgba(14,165,233,.25), 10px 0 35px rgba(239,32,40,.25), 0 35px 80px rgba(0,0,0,.55);
}

.service-modal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 28px 32px;
}

.service-modal .modal-title {
    font-size: 34px;
    font-weight: 950;
}

.service-modal .modal-body {
    padding: 32px;
}

    .service-modal .modal-body p {
        color: rgba(255,255,255,.78);
        font-size: 18px;
        line-height: 1.75;
    }

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px;
}

    .service-list span {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 14px;
        padding: 14px 16px;
        font-weight: 800;
        color: rgba(255,255,255,.9);
    }

        .service-list span::before {
            content: "✓";
            color: var(--red);
            font-weight: 950;
            margin-right: 10px;
        }

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
    }

    .service-modal .modal-title {
        font-size: 26px;
    }
}