/* Custom CSS for Asiant Bank Public Website */

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #1f2937 100%);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.feature-icon {
    background-color: #dcfce7;
    color: #10b981;
}

/* How It Works Steps */
.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
}

/* FAQ Accordion */
.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

/* Blog Cards */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Contact Info */
.contact-icon {
    background-color: #dcfce7;
    color: #10b981;
}

/* Footer */
.footer-link:hover {
    color: #10b981 !important;
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #10b981;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .step-number {
        margin-bottom: 1.5rem;
    }
}