   
          /* Custom styles for the finance banking website */
body {
    scroll-behavior: smooth;
}

/* Canvas animation styles */
#heroCanvas {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e40af 100%);
}

/* Navigation active state */
nav a.active {
    color: #fbbf24;
    text-decoration: underline;
}

/* Responsive mobile menu */
@media (max-width: 768px) {
    #mobile-menu.show {
        display: block;
    }
}

/* Smooth transitions */
.hover\:transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Card hover effects */
.service-card:hover,
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button animations */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e40af 100%);
}

/* Animation keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Typography enhancements */
.text-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section padding adjustments */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Image hover effects */
.image-hover-zoom {
    transition: transform 0.3s ease;
}

.image-hover-zoom:hover {
    transform: scale(1.05);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #1e40af;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a;
}

/* Blue background white text style for special message */
.blue-bg-white-text {
    background-color: #1e40af;
    color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .blue-bg-white-text {
        padding: 3rem;
        margin: 3rem 0;
    }
}

/* Leading loose for better line spacing */
.leading-loose {
    line-height: 2;
}

/* Extra loose leading for increased spacing */
.leading-extra-loose {
    line-height: 3;
}

        