/* ======================================
   IFSC INFORMATION - HOMEPAGE CSS
   CLEAN + ISOLATED DESIGN
====================================== */

/* ==============================
   HERO SECTION
================================= */
.hero-search-section {
    background: #ffffff;
    padding: 60px 30px;
    border-radius: 18px;
    margin-top: 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hero-search-section h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
}

.hero-search-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

/* ==============================
   SEARCH FORM (HOME ONLY)
================================= */
.hero-search-section .search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-search-section .search-input {
    width: 60%;
    min-width: 250px;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.hero-search-section .search-btn {
    padding: 16px 28px;
    border-radius: 50px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.hero-search-section .search-btn:hover {
    background: #084298;
}

/* ==============================
   INFO CARDS (HOME SECTIONS)
================================= */
.info-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0d6efd;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #444;
}

/* ==============================
   SECTION WRAPPER
================================= */
.info-sections {
    margin-top: 30px;
}

/* ==============================
   AD SPACING ON HOME
================================= */
.home-ad {
    margin: 20px 0;
}

/* ==============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 768px) {

    .hero-search-section h1 {
        font-size: 24px;
    }

    .hero-search-section {
        padding: 35px 20px;
    }

    .hero-search-section .search-input {
        width: 100%;
    }

    .hero-search-section .search-btn {
        width: 100%;
    }

}