.search-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding-left: 35px; /* Adjust this value based on icon size */
    height: 50px; /* Adjust input height as needed */
    box-sizing: border-box;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    fill: #ccc; /* Color of the SVG */
    width: 20px; /* Adjust icon size */
    height: 20px; /* Adjust icon size */
}

.border-radius {border-radius: 15px}

.app-image {height: 200px; width: 200px}

.app-store-wrap .hero-section-content-wrap .hero-section-content {
    margin-bottom: 95px;
}
.app-store-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 120px;
}
.app-store-box {
    transition: all 0.5s;
    padding: 70px;
}
.app-store-box h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--primary_color);
}
.app-store-box h3 {
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: var(--dark1);
    margin-bottom: 15px;
    font-family: var(--font_yantramanv);
}
.app-store-box p {
    font-size: 16px;
    line-height: 24px;
    color: rgb(28 28 28 / 80%);
    margin-bottom: 0;
}

.app-store-box:hover {
    background:rgba(0,0,255,0.1);
}

.app-icon {
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
    border-radius: 10px;
}

h1, h2, h3, h4, h5, h6 {font-family: 'Cal Sans'}