/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Hero section styles */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 2px solid #00c8ff;
}

/* Create cybersecurity-themed background pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 200, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 200, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Animated network lines */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(0, 200, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 200, 255, 0.05) 25%, transparent 25%);
    background-size: 3px 3px;
    animation: moveLines 20s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

/* Title styles */
.hero-title {
    font-size: 3.5em;
    color: #00c8ff;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
}

/* Title animation */
.hero-title {
    animation: glowText 3s ease-in-out infinite alternate;
}

/* Description styles */
.hero-description {
    font-size: 1.2em;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

/* Animations */
@keyframes moveLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes glowText {
    0% {
        text-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 200, 255, 0.5),
                     0 0 30px rgba(0, 200, 255, 0.3);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-description {
        font-size: 1.1em;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-description {
        font-size: 1em;
    }
}

/* Optional hover effects */
.hero:hover::after {
    animation-play-state: paused;
}

/* Ensure text remains readable */
.hero * {
    position: relative;
    z-index: 2;
}

/* Add smooth transitions */
.hero, .hero-title, .hero-description {
    transition: all 0.3s ease-in-out;
}