/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {

    .hero .container,
    .about .container {
        flex-direction: column;
    }

    .hero-content,
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image,
    .about-image {
        width: 80%;
        margin: 0 auto;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 999;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .mobile-menu {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-image,
    .about-image {
        width: 100%;
    }

    .portfolio-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-card,
    .blog-card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-about,
    .footer-links,
    .footer-services,
    .footer-newsletter {
        margin-bottom: 30px;
    }
}