:root {
    --primary-color: #0ea5e9;
    --secondary-color: #06b6d4;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --border-color: #0ea5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.dark-theme {
    background-color: var(--dark-bg);
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-darker {
    background-color: var(--darker-bg) !important;
}

.bg-secondary {
    background-color: var(--card-bg) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #000 !important;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #000 !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-success {
    border-color: #22c55e !important;
}

.border-info {
    border-color: #a855f7 !important;
}

.border-danger {
    border-color: #ec4899 !important;
}

.border-warning {
    border-color: #f97316 !important;
}

.card {
    transition: all 0.3s ease;
    border-width: 2px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.8)), 
                radial-gradient(circle at top left, rgba(14, 165, 233, 0.1), transparent),
                radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.1), transparent);
    min-height: 100px;
    display: flex;
    align-items: center;
}

.cursor-pointer {
    cursor: pointer;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Committee Modal Styles */
.member-card {
    border-width: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.member-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.member-modal-header {
    border-bottom: 2px solid var(--primary-color);
}

.trait-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.achievement-list {
    list-style: none;
}

.achievement-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.achievement-list li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Form Styles */
.form-control {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
    color: #e2e8f0;
}

.form-control:focus {
    background-color: var(--card-bg);
    border-color: var(--secondary-color);
    color: #e2e8f0;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
}

.form-select {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
    color: #e2e8f0;
}

.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
}

.form-check-input {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Admin Dashboard Styles */
.admin-sidebar {
    background-color: var(--darker-bg);
    border-right: 2px solid var(--primary-color);
    min-height: 100vh;
    padding: 2rem 0;
}

.admin-sidebar .nav-link {
    color: #94a3b8;
    padding: 1rem 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background-color: rgba(14, 165, 233, 0.1);
}

.admin-content {
    background-color: var(--dark-bg);
    padding: 2rem;
}

.event-table {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
}

.event-table thead {
    background-color: rgba(14, 165, 233, 0.1);
    border-bottom: 2px solid var(--primary-color);
}

.event-table tbody tr {
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    transition: background-color 0.3s ease;
}

.event-table tbody tr:hover {
    background-color: rgba(14, 165, 233, 0.05);
}

/* Modal Styles */
.modal-content {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
}

.modal-header {
    border-bottom: 2px solid var(--primary-color);
}

.modal-footer {
    border-top: 2px solid var(--primary-color);
}

.btn-close-white {
    filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
    }

    h1.display-4 {
        font-size: 2rem;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: slideIn 0.5s ease-out;
}

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

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Social Media Sidebar Styles */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1030; /* Above navbar */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    background-color: var(--dark-bg);
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

.social-icon {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-radius: 5px 0 0 5px;
    margin-left: 10px;
}

.social-icon:hover {
    transform: translateX(-10px);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #00acee;
}

.social-icon.instagram {
    background-color: #E1306C;
}

.social-icon.linkedin {
    background-color: #0e76a8;
}

.social-icon.youtube {
    background-color: #FF0000;
}

@media (max-width: 768px) {
    .social-sidebar {
        display: none; /* Hide on small screens */
    }
}


/* Enhanced Member Card Pop-up Design (Fruitful-inspired) */
.member-card {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover::before {
    opacity: 1;
}

.member-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
}

/* Modal Enhancements */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.modal-header {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-bottom: 2px solid var(--primary-color);
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* Member Modal Specific Styles */
.member-modal-header {
    border-bottom: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
}

#memberModalEmoji {
    font-size: 4rem;
    animation: popIn 0.5s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

#memberModalName {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#memberModalRole {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trait-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.trait-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    position: relative;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.achievement-list li:last-child {
    border-bottom: none;
}

.achievement-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.achievement-list li:hover {
    padding-left: 2rem;
    color: var(--primary-color);
}

/* Modal Footer Enhancements */
.modal-footer {
    border-top: 2px solid var(--primary-color);
    background-color: rgba(14, 165, 233, 0.05);
    padding: 1.5rem;
}

/* Connect Section in Modal */
.modal-body .border-top {
    border-color: var(--primary-color) !important;
}

/* Scrollbar styling for modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(14, 165, 233, 0.05);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Animation for modal appearance */
.modal.fade .modal-dialog {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-dialog {
    transform: scale(1);
}


/* --- Simple Quadratic Committee Card Design --- */

.member-box-card {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-box-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    border-color: var(--secondary-color);
}

.member-box-image-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* This makes it quadratic/square */
    overflow: hidden;
}

.member-box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-box-card:hover .member-box-image {
    transform: scale(1.1);
}

.member-box-info {
    padding: 1.5rem;
    text-align: center;
}

.member-box-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.member-box-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Committee Grid Layout */
.committee-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

/* Adjust the grid for smaller screens */
@media (max-width: 768px) {
    .committee-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* Fix for the last row offset if it looks awkward */
@media (min-width: 992px) {
    .committee-grid-container {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
    }
    .committee-grid-container > div:nth-child(4n+3),
    .committee-grid-container > div:nth-child(4n+4) {
        margin-top: 50px;
    }
    .committee-grid-container > div:nth-child(4n+1),
    .committee-grid-container > div:nth-child(4n+2) {
        margin-top: 0;
    }
}


/* ============================================
   ENHANCED ANIMATIONS & FEATURES STYLES
   ============================================ */

/* 1. PARTICLE BACKGROUND */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

/* 2. SCROLL REVEAL ANIMATIONS */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-visible {
    animation: revealAnimation 0.8s ease-out forwards;
}

@keyframes revealAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger effect for multiple elements */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* 3. GLASSMORPHISM EFFECT */
.card {
    background: rgba(30, 41, 59, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.modal-content {
    background: rgba(30, 41, 59, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
}

/* 4. INTERACTIVE CURSOR */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #0ea5e9;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
    transform: translate(-50%, -50%);
}



/* 6. HOVER 3D TILT EFFECT */
.card {
    transition: transform 0.6s ease-out;
    transform-style: preserve-3d;
}

/* 7. SCROLL PROGRESS BAR */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* 8. DARK/LIGHT MODE TOGGLE */
.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(20deg);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

/* Light Theme Styles */
body.light-theme {
    background-color: #f5f5f5 !important;
    color: #333 !important;
}

body.light-theme .bg-dark,
body.light-theme .bg-darker {
    background-color: #f5f5f5 !important;
}

body.light-theme .card {
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: #333 !important;
    border-color: #0ea5e9 !important;
}

body.light-theme .text-light {
    color: #666 !important;
}

body.light-theme .text-white {
    color: #333 !important;
}

body.light-theme .navbar {
    background-color: white !important;
    border-bottom: 2px solid #0ea5e9 !important;
}

body.light-theme .nav-link {
    color: #333 !important;
}

body.light-theme .nav-link:hover {
    color: #0ea5e9 !important;
}

body.light-theme .modal-content {
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
}

body.light-theme .form-control,
body.light-theme .form-select {
    background-color: white !important;
    color: #333 !important;
    border-color: #0ea5e9 !important;
}

body.light-theme .hero-section {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.9), rgba(255, 255, 255, 0.9)),
                radial-gradient(circle at top left, rgba(14, 165, 233, 0.1), transparent),
                radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.1), transparent) !important;
}

/* 9. MAGNETIC BUTTONS */
.btn-primary,
.btn-outline-primary {
    transition: transform 0.3s ease-out;
    position: relative;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* 10. LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #020617);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(14, 165, 233, 0.2);
    border-top: 4px solid #0ea5e9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: #0ea5e9;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ENHANCED HOVER EFFECTS */
.card {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.card:hover::before {
    left: 100%;
}

/* SMOOTH TRANSITIONS */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

a, button {
    transition: all 0.3s ease;
}

/* BUTTON ENHANCEMENTS */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .theme-toggle-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .custom-cursor,
    .cursor-trail {
        display: none;
    }

    .scroll-progress-bar {
        height: 3px;
    }
}

/* ANIMATION STAGGER FOR CARDS */
.row > div {
    animation: slideIn 0.5s ease-out;
}

.row > div:nth-child(1) { animation-delay: 0.05s; }
.row > div:nth-child(2) { animation-delay: 0.1s; }
.row > div:nth-child(3) { animation-delay: 0.15s; }
.row > div:nth-child(4) { animation-delay: 0.2s; }
.row > div:nth-child(5) { animation-delay: 0.25s; }
.row > div:nth-child(6) { animation-delay: 0.3s; }

/* ENHANCED HERO SECTION */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1), transparent 50%);
    animation: gradientShift 8s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* SMOOTH PAGE TRANSITIONS */
