:root {
    --electric-blue: #00F0FF;
    --cyber-red: #FF0040;
    --toxic-green: #00FF41;
    --deep-purple: #6600FF;
    --neon-orange: #FF6600;
    --steel-gray: #1E293B;
    --dark-bg: #0F172A;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0F172A;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #0F172A 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        z-index: -1;
    }

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.navbar {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.3), 0 0 60px rgba(255, 0, 64, 0.2);
    border-bottom: 4px solid #00F0FF;
    position: relative;
}

    .navbar::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #00F0FF 0%, #FF0040 50%, #00FF41 100%);
        animation: borderFlow 3s linear infinite;
    }

@keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 900;
    color: white !important;
    text-shadow: 0 0 30px #00F0FF, 0 0 60px #FF0040;
    opacity: 1;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
}

    .navbar-brand:hover {
        transform: scale(1.1);
        text-shadow: 0 0 40px #00F0FF, 0 0 80px #00FF41, 0 0 120px #FF0040;
    }

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

    .navbar-nav .nav-link:hover {
        color: #00F0FF !important;
        transform: translateY(-3px);
        text-shadow: 0 0 20px #00F0FF, 0 0 40px #00FF41;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -8px;
        left: 50%;
        background: linear-gradient(90deg, #00F0FF 0%, #FF0040 100%);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        box-shadow: 0 0 20px currentColor;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 48%, rgba(0, 240, 255, 0.1) 49%, rgba(0, 240, 255, 0.1) 51%, transparent 52%), linear-gradient(-45deg, transparent 48%, rgba(255, 0, 64, 0.1) 49%, rgba(255, 0, 64, 0.1) 51%, transparent 52%);
        background-size: 30px 30px;
        opacity: 0.3;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.85);
    }

    .hero-section > * {
        position: relative;
        z-index: 1;
    }

.contact-card {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 240, 255, 0.4), inset 0 0 50px rgba(0, 240, 255, 0.1);
    height: 100%;
    border: 3px solid #00F0FF;
    color: white;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(0, 240, 255, 0.1) 50%, transparent 70%);
        animation: scanline 4s linear infinite;
    }

@keyframes scanline {
    0% {
        transform: translateY(-100%) translateX(-100%);
    }

    100% {
        transform: translateY(100%) translateX(100%);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    transition: all 0.4s ease;
    border-left: 4px solid #00F0FF;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

    .contact-item:hover {
        transform: translateX(25px) scale(1.05);
        background: linear-gradient(135deg, #FF0040 0%, #FF6600 100%);
        box-shadow: 0 10px 50px rgba(255, 0, 64, 0.6), inset 0 0 30px rgba(255, 102, 0, 0.3);
        border-left-color: #00FF41;
    }

    .contact-item i {
        font-size: 2.5rem;
        margin-right: 20px;
        color: #00F0FF;
        transition: all 0.3s ease;
        filter: drop-shadow(0 0 15px currentColor);
    }

    .contact-item:hover i {
        color: #00FF41;
        transform: rotate(360deg) scale(1.3);
    }

.contact-btn {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 900;
    transition: all 0.3s ease;
    border: 3px solid;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

    .contact-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .contact-btn:hover::before {
        left: 100%;
    }

.whatsapp-btn {
    background: linear-gradient(135deg, #00FF41 0%, #00F0FF 100%);
    color: #0F172A !important;
    border-color: #00FF41;
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5);
}

    .whatsapp-btn:hover {
        background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
        color: #00FF41 !important;
        transform: scale(1.08);
        box-shadow: 0 15px 60px rgba(0, 255, 65, 0.8), inset 0 0 30px rgba(0, 255, 65, 0.2);
    }

.call-btn {
    background: linear-gradient(135deg, #FF0040 0%, #FF6600 100%);
    color: white !important;
    border-color: #FF0040;
    box-shadow: 0 10px 40px rgba(255, 0, 64, 0.5);
}

    .call-btn:hover {
        background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
        color: #FF0040 !important;
        transform: scale(1.08);
        box-shadow: 0 15px 60px rgba(255, 0, 64, 0.8), inset 0 0 30px rgba(255, 0, 64, 0.2);
    }

.hero-image {
    border-radius: 20px;
    box-shadow: 0 25px 100px rgba(0, 240, 255, 0.5), 0 0 80px rgba(255, 0, 64, 0.3);
    width: 100%;
    height: 400px;
    object-fit: contain;
    border: 4px solid #00F0FF;
    transition: all 0.4s ease;
}

    .hero-image:hover {
        transform: scale(1.05);
        box-shadow: 0 30px 120px rgba(255, 0, 64, 0.7), 0 0 100px rgba(0, 255, 65, 0.5);
        border-color: #FF0040;
    }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    position: relative;
}

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 240, 255, 0.03) 2px, rgba(0, 240, 255, 0.03) 4px);
    }

    .about-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.94);
    }

    .about-section > * {
        position: relative;
        z-index: 1;
    }

