/* Home Page Specific Styles */
.home-hero {
    position: relative;
    overflow: hidden;
}

.home-hero video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.testimonial-heading {
    color: #333;
    margin-bottom: 30px;
}

.carousel-caption {
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    padding: 20px;
}

.console-container {
    font-family: monospace;
    color: #eea234;
}

.typing-demo {
    animation: typing 3s steps(20) infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-hero video {
        height: 300px;
        object-fit: cover;
    }
    
    .testimonial-heading {
        font-size: 1.5rem;
    }
}