* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

.background-animation {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 20%, rgba(0, 110, 255, 0.12), transparent 30%), radial-gradient(circle at 80% 30%, rgba(0, 170, 255, 0.10), transparent 28%), radial-gradient(circle at 30% 80%, rgba(0, 80, 255, 0.08), transparent 30%), linear-gradient(120deg, #000000 0%, #020814 45%, #000000 100%);
}

    .background-animation span {
        position: absolute;
        display: block;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.16;
        animation: floatGlow 18s infinite ease-in-out;
    }

        .background-animation span:nth-child(1) {
            width: 320px;
            height: 320px;
            background: #0d6efd;
            top: 6%;
            left: 8%;
            animation-delay: 0s;
        }

        .background-animation span:nth-child(2) {
            width: 260px;
            height: 260px;
            background: #00aaff;
            top: 20%;
            left: 75%;
            animation-delay: 4s;
        }

        .background-animation span:nth-child(3) {
            width: 280px;
            height: 280px;
            background: #004cff;
            top: 68%;
            left: 12%;
            animation-delay: 8s;
        }

        .background-animation span:nth-child(4) {
            width: 240px;
            height: 240px;
            background: #1f8fff;
            top: 62%;
            left: 78%;
            animation-delay: 12s;
        }

        .background-animation span:nth-child(5) {
            width: 220px;
            height: 220px;
            background: #3da5ff;
            top: 42%;
            left: 48%;
            animation-delay: 6s;
        }

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.08);
    }

    50% {
        transform: translate(-25px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, -18px) scale(1.04);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero,
.section,
.footer {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.90), rgba(0, 18, 48, 0.72), rgba(0, 0, 0, 0.88));
    padding: 18px 8% 50px;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transform: translateX(-55px);
}

.site-logo {
    width: 440px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 14px rgba(61, 165, 255, 0.18));
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 44px;
}

    .nav-links a {
        color: #ffffff;
        font-weight: 800;
        font-size: 1.35rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        .nav-links a:hover {
            color: #3da5ff;
            transform: translateY(-1px);
        }

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: flex-start;
    flex: 1;
    padding-top: 25px;
}

.hero-content {
    max-width: 900px;
    padding: 10px 0 30px;
}

.intro {
    color: #3da5ff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 22px;
    font-weight: 700;
}

.hero-content h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.35rem;
    line-height: 1.13;
    margin-bottom: 24px;
    color: #ffffff;
    max-width: 900px;
    text-shadow: 0 0 24px rgba(61, 165, 255, 0.08);
}

.hero-text {
    font-size: 1.08rem;
    color: #d6e8ff;
    max-width: 860px;
    margin-bottom: 24px;
}

.tech-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

    .tech-strip span {
        display: inline-block;
        padding: 8px 16px;
        border: 1px solid rgba(61, 165, 255, 0.35);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.02);
        color: #8ecbff;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.4px;
        box-shadow: 0 0 12px rgba(61, 165, 255, 0.05);
    }

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn,
.action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0d6efd, #4e8cff);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 9px;
    font-weight: 800;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 18px rgba(13, 110, 253, 0.25);
}

    .btn:hover,
    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 24px rgba(61, 165, 255, 0.35);
    }

.btn-secondary,
.action-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #3da5ff;
    color: #a6d8ff;
    box-shadow: none;
}

    .btn-secondary:hover,
    .action-secondary:hover {
        background: #3da5ff;
        color: #000000;
        box-shadow: 0 0 24px rgba(61, 165, 255, 0.28);
    }

.quick-actions .action-btn:first-child {
    background: linear-gradient(135deg, #0d6efd, #4e8cff);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 18px rgba(13, 110, 253, 0.25);
    opacity: 1;
}

    .quick-actions .action-btn:first-child:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 24px rgba(61, 165, 255, 0.35);
    }

.hero-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel-box {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(180deg, rgba(12, 24, 42, 0.92), rgba(8, 16, 28, 0.96));
    border: 1px solid rgba(61, 165, 255, 0.28);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.10), inset 0 0 20px rgba(61, 165, 255, 0.03);
    backdrop-filter: blur(10px);
}

.panel-label {
    color: #3da5ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.panel-box h2 {
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 22px;
    color: #ffffff;
}

.capability-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.capability-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(61, 165, 255, 0.12);
}

    .capability-item:first-child {
        padding-top: 0;
    }

    .capability-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.capability-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3da5ff;
    border: 1px solid rgba(61, 165, 255, 0.32);
    background: rgba(13, 110, 253, 0.09);
    box-shadow: 0 0 16px rgba(61, 165, 255, 0.12);
    font-weight: 900;
}

.capability-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.capability-item p {
    font-size: 0.94rem;
    color: #c8d8eb;
    line-height: 1.55;
}

.capability-points {
    margin: 6px 0 0 18px;
    padding: 0;
    color: #c8d8eb;
    font-size: 0.95rem;
    line-height: 1.6;
}

    .capability-points li {
        margin-bottom: 3px;
    }

        .capability-points li::marker {
            color: #3da5ff;
        }

.section {
    padding: 86px 8%;
    background-color: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(3px);
}

.compact-section {
    padding-top: 70px;
}

