/* This is media query file */

/* General Overrides for Mobile */
@media screen and (max-width: 991px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-toggle {
        display: block;
        margin-right: 20px;
        font-size: 1.5rem;
        color: var(--primary-text-color);
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
        flex-basis: auto;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .main-nav {
        overflow: visible;
        /* Allow dropdown to show */
        position: relative;
    }

    /* Content Layouts */
    .header-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .header-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .header-right img {
        width: 80%;
        max-width: 500px;
    }

    .logos {
        gap: 20px;
        justify-content: center;
    }

    .features-area {
        justify-content: center;
    }

    .feature-card {
        max-width: 45%;
        margin-top: 10px;
    }

    .big-feature-container {
        flex-direction: column;
        text-align: center;
    }

    .feature-dis {
        align-items: center;
        text-align: center;
    }

    #spl-cont {
        flex-direction: column-reverse;
    }

    .example-area {
        gap: 20px;
    }

    .example-card {
        width: calc(50% - 20px);
        height: 200px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .link-column {
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        display: block;
        text-align: center;
    }

    .feature-card {
        max-width: 100%;
    }

    .example-card {
        width: 100%;
    }

    .company-logo img {
        width: 150px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .header-section {
        padding-top: 20px;
    }

    .feature-card {
        max-width: 100%;
    }
}