﻿/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-card {
        min-width: 100px;
        padding: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .hero-buttons .btn {
            width: 100%;
            margin: 0 !important;
        }

    .hero-stats {
        margin-top: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .solution-card {
        padding: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .footer {
        text-align: center;
    }

        .footer h5::after {
            left: 50%;
            transform: translateX(-50%);
        }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stat-card {
        min-width: 80px;
        padding: 10px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

        .card-icon i {
            font-size: 1.8rem;
        }
}

/* Print Styles */
@media print {
    .navbar, .hero-wave, .footer, .cta-section {
        display: none;
    }

    body {
        background: white;
    }
}