.alt-section {
    background-color: rgba(7, 17, 29, 0.88);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

    .section-header h2 {
        font-size: clamp(2rem, 3vw, 2.8rem);
        color: #3da5ff;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .section-header p {
        color: #c8d8eb;
        max-width: 830px;
        margin: 0 auto;
        font-size: 1.02rem;
    }

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

.service-card {
    min-height: 180px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    background: linear-gradient(180deg, rgba(11, 22, 36, 0.96), rgba(8, 16, 28, 0.96));
    border: 1px solid #163c68;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 0 22px rgba(0, 102, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        border-color: #3da5ff;
        box-shadow: 0 0 28px rgba(61, 165, 255, 0.14);
    }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(61, 165, 255, 0.45);
    background: rgba(13, 110, 253, 0.08);
    color: #3da5ff;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 0 16px rgba(61, 165, 255, 0.08);
}

.service-content h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.14rem;
    line-height: 1.3;
}

.service-content ul {
    list-style-position: outside;
    padding-left: 18px;
}

.service-content li {
    color: #c8d8eb;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 2px;
}

.experience-section {
    padding-top: 70px;
    border-top: 1px solid rgba(61, 165, 255, 0.12);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(61, 165, 255, 0.18);
    border-bottom: 1px solid rgba(61, 165, 255, 0.18);
}

.experience-card {
    padding: 26px 22px;
    min-height: 205px;
    border-right: 1px solid rgba(61, 165, 255, 0.22);
    border-bottom: 1px solid rgba(61, 165, 255, 0.12);
    background: rgba(6, 14, 26, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

    .experience-card:nth-child(5n) {
        border-right: none;
    }

    .experience-card:hover {
        background: rgba(13, 110, 253, 0.08);
        transform: translateY(-3px);
    }

.experience-icon {
    color: #3da5ff;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.experience-card h3 {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.14rem;
    line-height: 1.3;
    font-weight: 800;
}

.experience-card p {
    font-family: Arial, Helvetica, sans-serif;
    color: #c8d8eb;
    font-size: 0.92rem;
    line-height: 1.45;
}

.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why-item {
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(11, 22, 36, 0.96), rgba(8, 16, 28, 0.96));
    border: 1px solid #163c68;
    border-radius: 12px;
    color: #d6e8ff;
    font-weight: 700;
}

    .why-item::before {
        content: "✓";
        color: #3da5ff;
        font-weight: 900;
        margin-right: 10px;
    }

.about-box,
.contact-box {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(11, 22, 36, 0.96), rgba(8, 16, 28, 0.96));
    border: 1px solid #16324f;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 0 22px rgba(0, 102, 255, 0.06);
}

    .about-box p,
    .contact-box p {
        color: #d6e8ff;
        margin-bottom: 16px;
    }

        .about-box p:last-child,
        .contact-box p:last-child {
            margin-bottom: 0;
        }

.about-highlight {
    color: #ffffff !important;
    font-size: 1.08rem;
    margin-top: 24px;
}

.contact-box a {
    color: #3da5ff;
    font-weight: 800;
}

    .contact-box a:hover {
        color: #7fc2ff;
    }

.contact-hint {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #9ecbff;
    opacity: 0.9;
}

.contact-trust {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #7fbfff;
    opacity: 0.75;
}

.quick-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer {
    padding: 26px 8%;
    border-top: 1px solid #122438;
    background-color: rgba(0, 0, 0, 0.95);
    color: #8fbbe6;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    text-align: center;
    font-size: 0.95rem;
}

.footer a {
    color: #9ecbff;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd, #4e8cff);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.40);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .floating-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 32px rgba(61, 165, 255, 0.55);
    }

.floating-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .floating-whatsapp-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

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

    .experience-card:nth-child(5n) {
        border-right: 1px solid rgba(61, 165, 255, 0.22);
    }

    .experience-card:nth-child(4n) {
        border-right: none;
    }
}

@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-content: flex-start;
    }

    .panel-box {
        max-width: 760px;
    }

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

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-link {
        width: 100%;
        justify-content: center;
        transform: translateX(0);
    }

    .site-logo {
        width: 320px;
        margin: 0 auto;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

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

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

    .experience-card:nth-child(4n),
    .experience-card:nth-child(5n) {
        border-right: 1px solid rgba(61, 165, 255, 0.22);
    }

    .experience-card:nth-child(2n) {
        border-right: none;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 12px 15px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 20px 6% 55px;
    }

    .section {
        padding: 58px 6%;
    }

    .site-logo {
        width: 240px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

        .nav-links a {
            font-size: 0.88rem;
        }

    .intro {
        font-size: 0.82rem;
        letter-spacing: 2px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons,
    .quick-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn,
    .action-btn {
        width: 100%;
        text-align: center;
    }

    .panel-box,
    .about-box,
    .contact-box {
        padding: 24px;
    }

    .capability-item,
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-icon {
        margin-bottom: 2px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card,
    .experience-card:nth-child(2n),
    .experience-card:nth-child(4n),
    .experience-card:nth-child(5n) {
        border-right: none;
    }

    .floating-whatsapp span:last-child {
        display: none;
    }

    .floating-whatsapp {
        padding: 12px;
    }
}
