* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #172033;
    overflow-x: hidden;
}

.custom-navbar {
    background: rgba(5, 18, 53, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 0;
}

.navbar-brand {
    color: #fff !important;
    font-size: 24px;
}

.navbar-brand span {
    color: #ffc107;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #06183d, #0749b8, #071d49);
    color: #fff;
    overflow: hidden;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title span {
    color: #ffc107;
}

.hero-text {
    font-size: 18px;
    color: #d9e6ff;
    margin-top: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.13);
    padding: 10px 18px;
    border-radius: 50px;
    color: #ffc107;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-stats h3 {
    color: #ffc107;
    font-weight: 800;
}

.hero-stats p {
    color: #d9e6ff;
    font-size: 14px;
}

.hero-card {
    background: rgba(255,255,255,0.12);
    padding: 30px;
    border-radius: 30px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.dashboard-card {
    background: linear-gradient(145deg, #102c70, #06183d);
    padding: 35px;
    border-radius: 25px;
}

.metric-box {
    background: rgba(255,255,255,0.12);
    padding: 16px;
    border-radius: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.metric-box strong {
    color: #ffc107;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    animation: rotateShape 10s linear infinite;
}

.shape1 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 5%;
}

.shape2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 8%;
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-padding {
    padding: 90px 0;
}

.section-title span,
.section-label {
    color: #0749b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-weight: 800;
    font-size: 40px;
    margin-top: 8px;
}

.service-card,
.process-card,
.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.4s;
}

.service-card:hover,
.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 65px rgba(7,73,184,0.18);
}

.icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0749b8, #00b4ff);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 25px;
}

.service-card h4 {
    font-weight: 700;
}

.dark-section {
    background: linear-gradient(135deg, #06183d, #0a2f72);
}

.it-list div {
    color: #fff;
    margin-bottom: 15px;
    font-size: 17px;
}

.it-list i {
    color: #ffc107;
    margin-right: 10px;
}

.code-window {
    background: #07111f;
    border-radius: 24px;
    padding: 25px;
    color: #00ffae;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.window-dots span {
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
    background: #ffc107;
}

.code-window pre {
    color: #00ffae;
    margin-top: 20px;
    font-size: 16px;
}

.process-card h3 {
    font-size: 42px;
    font-weight: 800;
    color: #0749b8;
}

.cta-section {
    background: linear-gradient(135deg, #0749b8, #06183d);
    color: #fff;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 14px;
}

.contact-info i {
    color: #0749b8;
    margin-right: 10px;
}

.form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #d7dce7;
}

textarea.form-control {
    height: auto;
}

label {
    font-weight: 600;
    margin-bottom: 6px;
}

.footer {
    background: #06183d;
    color: #fff;
    padding: 35px 0;
}

.footer p {
    color: #c9d8ff;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .hero-section {
        padding-top: 90px;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-card,
    .dashboard-card {
        padding: 20px;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stats div {
        width: 30%;
    }

    .section-padding {
        padding: 55px 0;
    }

    .service-card,
    .process-card,
    .contact-form-card {
        padding: 24px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        right: 15px;
        bottom: 15px;
    }
}
html {
    scroll-behavior: auto !important;
}

body {
    overscroll-behavior: none;
}

.custom-navbar {
    transition: 0.4s ease;
}

.navbar-scrolled {
    background: rgba(5, 18, 53, 0.98);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.cta-section {
    background-size: 200% 200%;
}

.service-card,
.process-card,
.hero-card,
.contact-form-card,
.code-window {
    will-change: transform, opacity;
}