/* Responsive Styles */
/* Tablet Screens (max-width: 992px) */
@media (max-width: 1023px) {
    
    /* Header Section */
    .lang-opt{
        width: 100%; 
        height: auto;
        display: flex;
        position: relative;
        justify-content: end;
        align-items: center;
        padding-right: 2vw;  
        padding-top: 0.5vw
    }
    
    #languageSwitcher {
        text-align: center;
        font-size: 2vw;
        padding: 0.2vw;
        border:0.5px solid gray;
        border-radius: 5px;
        transition: 0.25s;
    }


    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2vh 2vw;
        font-size: 5vw;
        font-weight: bold;
        color: #2E5059;
        min-height: 1vh;
        background-color: white;
    }

    .download-button {
        background-color: #2E5059;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
    }

    /* Main Content */
    .content {
        flex-direction: column;
        background-color: #2E505926;
        padding: 1vh 4vw 3vh 4vw;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 90vh;
    }

    .text-content {
        text-align: justify;
        hyphens: auto;
        color: #2E5059;
        font-size: 2.5vw;
        font-weight: 500;
        line-height: 1.5;
        max-width: 100%;
    }

    .image-content img {
        max-width: 100%;
        zoom: 0.8;
    }

    /* Our Product Section */
    .text-header {
        color: #2E5059;
        font-weight: bold;
        text-align: center;
        font-size: 3vw;
        background-color: white;
        margin-top: 5vh;
        margin-left: 0vw;
        margin-right: 0vw;
        padding: 0vh 4vw 0vh 4vw;
    }

    .our-product {
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        padding: 2.5vh 4vw 3vh 4vw;
        
    }

    /* Default order (Desktop/Laptop) */
    .text-product {
        order: 2;
    }
    .image-product {
        order: 1;
    }

    .text-product {
        text-align: justify;
        hyphens: auto;
        color: #2E5059;
        font-size: 2.5vw;
        font-weight: 500;
        line-height: 1.5;
        max-width: 100%;
        padding-top: 2.5vh;
    }

    .image-product img {
        max-width: 400px;
        width: 100%;
        margin-bottom: 4vw;
    }

    .launching {
        background: linear-gradient(to right, #FADA46, white);
        padding: 2vw;
        margin: 0vw 4vw 3vh 4vw;
        font-size: 3vw;
        font-weight: bold;
        text-align: left;
        color: #2E5059;
        max-width: 100%;
    }

    /* Team Section */
    .team-section {
        background-color: #dfe6e9;
        padding: 5vh 4vw 3vh 4vw;
        text-align: center;
    }

    .title-box {
        display: flex;
        flex-wrap: wrap;
    }

    .title-prespace {
        width: 100%;
    }

    .team-title {
        font-size: 4.5vw;
        font-weight: bold;
        color: #2E5059;
        width: 100%;
        padding-bottom: 5vw;
    }

    .team-members {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;    
    }

    .team-member {
        text-align: center;
        width: 50%;
    }

    .team-member img {
        width: 25vw;
        height: 25vw;
        border: 2px solid #2E5059;
        border-radius: 5px;
        margin-bottom: 1vw;
    }

    .team-member p {
        font-size: 2.5vw;
        color: #2E5059;
        margin: 0.2vw 0vw;
    }

    .team-quote {
        text-align: justify;
        hyphens: auto;
        color: #2E5059;
        font-size: 2.5vw;
        width: 100%;
        padding: 2.5vw 2vw;
        font-weight: 500;
        line-height: 1.5;
    }

    /* Updates Section */
    .updates-section {
        background-color: white;
        padding: 5vh 2vw;

    }

    .updates-title {
        font-size: 4.5vw;
        font-weight: bold;
        text-align: center;
        color: #2E5059;
        margin-bottom: 2vw;
    }

    .updates-loading {
        width: 40%;
    }

    .updates-note {
        color: #3B6670; 
        font-size: 2.5vw;
        margin-bottom: 10vw
    }

    /* Footer Section */
    .footer-section {
        background-color: #dfe6e9;
        padding: 2vw;
        text-align: start;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }

    .footer-title {
        font-size: 1.5vw;
        color: #2E5059;
        margin-bottom: 0vw;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a img {
        width: 25px;
        height: 25px;
    }

    .contact-btn {
        background-color: #2E5059;
        color: white;
        padding: 1vw 1vw;
        border: none;
        border-radius: 5px;
        text-wrap: nowrap;
        cursor: pointer;
        font-size: 1.5vw;
        align-items: end;
        margin-right: 1.5vw;
    }
}