    .form-control {
        border-radius: 33px;
        background-color: #EFEFEF;
        height: 60px;
        color: #C5C5C5;
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
        border: none;
    }

    .header-text {
        font-size: 70px;
        font-weight: 400;
        line-height: 91.14px;
    }

    .header-text .all {
        color: #070708;
    }

    .header-text .apps {
        color: #4585FF;
    }

    .card {
        width: 100%;
        height: auto;
        border-radius: 0px;
        box-shadow: none;
    }

    .card-img {
        width: 100%;
        height: auto;
        border-radius: 25px;
        background-color: #FFFFFF;
    }

    .card-title {
        text-align: start;
        font-weight: 700;
        font-size: 32px;
        line-height: 41.66px;
        color: #070708;
        padding-left: 10px;

    }

    .card-text {
        font-weight: 400;
        font-size: 20px;
        line-height: 26.04px;
        color: #393745;
        text-align: start;
        padding-left: 10px;
        padding-bottom: 10px;
    }

    .fa-star {
        color: gold;
        padding-right: 10px;
    }

    .app-card {
        transition: transform 0.2s ease-in-out;
        margin-bottom: 10%;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;

    }

    .app-card:hover {
        transform: scale(1.05);
        background-color: #EFEFEF;
        border-radius: 34px;
    }

    .app-card .card-img {
        transition: transform 0.2s ease-in-out;
    }

    .app-card:hover .card-img {
        transform: scale(0.9);
    }

    .app-card:hover .card-title {
        transform: scale(0.9);
    }

    .app-card:hover .card-text {
        transform: scale(0.9);
    }

    .form-control:focus {
        background-color: #EFEFEF;
    }

    input[type='text'] {
        padding-left: 12%;
        color: #C5C5C5;
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
    }

    .viewmore button {
        height: 70px;
        justify-content: center;
        padding: 2px 80px 0px 80px;
        gap: 0px;
        border-radius: 50px;
        opacity: 0px;
        background-color: #4585FF;
        color: #ffffff;
        border: none;
        font-size: 31px;
        font-weight: 500;
        line-height: 40.36px;
        letter-spacing: -0.03em;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .viewmore button:hover {
        background-color: #4585FF;
        transform: scale(1.05);
    }

    @media only screen and (max-width:360px) {
        .header-text {
            font-size: 50px;
        }

        .viewmore button {
            font-size: 19px !important;
            padding: 2px 50px 5px 50px;
            line-height: 20.36px;
            letter-spacing: -0.02em;
        }
    }

    @media only screen and (min-width:361px) and (max-width:576px) {
        .header-text {
            font-size: 50px;
        }

        .viewmore button {
            font-size: 21px !important;
            line-height: 20.36px;
            letter-spacing: -0.02em;
        }
    }

    @media only screen and (min-width:576px) and (max-width:656px) {
        .card-title {
            font-size: 23px;
        }

        .card-text {
            font-size: 17px;
        }
    }

    @media only screen and (min-width:768px) and (max-width:940px) {
        .card-title {
            font-size: 23px;
        }

        .card-text {
            font-size: 17px;
        }
    }

    @media only screen and (min-width:992px) and (max-width:1220px) {
        .card-title {
            font-size: 23px;
        }

        .card-text {
            font-size: 17px;
        }
    }
