
.top-banner {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.banner-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.banner-search {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: auto;
}

.banner-search input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.banner-search button {
    padding: 12px 20px;
    border: none;
    background: #f59e0b;
    color: #fff;
    font-weight: bold;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.banner-search button:hover {
    background: #d97706;
}

/* ?? RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 768px) {
    .top-banner {
        padding: 50px 15px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-search {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 22px;
    }

    .banner-content p {
        font-size: 13px;
    }

    .banner-search {
        flex-direction: column;
        gap: 10px;
    }

    .banner-search input {
        border-radius: 6px;
        width: 100%;
    }

    .banner-search button {
        border-radius: 6px;
        width: 100%;
    }
}
.search-input-group input {
  
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 45px;
    width: auto !important;
}