html {
    scroll-behavior: smooth;
}

/* ENHANCED FOCUS STATES */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

/* LINK HOVER EFFECTS */
a {
    position: relative;
    text-decoration: none;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* SMOOTH SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0ea5e9, #06b6d4);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #06b6d4, #0ea5e9);
}

/* ENHANCED FORM ELEMENTS */
.form-control:focus,
.form-select:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
    transform: translateY(-2px);
}

/* BADGE ANIMATIONS */
.badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ENHANCED MODAL ANIMATIONS */
.modal.fade .modal-dialog {
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ENHANCED GALLERY ITEMS */
.gallery-item {
    animation: galleryFadeIn 0.6s ease-out;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* ENHANCED COMMITTEE CARDS */
.hex-member-card {
    animation: hexFadeIn 0.6s ease-out;
}

@keyframes hexFadeIn {
   from {
        opacity: 0;
        transform: scale(0.8) rotateZ(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateZ(0deg);
    }
}

.hex-member-card:nth-child(1) { animation-delay: 0.1s; }
.hex-member-card:nth-child(2) { animation-delay: 0.2s; }
.hex-member-card:nth-child(3) { animation-delay: 0.3s; }
.hex-member-card:nth-child(4) { animation-delay: 0.4s; }

.no-animate,
.no-animate * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}
