/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        text-align: center;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        padding: 15px;
        border-radius: 10px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Animation for smaller devices */
@media (max-width: 576px) {
    .hero-img {
        width: 250px;
        height: 250px;
    }
}