/* Enhanced Hero & Bank Logos Styles */

/* Hero Section Enhancements */
.hero {
    position: relative;
    background: none;
    padding: 0 !important;
    overflow: hidden;
}



/* Content wrapper in hero */
.hero-wrapper {
    position: relative;
    z-index: 1;
}

/* Hero text content enhancements */
.hero-content h1 {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Enhanced Bank Support Section */
.supported-banks {
    margin-top: 30px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    padding: 25px !important;
    border-radius: 20px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.supported-banks:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Add a subtle glow effect */
.supported-banks:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,87,34,0.1), rgba(33,150,243,0.1));
    z-index: -1;
    filter: blur(20px);
    border-radius: 30px;
}

/* Bank logos container */
.bank-logos {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-bottom: 20px !important;
    padding: 10px 0 !important;
}

/* Individual bank logo */
.bank-logo {
    height: 60px !important; /* Increased size from 40px to 60px */
    width: auto !important;
    filter: brightness(1.2) contrast(1.2) !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.bank-logo:hover {
    transform: translateY(-8px) scale(1.1) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2) !important;
    filter: brightness(1.3) contrast(1.3) !important;
}

/* Bank text style enhancement */
.bank-text {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    margin-top: 5px !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    position: relative;
    padding-bottom: 8px;
}

.bank-text:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff5722, #ff9800);
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .bank-logo {
        height: 50px !important;
    }
    
    .bank-logos {
        gap: 20px !important;
    }
    
    .bank-text {
        font-size: 1rem !important;
    }
    
    .supported-banks {
        padding: 20px 15px !important;
    }
}

@media (max-width: 480px) {
    .bank-logo {
        height: 45px !important;
    }
    
    .bank-logos {
        gap: 15px !important;
    }
}