/* Responsive Styles */

/* Large Devices (laptops/desktops, 992px and up) */
@media (max-width: 1200px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (max-width: 992px) {
    .header .container {
        padding: 10px 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: white;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .main-nav ul li {
        margin: 10px 30px;
    }
    
    .slide {
        flex-direction: column;
    }
    
    .slide-content,
    .slide-image {
        flex: none;
        width: 100%;
    }
    
    .slide-content {
        height: 50%;
        padding: 40px 5%;
    }
    
    .slide-image {
        height: 50%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .info-item {
        justify-content: center;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 90vh;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .logo img {
        height: 30px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content {
        padding: 30px 5%;
    }
    
    .hero-slider {
        height: 85vh;
        margin-top: 60px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
} 