@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap');

* {
    font-family: 'Space Grotesk', sans-serif;
}

:root {
    --cyber-primary: #00A3FF;
    --cyber-secondary: #001B3D;
    --cyber-accent: #00FFB3;
    --cyber-dark: #000D1C;
    --cyber-light: #E6F6FF;
    --cyber-glow: 0 0 20px rgba(0, 163, 255, 0.3);
    --matrix-animation: matrixRain 20s linear infinite;
    --cyber-gradient: linear-gradient(135deg, var(--cyber-primary) 0%, var(--cyber-accent) 100%);
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--cyber-secondary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000D1C;
}

::-webkit-scrollbar-thumb {
    background: #00A3FF;
    border-radius: 5px;
    transition: all 1.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #00FFB3;
}

/* Advanced Navbar */
.cyber-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
    height: 70px;
    background: rgba(0, 13, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 163, 255, 0.2);
}

.cyber-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.cyber-nav-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.cyber-nav-logo img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(0, 163, 255, 0.4));
    transition: all 0.3s ease;
}

.cyber-nav-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cyber-nav-logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cyber-nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.cyber-nav-link {
    position: relative;
    color: var(--cyber-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cyber-nav-link::before,
.cyber-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--cyber-gradient);
    transition: all 0.3s ease;
}

.cyber-nav-link::before {
    left: 0;
    top: 0;
}

.cyber-nav-link::after {
    right: 0;
    bottom: 0;
}

.cyber-nav-link:hover::before,
.cyber-nav-link:hover::after,
.cyber-nav-link.active::before,
.cyber-nav-link.active::after {
    width: 100%;
}

.cyber-nav-link.active {
    color: var(--cyber-primary);
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.4);
}

/* Decorative Elements */
.cyber-nav-decorator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--cyber-primary) 50%, 
        transparent 100%
    );
    opacity: 0.5;
}

.cyber-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--cyber-primary);
    opacity: 0.5;
}

.cyber-corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.cyber-corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.cyber-corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.cyber-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.cyber-matrix-line {
    position: absolute;
    top: 0;
    font-family: 'Courier New', monospace;
    color: var(--cyber-primary);
    font-size: 10px;
    line-height: 1;
    animation: var(--matrix-animation);
    white-space: nowrap;
}

@keyframes matrixRain {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(100vh);
    }
}

.cyber-contact-info {
    background: none;
    padding: 0;
}
.cyber-contact-info:hover {
    
}
.cyber-contact-info::before {
    opacity: 0 !important;
}


.cyber-nav-mobile-toggle {
    position: relative;
    display: none; /* Hidden by default on desktop */
    color: var(--cyber-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Mobile Menu Container */
.cyber-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 13, 28, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.cyber-nav-mobile.active {
    opacity: 1;
    display: block;
}

.cyber-nav-mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    padding: 2rem;
    margin-top: 2rem;
}

.cyber-nav-mobile .cyber-nav-link {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.cyber-nav-mobile.active .cyber-nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animation of mobile menu items */
.cyber-nav-mobile .cyber-nav-link:nth-child(1) { transition-delay: 0.1s; }
.cyber-nav-mobile .cyber-nav-link:nth-child(2) { transition-delay: 0.2s; }
.cyber-nav-mobile .cyber-nav-link:nth-child(3) { transition-delay: 0.3s; }
.cyber-nav-mobile .cyber-nav-link:nth-child(4) { transition-delay: 0.4s; }
.cyber-nav-mobile .cyber-nav-link:nth-child(5) { transition-delay: 0.5s; }
.cyber-nav-mobile .cyber-nav-link:nth-child(6) { transition-delay: 0.6s; }

/* Background Scanner Effect */
.cyber-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 163, 255, 0.1) 50%,
        transparent 100%
    );
    animation: scannerMove 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scannerMove {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyber-nav-links {
        display: none; /* Hide desktop menu */
    }

    .cyber-nav-mobile-toggle {
        display: block; /* Show mobile toggle */
    }

    .cyber-nav-container {
        justify-content: space-between;
    }

    /* Adjust logo size for mobile */
    .cyber-nav-logo img {
        height: 35px;
    }

    /* Hide decorative elements on mobile */
    .cyber-corner {
        display: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 480px) {
    .cyber-nav-container {
        padding: 0;
    }

    .cyber-nav-mobile-links {
        gap: 1.5rem;
    }

    .cyber-nav-mobile .cyber-nav-link {
        font-size: 1.1rem;
    }
}

/* Button Styles */
.cyber-button {
    position: relative;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--cyber-primary);
    border: 1px solid var(--cyber-primary);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    transition: all 0.3s ease;
    z-index: -1;
}

