.banner-category-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 4px 24px rgba(30, 41, 59, 0.06);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.banner-category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.13);
}
.process-step {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
}
.section-title {
    color: #1e293b;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.custom-bg {
    background: #f5f7fa;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e7ef;
    color: #1e293b;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.07);
}

.banner-category-card h5 {
    color: #1e293b;
    font-weight: 600;
}

.banner-category-card p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0;
}

.process-section{
    padding: 0 0 40px 0 !important;
}
.process-title {
    color: #b91c1c;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.process-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.process-step-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(30, 41, 59, 0.07);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    height: 100%;
}

.process-step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.13);
}

.step-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.13);
    border: 3px solid #f5f7fa;
}

.process-step-card h5 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
}

.process-step-card p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0;
}

.hidden-visiting-card {
    display: none;
}

/* responsive setion start */

@media (max-width: 992px) {
    .process-step-card {
        min-height: 0;
        padding: 1.5rem 1rem;
    }
    .process-title {
        font-size: 1.7rem;
    }
     .banner-category-card {
        min-height: 340px;
    }
}
@media (max-width: 768px) {
    .overview-grid {
        flex-direction: column;
    }
    .section-header{
        margin-bottom: 0 !important;
    }
    .banner-category-card {
        min-height: 0;
        padding: 1.5rem 1rem;
        width: 100%;
    }
    .col-12{
        display: flex;
        justify-content: center;
        width: 95%;
    }
}

@media (max-width: 600px) {
    /* Show 2 banner category cards per row on 600px screens */
    .col-12.col-sm-6.col-lg-4 {
        flex: 0 0 50%;
        max-width: 49%;
        padding: 0 8px;
    }
    
    .row {
        margin: 0 -8px;
    }
    
    /* Adjust card styling for better fit */
    .banner-category-card {
        min-height: 280px;
        padding: 1.2rem 1rem;
        margin-bottom: 16px;
        height: fit-content;
    }
    
    /* Adjust icon size for smaller cards */
    .category-icon {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
    
    /* Adjust text sizes for better readability */
    .banner-category-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-category-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Process step cards - show 2 per row */
    .col-12.col-sm-6.col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
    }
    
    /* Adjust process step card styling for 2-column layout */
    .process-step-card {
        min-height: 200px;
        padding: 1.2rem 1rem;
        margin-bottom: 16px;
    }
    
    /* Adjust step circle size for smaller cards */
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    /* Adjust text sizes for process cards */
    .process-step-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .process-step-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}


