/* Professional Design & Modern Styles for Samrat Credit Co Operative Society Limited */

:root {
    --primary-color: #004d40; /* Darker, more professional Green */
    --secondary-color: #ff8f00; /* Sophisticated Amber/Saffron */
    --accent-color: #1a237e; /* Royal Navy */
    --text-color: #374151;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Fix Sticky Sidebar Bug */
.sticky-sidebar {
    position: sticky !important;
    top: 90px !important; /* Header height + gap */
    z-index: 10 !important;
}

header {
    z-index: 1000 !important; /* Ensure header is always on top */
}

/* Premium Card Design */
.premium-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

/* Modern Typography */
.display-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Blob Animation */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob {
    animation: blob 7s infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}