.cyber-button:hover {
    color: var(--cyber-dark);
}

.cyber-button:hover::before {
    left: 0;
}

.cyber-footer {
    position: relative;
    background: linear-gradient(180deg, 
        var(--cyber-dark) 0%,
        rgba(0, 13, 28, 0.98) 100%
    );
    padding: 80px 0 40px;
    overflow: hidden;
}

/* Circuit Board Pattern */
.cyber-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--cyber-primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--cyber-primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
}

/* Data Stream Effect */
.cyber-data-stream {
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    border-left: 2px dotted var(--cyber-primary);
    opacity: 0;
    animation: dataStream 4s linear infinite;
}

@keyframes dataStream {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Generate multiple data streams */
.cyber-data-stream:nth-child(1) { left: 10%; animation-delay: 0s; }
.cyber-data-stream:nth-child(2) { left: 30%; animation-delay: 1s; }
.cyber-data-stream:nth-child(3) { left: 50%; animation-delay: 2s; }
.cyber-data-stream:nth-child(4) { left: 70%; animation-delay: 3s; }
.cyber-data-stream:nth-child(5) { left: 90%; animation-delay: 4s; }

/* Footer Content Container */
.cyber-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Company Info Section */
.cyber-footer-company {
    position: relative;
}

.cyber-footer-logo {
    margin-bottom: 25px;
    display: inline-block;
}

.cyber-footer-logo img {
    height: 100px;
    filter: drop-shadow(0 0 10px rgba(0, 163, 255, 0.5));
    transition: all 0.3s ease;
}

.cyber-footer-logo:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 163, 255, 0.7));
    transform: scale(1.05);
}

.cyber-footer-tagline {
    color: var(--cyber-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.cyber-footer-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--cyber-gradient);
    transform: translateY(-50%);
}

.cyber-footer-description {
    color: var(--cyber-light);
}

/* Quick Links Section */
.cyber-footer-section {
    position: relative;
}

.cyber-footer-title {
    color: var(--cyber-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.cyber-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--cyber-gradient);
}

.cyber-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cyber-footer-link {
    margin-bottom: 15px;
}

.cyber-footer-link a {
    color: rgba(230, 246, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cyber-footer-link a:hover {
    color: var(--cyber-primary);
    transform: translateX(5px);
}

.cyber-footer-link i {
    font-size: 0.8rem;
    color: var(--cyber-primary);
}

/* Contact Info */
.cyber-footer-contact {
    color: rgba(230, 246, 255, 0.8);
}

.cyber-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cyber-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cyber-contact-item:hover .cyber-contact-icon {
    background: var(--cyber-primary);
    color: var(--cyber-dark);
    transform: rotate(360deg);
}

/* Social Links */
.cyber-social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cyber-social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--cyber-gradient);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.cyber-social-link:hover::before {
    width: 150%;
    height: 150%;
}

.cyber-social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.cyber-social-link:hover i {
    color: var(--cyber-dark);
    transform: scale(1.2);
}

/* Bottom Bar */
.cyber-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 163, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(230, 246, 255, 0.6);
}

.cyber-footer-bottom-links {
    display: flex;
    gap: 30px;
}

.cyber-footer-bottom-link {
    color: rgba(230, 246, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cyber-footer-bottom-link:hover {
    color: var(--cyber-primary);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .cyber-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .cyber-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cyber-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .cyber-footer {
        padding: 60px 0 30px;
    }

    .cyber-footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}