.about-content {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 240, 255, 0.4), inset 0 0 50px rgba(0, 240, 255, 0.1);
    border: 3px solid #00F0FF;
    color: white;
}

    .about-content p, .about-content span {
        color: rgba(255, 255, 255, 0.95) !important;
    }

.about-image {
    border-radius: 20px;
    box-shadow: 0 25px 100px rgba(255, 0, 64, 0.5);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #FF0040;
    transition: all 0.4s ease;
}

    .about-image:hover {
        transform: scale(1.05);
        box-shadow: 0 30px 120px rgba(0, 255, 65, 0.7);
        border-color: #00FF41;
    }

.section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00F0FF 0%, #FF0040 50%, #00FF41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 5px;
        background: linear-gradient(90deg, #00F0FF 0%, #FF0040 50%, #00FF41 100%);
        border-radius: 3px;
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
        animation: lineGlow 2s ease-in-out infinite;
    }

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
        width: 150px;
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 0, 64, 0.8);
        width: 180px;
    }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    position: relative;
}

    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 48%, rgba(0, 240, 255, 0.02) 49%, rgba(0, 240, 255, 0.02) 51%, transparent 52%);
        background-size: 50px 50px;
    }

    .services-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.96);
    }

    .services-section > * {
        position: relative;
        z-index: 1;
    }

.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(15, 23, 42, 0.3);
    transition: all 0.4s ease;
    height: 100%;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border: 3px solid #334155;
    position: relative;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 20px;
        background: linear-gradient(135deg, #00F0FF, #FF0040, #00FF41, #6600FF);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        transform: translateY(-25px) scale(1.03);
        box-shadow: 0 30px 100px rgba(0, 240, 255, 0.6), 0 0 80px rgba(255, 0, 64, 0.4);
    }

    .service-card img {
        height: 200px;
        object-fit: cover;
        transition: all 0.4s ease;
        filter: brightness(0.9) contrast(1.1);
    }

    .service-card:hover img {
        transform: scale(1.2);
        filter: brightness(1.1) contrast(1.2) saturate(1.3);
    }

    .service-card .card-body {
        padding: 30px;
        background: rgba(30, 41, 59, 0.95);
        color: white;
    }

    .service-card .card-title {
        background: linear-gradient(135deg, #00F0FF 0%, #FF0040 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
        font-size: 1.4rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .service-card .card-text {
        color: rgba(255, 255, 255, 0.9);
    }

.map-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
}

    .map-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.95);
    }

    .map-section > * {
        position: relative;
        z-index: 1;
    }

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 240, 255, 0.5);
    border: 4px solid #00F0FF;
    position: relative;
}

    .map-container::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 20px;
        background: linear-gradient(45deg, #00F0FF, #FF0040, #00FF41);
        z-index: -1;
        animation: borderRotate 3s linear infinite;
    }

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 50px 0 25px;
    margin-top: 0;
    box-shadow: 0 -10px 50px rgba(0, 240, 255, 0.3);
    border-top: 5px solid;
    border-image: linear-gradient(90deg, #00F0FF, #FF0040, #00FF41) 1;
    position: relative;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #00F0FF, #FF0040, #00FF41);
        animation: borderFlow 3s linear infinite;
    }

    footer h5 {
        color: #00F0FF;
        margin-bottom: 25px;
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    footer a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }

        footer a:hover {
            color: #00FF41;
            transform: translateX(15px);
            display: inline-block;
            text-shadow: 0 0 20px #00FF41;
        }

    footer i {
        color: #FF0040;
        margin-right: 12px;
        filter: drop-shadow(0 0 10px currentColor);
    }

.footer-bottom {
    border-top: 2px solid rgba(0, 240, 255, 0.3);
    margin-top: 35px;
    padding-top: 25px;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 40px 0;
    }

    .about-section, .services-section {
        padding: 50px 0;
    }
    
}

.logo {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 25px #00F0FF) drop-shadow(0 0 50px #FF0040);
    transition: all 0.4s ease;
}

    .logo:hover {
        transform: rotate(360deg) scale(1.2);
        filter: drop-shadow(0 0 40px #00FF41) drop-shadow(0 0 70px #00F0FF);
    }

.card-img-top {
    object-fit: contain !important;
}

.bi-check-circle-fill {
    color: #00FF41 !important;
    filter: drop-shadow(0 0 15px #00FF41);
    font-size: 1.8rem !important;
}

/* Tech grid background */
@keyframes techGrid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* Glitch effect for hover */
@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

.service-card:hover {
    animation: glitch 0.3s ease-in-out;
}
