
:root {
    --primary-color: #f3e5f5; /* Soft Cyan */
    --secondary-color: #e1bee7; /* Lighter Cyan */
    --accent-color: #9c27b0; /* Accent Cyan */
    --text-color: #4a148c; /* Deep Cyan */
    --bg-color: #fafafa;
    --bg-light: #ffffff;
    --white: #ffffff;
    --border-color: #b2ebf2;
    
    --theme-primary: #f3e5f5 !important;
    --theme-secondary: #e1bee7 !important;
    --theme-accent: #9c27b0 !important;
    --theme-gradient: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%) !important;
    
    /* Variables used by modern-enhancements.css etc */
    --primary-gradient: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%) !important;
    --hero-gradient: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%) !important;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.top-bar {
    background: var(--theme-gradient);
    color: var(--text-color);
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid var(--secondary-color);
}

.nav-menu li a {
    color: var(--text-color) !important;
}

.nav-menu li a:hover, .nav-menu li a.active {
    background: var(--primary-color) !important;
    color: var(--text-color) !important;
    border-radius: 5px;
}

.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('assets/WhatsApp Image 2025-12-04 at 10.31.19 PM.jpeg') center/cover !important;
    color: var(--text-color) !important;
}

.hero-title, .hero-subtitle {
    color: var(--text-color) !important;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
}

.card, .info-card, .service-card, .member-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .info-card:hover, .service-card:hover, .member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color) !important;
}

.footer {
    background: var(--theme-gradient);
    color: var(--text-color);
}

.footer h3, .footer p, .footer a {
    color: var(--text-color) !important;
}

/* Animations */
.animated-section {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Circle images for members */
.member-card img {
    border-radius: 50% !important;
    width: 150px !important;
    height: 150px !important;
    object-fit: cover !important;
    border: 3px solid var(--accent-color) !important;
    margin: 0 auto 15px auto !important;
    display: block !important;
}

.video-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.video-row video {
    width: 30%;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
