/* Small Mobile Devices (Below 480px) */
@media only screen and (max-width: 480px) {
    /* CSS styles for small mobile screens (below 480px) */
    .flx-col {
        flex-direction: column;
    }
    .gap-2 {
        gap: 2rem;
    }
    .heading-text{
        font-size: 1.5rem;
        font-weight: 500;
    }
    .padding-1{
        padding: 1rem;
    }

    .margin-top-1{
        margin-top: 1rem;
    }

    .margin-bottom-1{
        margin-bottom: 1rem;
    }

    .text-cntr{
        text-align: center;
    }
    .img{
        height: 2rem;
        width: 2rem;
    }

    .f-size{
        font-size: 10px;
    }
    
    .width-100{
        width: 100%;
    }
    .margin-top-4{
        margin-top: 4rem;
    }
    .h-100vh{
        height: 100vh;
    }
    .display-none{
        display: none;
    }
}

/* Extra Small Devices (Mobile, 600px and below) */
@media only screen and (max-width: 600px) {
    /* CSS styles for mobile screens (600px and below) */
    .flx-col {
        flex-direction: column;
    }
    .gap-2 {
        gap: 2rem;
    }
    .heading-text{
        font-size: 1.5rem;
        font-weight: 500;
    }
    .padding-1{
        padding: 1rem;
    }

    .margin-top-1{
        margin-top: 1rem;
    }

    .margin-bottom-1{
        margin-bottom: 1rem;
    }

    .text-cntr{
        text-align: center;
    }
    .img{
        height: 2rem;
        width: 2rem;
    }

    .f-size{
        font-size: 10px;
    }
    
    .width-100{
        width: 100%;
    }
    .margin-top-4{
        margin-top: 4rem;
    }
    .h-100vh{
        height: 100vh;
    }
    .display-none{
        display: none;
    }
}

/* Small Devices (Tablets, 601px to 768px) */
@media only screen and (min-width: 601px) and (max-width: 768px) {
    /* CSS styles for tablets (601px to 768px) */
    .flx-col {
        flex-direction: column;
    }
}

/* Medium Devices (Tablets, 769px to 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    /* CSS styles for tablets (769px to 1024px) */
    .flx{
        display: flex;
    }

}

/* Large Devices (Laptops, 1025px to 1200px) */
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    /* CSS styles for laptops (1025px to 1200px) */
    .flx{
        display: flex;
    }
}

/* Extra Large Devices (Desktops, 1201px and above) */
@media only screen and (min-width: 1201px) {
    /* CSS styles for desktops (1201px and above) */
    .padding-l-r-90{
        padding-left: 90px;
        padding-right: 90px;
    }
}

/* Portrait Mode (Mobile/Tablets in portrait) */
@media only screen and (orientation: portrait) {
    /* CSS styles for portrait orientation on mobile and tablet devices */
}

/* Landscape Mode (Mobile/Tablets in landscape) */
@media only screen and (orientation: landscape) {
    /* CSS styles for landscape orientation on mobile and tablet devices */
}
