/* Hero Styling */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    background: linear-gradient(135deg, #1e5631 0%, #2d7a4a 50%, #1e5631 100%);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-image-container {
    position: relative;
    height: 500px;
}

@media (max-width: 1024px) {
    .hero-image-container {
        height: 350px;
    }
}

.hero-image-frame {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 3rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-badge {
    background: rgba(255, 200, 87, 0.2);
    border: 2px solid #ffc857;
    color: #ffc857;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
}

/* Animated Background Pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-pattern::before,
.hero-pattern::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
}

.hero-pattern::before {
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-pattern::after {
    bottom: -100px;
    left: -100px;
    animation-delay: 10s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-50px) scale(1.1);
    }
}
/* Card Hover Effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Containers */
.icon-box {
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Bank Card Improvements */
.bank-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.bank-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .bank-card {
        padding: 1.5rem;
    }
}
