/* ================= VARIABLES ================= */
:root {
    /* DEFAULT GLOBAL THEME */
    --primary: #7f13ec;       /* Violet 500 - Main Brand Color */
    --secondary: #7c3aed;     /* Violet 600 - Darker/Hover Color */
    --accent: #e355ff;
    
    /* Neutrals */
    --dark-text: #1e293b;
    --light-text: #64748b;
    
    /* Backgrounds */
    --bg-body: #ffffff;
    --bg-light: #f8fafc;
    
    /* UI Elements */
    --border: #e2e8f0;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.15);
}

* { font-family: 'Outfit', sans-serif; }
body { text-align: left; }

/* ================= HERO SECTION (UPDATED) ================= */
.hero-section {
    min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center; padding: 5px 5px 5px;
    
    /* Background Image Added Here */
    background: url('../images/fourm/1.jpg') no-repeat center center/cover;
    color: rgba(255, 255, 255, 0.722); /* Make text white for contrast */
}

/* Dark Overlay for Readability */
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(15, 23, 42, 0.75); /* Dark Navy Overlay */
    z-index: 1;
}

.hero-content { z-index: 10; max-width: 900px; position: relative; }

.badge-pill {
    display: inline-block; padding: 8px 24px; border-radius: 50px;
    background: var(--accent); color: white; /* Use accent color for badge */
    font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    margin-bottom: 25px; border: none;
}

.hero-title {
    font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; 
    color: white; letter-spacing: -2px;
}

.highlight-text {
    /* Gradient Text on Dark Background */
    background: linear-gradient(135deg, #a5b4fc, #67e8f9); /* Lighter gradient for dark bg */
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle { 
    font-size: 1.25rem; color: #cbd5e1; /* Light gray text */
    max-width: 600px; margin: 0 auto 40px; 
}

.hero-btns { display: flex; gap: 20px; justify-content: center; }
.btn-primary { 
    padding: 14px 35px; background: white; color: var(--dark-text); /* White buttons */
    border-radius: 50px; text-decoration: none; font-weight: 600; 
    transition: transform 0.3s; 
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

/* ================= SECTIONS & UTILITIES ================= */
.forum-section { padding: 40px 0; border-bottom: 1px solid var(--border); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

.forum-header { margin-bottom: 60px; text-align: center; }
.section-header { margin-bottom: 50px; }

/* Grid Systems */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

/* ================= FORUM SPECIFIC THEMES ================= */

/* 1. Technocrats Theme (Violet/Cyan) */
.tech-theme {
    --f-primary: #8b5cf6;   /* Violet */
    --f-accent: #06b6d4;    /* Cyan */
    --f-bg: #f5f3ff;        /* Light Violet Tint */
    background-color: var(--f-bg);
}

/* 2. Nexora Theme (Navy/Amber) */
.biz-theme {
    --f-primary: #1e40af;   /* Royal Blue */
    --f-accent: #f59e0b;    /* Amber/Gold */
    --f-bg: #ffffff;        /* White */
    background-color: var(--f-bg);
}

/* ================= LEADER CARDS ================= */
.leader-card {
    background: white; border-radius: 20px; padding: 30px;
    text-align: center; border: 1px solid var(--border);
    transition: 0.3s; position: relative; overflow: hidden;
}
.leader-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

/* Icon Box for Section Header */
.icon-box {
    width: 80px; height: 80px; margin: 0 auto 20px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; 
}

.qual { font-size: 0.9rem; color: var(--light-text); }

/* ================= FOOTER ================= */


/* ================= MOBILE RESPONSIVENESS ================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    
    /* Stack Grids */
    .grid-4, .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    
    .leader-card { padding: 20px; }
    .forum-header h2 { font-size: 2rem !important; }
}

/* ================= ANIMATIONS ================= */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } 
.delay-2 { transition-delay: 0.2s; }

.fade-in { animation: fadeIn 1s forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }