/* Responsive Styles */

/* General Responsive Container */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    .hero-section {
        padding: 80px 0;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    .hero-image {
        text-align: center;
    }
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }
    .service-card {
        margin-bottom: 30px;
    }
    .feature-card {
        margin-bottom: 30px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    .hero-section {
        padding: 60px 0;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .service-card,
    .feature-card,
    .testimonial-card,
    .project-card {
        margin-bottom: 20px;
    }
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    .stats-item {
        margin-bottom: 30px;
    }
    .cta-section {
        text-align: center;
    }
    .cta-section .btn {
        margin-top: 20px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    .service-card,
    .feature-card {
        padding: 20px;
    }
    .project-image {
        height: 200px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .client-image img {
        width: 60px;
        height: 60px;
    }
}

/* Section Background Colors */
.services-section {
    background-color: #f8f9fa;
}

.features-section {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.tech-stack-section {
    background-color: #1a1a1a;
}

.testimonials-section {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.projects-section {
    background-color: #f8f9fa;
}

.stats-section {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}