/* 
========================================
Responsive Styles
========================================
*/

@media (max-width: 1199px) {
    .hero-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .cursor, .cursor-follower {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
