/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #00d2ff;
    --dark-bg: #0f172a;
    --text-light: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f6fa;
    color: #333;
    overflow-x: hidden;
}

/* --- Gradient Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Page Header (For Inner Pages) --- */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('https://source.unsplash.com/1600x600/?office,meeting');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px 0;
    color: white;
    margin-bottom: 50px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.text-justify {
    text-align: justify;
}

/* --- Glassmorphism Cards --- */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

/* --- Navbar --- */
.navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #e2e8f0 !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* --- Buttons --- */
.btn-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    color: white;
}

/* --- Stats Counter --- */
.stats-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-color);
}

/* --- Footer --- */
footer {
    background: var(--dark-bg);
    color: #94a3b8;
}
footer h5 { color: white; margin-bottom: 20px;}
footer a { color: #94a3b8; text-decoration: none; transition: 0.3s;}
footer a:hover { color: var(--accent-color); padding-left: 5px;}