
/* Search Section */
.search-section {
    padding: 1rem 0;
}

.search-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--middleColor);
    font-size: 1.8rem;
}

.search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 1rem;
    align-items: end;
}
.blog-s {
     grid-template-columns: 1fr 1fr 1fr;
}
.search-field .form-control {
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    
}

.search-field .btn {
    height: 50px;
    padding: 0 2rem;
    font-weight: 600;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-fields {
        grid-template-columns: 1fr;
    }}