/* Responsive Styles */

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .heading-title {
        font-size: 2rem;
    }
    
    .scrolling-text {
        font-size: 4rem;
    }
    
    .project-gallery-swiper img {
        height: 300px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .top-bar {
        display: none !important;
    }
    
    .navbar-brand.logo img {
        max-height: 40px;
    }
    
    .heading-title {
        font-size: 1.75rem;
    }
    
    .display-1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    .scrolling-text {
        font-size: 2.5rem;
    }
    
    .section-banner {
        padding: 40px 0 20px;
    }
    
    .project-gallery-1 {
        padding: 30px 0;
    }
    
    .project-gallery-swiper img {
        height: 250px;
    }
    
    .testimonial-wrapper {
        padding: 20px;
    }
    
    .testimonial-quote-icon svg {
        width: 50px;
    }
    
    .widget {
        padding: 20px;
    }
    
    .sticky-elements {
        position: relative;
        top: 0;
    }
    
    .progressCounter {
        bottom: 15px;
        right: 15px;
    }
    
    .progressScroll-circle {
        width: 40px;
        height: 40px;
    }
    
    .offcanvas {
        width: 85% !important;
    }
    
    .project-swiper-pagination-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Print */
@media print {
    .navbar,
    .progressCounter,
    .swiper-button-progress,
    .page-lines,
    .footer .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
}