/* Reset and Base Styles */
:root {
    --primary-color: #1B3C53;
    --primary-dark: #0d2333;
    --primary-light: #234C6A;
    --secondary-color: #456882;
    --secondary-dark: #385570;
    --accent-color: #D2C1B6;
    --accent-light: #e5d9d0;
    --success-color: #059669;
    --gradient-primary: linear-gradient(135deg, #1B3C53 0%, #234C6A 100%);
    --gradient-secondary: linear-gradient(135deg, #456882 0%, #234C6A 100%);
    --gradient-premium: linear-gradient(135deg, #1B3C53 0%, #234C6A 50%, #456882 100%);
    --gradient-gold: linear-gradient(135deg, #D2C1B6 0%, #e5d9d0 50%, #f0e8e0 100%);
    --gradient-luxury: linear-gradient(135deg, #1B3C53 0%, #234C6A 50%, #456882 100%);
    --gradient-accent: linear-gradient(135deg, #456882 0%, #D2C1B6 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(27, 60, 83, 0.08);
    --shadow-md: 0 4px 8px -2px rgba(27, 60, 83, 0.12), 0 2px 4px -1px rgba(27, 60, 83, 0.08);
    --shadow-lg: 0 12px 20px -6px rgba(27, 60, 83, 0.15), 0 4px 8px -2px rgba(27, 60, 83, 0.1);
    --shadow-xl: 0 24px 32px -8px rgba(27, 60, 83, 0.18), 0 12px 16px -6px rgba(27, 60, 83, 0.12);
    --shadow-2xl: 0 32px 64px -16px rgba(27, 60, 83, 0.3);
    --shadow-glass: 0 8px 32px 0 rgba(27, 60, 83, 0.25);
    --shadow-neon: 0 0 30px rgba(69, 104, 130, 0.5);
    --shadow-premium: 0 25px 70px rgba(27, 60, 83, 0.35);
    --text-primary: #1B3C53;
    --text-secondary: #456882;
    --text-light: #8a9fb0;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafb;
    --bg-tertiary: #f0f4f7;
    --bg-dark: #1B3C53;
    --border-color: #e0e7ed;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* Futuristic Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.95) 0%, rgba(35, 76, 106, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(69, 104, 130, 0.2);
    padding: 12px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-buttons {
    display: flex;
    gap: 10px;
}

.top-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.top-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.top-btn:hover::before {
    left: 100%;
}

.register-btn {
    background: linear-gradient(135deg, #D2C1B6 0%, #e5d9d0 100%) !important;
    border: 1px solid rgba(240, 232, 224, 0.3) !important;
    font-weight: 700;
    color: #1B3C53 !important;
}

.register-btn:hover {
    background: linear-gradient(135deg, #c0af9f 0%, #D2C1B6 100%) !important;
    box-shadow: 0 10px 35px rgba(210, 193, 182, 0.4) !important;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(30, 27, 75, 0.15));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(27, 60, 83, 0.25));
}

.logo h2 {
    background: linear-gradient(135deg, #234C6A, #456882, #234C6A);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 700;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(35, 76, 106, 0.3));
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #234C6A;
    text-shadow: 0 0 10px rgba(35, 76, 106, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #234C6A, #456882);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(35, 76, 106, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
    
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dropdown-toggle::after {
    border: none;
    font-size: 0;
    transition: transform 0.3s ease;
}
.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-menu a:hover {
    background: rgba(35, 76, 106, 0.05);
    color: #234C6A;
    transform: translateX(5px);
}

.dropdown-menu a:hover::before {
    left: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d2333 0%, #1B3C53 50%, #234C6A 100%);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: cosmicFloat 15s ease-in-out infinite;
}

@keyframes cosmicFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.05) rotate(1deg); }
    66% { transform: scale(0.95) rotate(-1deg); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(59, 130, 246, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(59, 130, 246, 0.1) 87.5%, rgba(59, 130, 246, 0.1)),
        linear-gradient(150deg, rgba(139, 92, 246, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(139, 92, 246, 0.1) 87.5%, rgba(139, 92, 246, 0.1)),
        linear-gradient(30deg, rgba(245, 158, 11, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(245, 158, 11, 0.05) 87.5%, rgba(245, 158, 11, 0.05)),
        linear-gradient(150deg, rgba(245, 158, 11, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(245, 158, 11, 0.05) 87.5%, rgba(245, 158, 11, 0.05));
    background-size: 80px 80px, 80px 80px, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 80px 80px, -80px 80px, 40px 40px, -40px 40px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(27, 60, 83, 0.85), rgba(35, 76, 106, 0.85));
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
    letter-spacing: -2px;
}

@keyframes titleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight {
    background: linear-gradient(135deg, #f0e8e0 0%, #e5d9d0 50%, #D2C1B6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(210, 193, 182, 0.5));
}

@keyframes highlightPulse {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 25px rgba(210, 193, 182, 0.5));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 35px rgba(210, 193, 182, 0.7));
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    backdrop-filter: blur(10px);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, #D2C1B6 0%, #e5d9d0 100%);
    color: #1B3C53;
    box-shadow: 
        0 0 35px rgba(210, 193, 182, 0.45),
        0 12px 35px rgba(210, 193, 182, 0.35);
    border: 2px solid rgba(240, 232, 224, 0.3);
    position: relative;
    font-weight: 700;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 0 60px rgba(210, 193, 182, 0.65),
        0 25px 50px rgba(210, 193, 182, 0.45);
    border-color: rgba(240, 232, 224, 0.5);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    background: rgba(210, 193, 182, 0.1);
    color: white;
    border: 2px solid rgba(210, 193, 182, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(210, 193, 182, 0.9);
    color: #1B3C53;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(210, 193, 182, 0.2);
    border-color: rgba(240, 232, 224, 0.8);
}

.hero-graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    font-size: 4.5rem;
    opacity: 0.6;
    perspective: 1000px;
}

.hero-graphic i {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero-graphic i::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.hero-graphic i:hover {
    transform: rotateY(15deg) rotateX(5deg) translateZ(20px);
    box-shadow: 
        0 0 50px rgba(59, 130, 246, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-graphic i:hover::before {
    opacity: 1;
    top: -150%;
    left: -150%;
}

.hero-graphic i {
    animation: float3D 8s ease-in-out infinite;
}

.hero-graphic i:nth-child(2) {
    animation-delay: -2s;
    animation-direction: reverse;
}

.hero-graphic i:nth-child(3) {
    animation-delay: -4s;
}

.hero-graphic i:nth-child(4) {
    animation-delay: -6s;
    animation-direction: reverse;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg);
    }
    25% { 
        transform: translateY(-15px) rotateY(5deg);
    }
    50% { 
        transform: translateY(-25px) rotateY(0deg);
    }
    75% { 
        transform: translateY(-15px) rotateY(-5deg);
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(31, 38, 135, 0.2),
        0 0 40px rgba(59, 130, 246, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #1B3C53, #456882);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 12px rgba(27, 60, 83, 0.35));
    transition: all 0.4s ease;
}

.stat-item:hover i {
    filter: drop-shadow(0 0 24px rgba(69, 104, 130, 0.6));
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(31, 41, 55, 0.1);
}

.stat-item p {
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(31, 38, 135, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.8s ease;
}

.about-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(31, 38, 135, 0.15),
        0 0 50px rgba(59, 130, 246, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
    border-color: rgba(59, 130, 246, 0.2);
}

.about-item:hover::before {
    left: 100%;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B3C53 0%, #234C6A 50%, #456882 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 35px rgba(27, 60, 83, 0.35),
        0 12px 30px rgba(35, 76, 106, 0.25),
        inset 0 0 25px rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.about-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.about-item:hover .about-icon {
    transform: rotateY(15deg) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 0 50px rgba(69, 104, 130, 0.5),
        0 18px 40px rgba(27, 60, 83, 0.35),
        inset 0 0 30px rgba(255, 255, 255, 0.18);
}

.about-item:hover .about-icon::before {
    opacity: 1;
    top: -150%;
    left: -150%;
}

.about-icon i {
    font-size: 2.2rem;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.about-item:hover .about-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.about-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.about-item p {
    color: #666;
    line-height: 1.6;
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.activity-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 10px 40px rgba(31, 38, 135, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(139, 92, 246, 0.02));
    transition: all 0.4s ease;
    z-index: 1;
}

.activity-card:hover {
    transform: translateY(-15px) rotateY(2deg) rotateX(2deg);
    box-shadow: 
        0 30px 70px rgba(31, 38, 135, 0.15),
        0 0 50px rgba(59, 130, 246, 0.1);
}

.activity-card:hover::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.activity-icon {
    background: linear-gradient(135deg, #1B3C53 0%, #234C6A 50%, #456882 100%);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.activity-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.activity-card:hover .activity-icon::before {
    left: 100%;
}

.activity-icon i {
    font-size: 3.5rem;
    color: white;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.activity-card:hover .activity-icon i {
    transform: scale(1.1) rotateY(15deg);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

.activity-card h3 {
    padding: 30px 30px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.activity-card p {
    padding: 0 30px 20px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.activity-card ul {
    padding: 0 30px 30px;
    list-style: none;
    position: relative;
    z-index: 2;
}

.activity-card li {
    color: #4b5563;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.activity-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #234C6A, #456882);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(35, 76, 106, 0.3));
}

.activity-card:hover li {
    transform: translateX(5px);
    color: #374151;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 40%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.partner-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    transition: left 0.8s ease;
}

.partner-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(31, 38, 135, 0.15),
        0 0 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.partner-item:hover::before {
    left: 100%;
}

.partner-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

.partner-logo i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #234C6A, #456882);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(35, 76, 106, 0.3));
    transition: all 0.4s ease;
}

.partner-item:hover .partner-logo i {
    transform: scale(1.1) rotateY(15deg);
    filter: drop-shadow(0 0 20px rgba(35, 76, 106, 0.5));
}

.partner-logo span {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo span {
    color: #234C6A;
    transform: translateY(-2px);
}

/* Partner Categories Tabs */
.partner-categories {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partner-categories::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    /* height: 200%; */
    background: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: categoryBackground 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

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

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.category-tab {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 2px solid rgba(37, 99, 235, 0.1);
    color: #64748b;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(35, 76, 106, 0.3);
    box-shadow: 0 8px 25px rgba(35, 76, 106, 0.15);
    color: #234C6A;
}

.category-tab.active {
    background: linear-gradient(135deg, #234C6A 0%, #1B3C53 100%);
    color: white;
    border-color: #1B3C53;
    box-shadow: 0 8px 30px rgba(35, 76, 106, 0.4);
    transform: translateY(-3px);
}

.category-tab.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.category-tab i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.category-tab:hover i,
.category-tab.active i {
    transform: scale(1.1);
}

/* Partners Content */
.partners-content {
    position: relative;
    z-index: 10;
}

.category-content {
    margin-bottom: 60px;
    opacity: 1;
    visibility: visible;
    display: block;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.category-content.hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

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

.category-description {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-description h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #234C6A 0%, #456882 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.category-description h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #234C6A 0%, #456882 100%);
    border-radius: 2px;
}

.category-description p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partners Detailed Grid */
.partners-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-detailed-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.partner-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.03), transparent);
    transition: left 0.6s ease;
}

.partner-detailed-card:hover::before {
    left: 100%;
}

.partner-detailed-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 60px rgba(35, 76, 106, 0.12);
}

.partner-detailed-card.featured {
    border: 2px solid #D2C1B6;
    background: linear-gradient(135deg, rgba(210, 193, 182, 0.05) 0%, rgba(35, 76, 106, 0.03) 100%);
    position: relative;
}

.partner-detailed-card.featured::after {
    content: 'Premium Partner';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #D2C1B6 0%, #e5d9d0 100%);
    color: #1B3C53;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(226, 232, 240, 0.6);
}

.partner-detailed-card:hover .partner-logo {
    background: linear-gradient(135deg, #234C6A 0%, #1B3C53 100%);
    border-color: #1B3C53;
    transform: scale(1.05) rotate(3deg);
}

.partner-logo i {
    font-size: 24px;
    color: #64748b;
    transition: all 0.3s ease;
}

.partner-detailed-card:hover .partner-logo i {
    color: white;
    transform: scale(1.1);
}

.partner-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    transition: color 0.3s ease;
}

.partner-detailed-card:hover .partner-content h4 {
    color: #234C6A;
}

.partner-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Partner Specialties */
.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.partner-specialties span {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(3, 105, 161, 0.1);
    transition: all 0.3s ease;
}

.partner-specialties span:hover {
    background: linear-gradient(135deg, #234C6A 0%, #1B3C53 100%);
    color: white;
    transform: translateY(-1px);
}

/* Partner Actions */
.partner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #234C6A 0%, #1B3C53 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.partner-link:hover::before {
    left: 100%;
}

.partner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.partner-link i {
    transition: transform 0.3s ease;
}

.partner-link:hover i {
    transform: translateX(3px);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(35, 76, 106, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #234C6A, #1B3C53);
}

.news-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: white;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.read-more:hover::after {
    width: 100%;
}

/* Projects Section */
.projects {
    background: #f1f5f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 76, 106, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(35, 76, 106, 0.2);
}

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

.project-image {
    position: relative;
    background: linear-gradient(135deg, #234C6A, #1B3C53);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: white;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #234C6A;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.project-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: #234C6A;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Training Section */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.training-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(69, 104, 130, 0.2);
}

.training-card:hover::before {
    transform: scaleX(1);
}

.training-card.featured {
    background: linear-gradient(145deg, #f8f7f5 0%, #f0ebe6 100%);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 40px rgba(210, 193, 182, 0.15), var(--shadow-lg);
}

.training-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #234C6A, #1B3C53);
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.training-card:hover .training-image img {
    transform: scale(1.1);
}

.training-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    opacity: 0.5;
}

.training-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #a56300;
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(165, 99, 0, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(165, 99, 0, 0.5); }
    50% { box-shadow: 0 4px 25px rgba(165, 99, 0, 0.7); }
}

.training-header {
    padding: 25px 25px 15px;
    text-align: center;
}

.training-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.training-body {
    padding: 0 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.training-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.training-footer {
    padding: 20px 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.training-footer .btn {
    background: #c77700;
    border-color: #c77700;
}

.training-footer .btn:hover {
    background: #a56300;
    border-color: #a56300;
}

.training-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c77700;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.training-content {
    padding: 0 25px 30px;
}

.training-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.training-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.training-features i {
    color: #4CAF50;
    font-size: 14px;
    min-width: 16px;
}

.training-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.training-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

/* Career Section */
.career {
    background: #f1f5f9;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.job-type {
    background: #234C6A;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.job-details {
    margin-bottom: 25px;
}

.job-location,
.job-salary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #666;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.skill-tag {
    background: #f0f2f5;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d2d5f 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    animation: cosmicPulse 8s ease-in-out infinite;
}

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

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
    letter-spacing: -1px;
}

.newsletter-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.newsletter-form .form-group {
    display: flex;
    gap: 20px;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    outline: none;
    transition: all 0.4s ease;
    position: relative;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 30px rgba(245, 158, 11, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.newsletter-form .btn {
    white-space: nowrap;
    min-width: 150px;
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #234C6A, #1B3C53);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-text p {
    color: #666;
}

.contact-form {
    background: #f1f5f9;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #234C6A;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #D2C1B6;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #234C6A;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D2C1B6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D2C1B6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .newsletter-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .activities-grid,
    .projects-grid,
    .training-grid,
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    /* Partner Categories Responsive - Tablet */
    .partners-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .category-tabs {
        gap: 12px;
    }
    
    .category-tab {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .category-description h3 {
        font-size: 2rem;
    }
    
    /* About Page Responsive - Tablet */
    .story-grid {
        gap: 40px;
    }
    
    .visual-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: none;
        margin-bottom: 0;
        position: relative;
    }
    
    .nav-links li:not(:last-child):not(.dropdown) {
        /* border-bottom: 1px solid #eee; */
        padding: 15px 0;
    }
    .dropdown a{
        padding: 15px 0 !important;
    }
    /* Mobile dropdown styles */
    .dropdown {
        width: 100%;
    }
    
    .dropdown .nav-link {
        border-bottom: none;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        margin: 0;
       
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        padding: 0 30px;
        margin-top: 15px;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid #ddd;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        color: #666;
        font-size: 0.9rem;
        border-bottom: none;
        display: block;
        background: #f8f9fa;
        margin: 0;
        position: relative;
    }
    
    .dropdown-menu a:hover {
        background: #e9ecef;
        color: var(--primary-color);
    }
    
    .dropdown-menu a::before {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-graphic {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        font-size: 2.5rem;
    }
    
    .activities-grid,
    .news-grid,
    .projects-grid,
    .training-grid,
    .career-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Partner Categories Responsive - Mobile */
    .partners-detailed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-tabs {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .category-tab {
        padding: 15px 25px;
        font-size: 14px;
        width: 280px;
        justify-content: center;
    }
    
    .category-description h3 {
        font-size: 1.8rem;
    }
    
    .category-description p {
        font-size: 1rem;
    }
    
    .partner-detailed-card {
        padding: 25px;
    }
    
    .partner-specialties {
        gap: 6px;
    }
    
    .partner-specialties span {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-item,
    .contact-form {
        padding: 25px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    /* Partner Categories Responsive - Small Mobile */
    .category-tab {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .category-description h3 {
        font-size: 1.6rem;
    }
    
    .partner-detailed-card {
        padding: 20px;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
    }
    
    .partner-logo i {
        font-size: 20px;
    }
    
    .partner-content h4 {
        font-size: 1.2rem;
    }
    
    .partner-content p {
        font-size: 14px;
    }
    
    /* Partner Categories Responsive - Small Mobile */
    .category-tab {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .category-description h3 {
        font-size: 1.6rem;
    }
    
    .partner-detailed-card {
        padding: 20px;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
    }
    
    .partner-logo i {
        font-size: 20px;
    }
    
    .partner-content h4 {
        font-size: 1.2rem;
    }
    
    .partner-content p {
        font-size: 14px;
    }
}

/* Futuristic Animations and Effects */
.cosmic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.cosmic-particles::before,
.cosmic-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(59, 130, 246, 0.8),
        20px 30px 0 rgba(139, 92, 246, 0.6),
        40px 70px 0 rgba(245, 158, 11, 0.4),
        90px 40px 0 rgba(59, 130, 246, 0.5),
        120px 80px 0 rgba(139, 92, 246, 0.4),
        150px 20px 0 rgba(245, 158, 11, 0.6);
    animation: sparkle 3s linear infinite;
}

.cosmic-particles::after {
    animation-delay: 1.5s;
    animation-duration: 4s;
}

@keyframes sparkle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #1B3C53, #234C6A, #456882);
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(35, 76, 106, 0.5);
}

/* Section Entrance Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation for Interactive Elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-on-hover:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Magnetic Effect for Buttons */
.magnetic-effect {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-effect:hover {
    transform: translate3d(0, -3px, 0);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #234C6A;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* Detail Hero Section */
.detail-hero {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.95) 0%, rgba(35, 76, 106, 0.98) 100%);
    overflow: hidden;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.detail-hero-wrapper {
    position: relative;
    z-index: 1;
}

.detail-hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.detail-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.detail-hero-content .breadcrumb {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-hero-content .breadcrumb a,
.detail-hero-content .breadcrumb span {
    display: inline-flex;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.status-badge.upcoming {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.status-badge.ongoing {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.status-badge.completed {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.detail-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.detail-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 35px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.meta-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #234C6A, #1B3C53);
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.meta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.meta-label {
    font-size: 0.85rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-outline {
    background: white;
    color: #234C6A;
    border: 2px solid #234C6A;
}

.btn-outline:hover {
    background: #234C6A;
    color: white;
}

@media (max-width: 768px) {
    .detail-hero-image {
        height: 250px;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .detail-description {
        font-size: 1rem;
    }
    
    .detail-meta {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.95) 0%, rgba(35, 76, 106, 0.98) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(69, 104, 130, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(210, 193, 182, 0.1) 0%, transparent 50%);
    animation: heroFloat 15s ease-in-out infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(69, 104, 130, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(210, 193, 182, 0.08) 0%, transparent 60%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.about-story {
    position: relative;
    z-index: 2;
}

.story-section, .values-section, .team-section, .achievements-section {
    padding: 80px 0;
    position: relative;
}

.values-section {
    background: linear-gradient(135deg, #1B3C53 0%, #234C6A 100%);
    color: white;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.team-section {
    background: #f8fafc;
}

.achievements-section {
    background: linear-gradient(135deg, #234C6A 0%, #1B3C53 100%);
    color: white;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    z-index: 0;
    pointer-events: none;
}

.achievements-section .container {
    position: relative;
    z-index: 2;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .section-title {
    background: linear-gradient(135deg, #234C6A 0%, #456882 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
}

.story-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 30px rgba(35, 76, 106, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: #234C6A;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.story-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    animation: shine 3s infinite;
}

.visual-placeholder {
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #234C6A 0%, #456882 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.visual-placeholder i {
    font-size: 4rem;
    display: block;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.visual-stat {
    text-align: center;
    padding: 20px 10px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.visual-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #234C6A;
    margin-bottom: 5px;
}

.visual-stat p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
    transform: translateX(-100%);
}

.value-card:hover::before {
    transform: translateX(100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(210, 193, 182, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D2C1B6 0%, #e5d9d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2rem;
    color: #1B3C53;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #e5d9d0 0%, #f0e8e0 100%);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.values-section .section-title {
    color: white;
    font-weight: 700;
}

.values-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.team-photo {
    position: relative;
    margin-bottom: 25px;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #234C6A 0%, #456882 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .photo-placeholder::before {
    opacity: 1;
}

.photo-placeholder i {
    font-size: 3rem;
    color: #64748b;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .photo-placeholder i {
    color: white;
    transform: scale(1.1);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #234C6A 0%, #456882 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(35, 76, 106, 0.4);
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.team-position {
    color: #234C6A;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f0e8e0, #e5d9d0, #D2C1B6, #f0e8e0);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.achievement-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {
    0%, 100% { 
        background: linear-gradient(45deg, #f0e8e0, #e5d9d0, #D2C1B6, #f0e8e0);
    }
    50% { 
        background: linear-gradient(45deg, #e5d9d0, #f0e8e0, #e5d9d0, #D2C1B6);
    }
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0e8e0 0%, #D2C1B6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
}

.achievement-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #f0e8e0, #D2C1B6);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover .achievement-icon::before {
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.achievement-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.achievements-section .section-title {
    color: white;
    font-weight: 700;
}

.achievements-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(10deg);
}

.achievement-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    line-height: 1.3;
}

.achievement-year {
    display: inline-block;
    background: linear-gradient(135deg, #f0e8e0 0%, #D2C1B6 100%);
    color: #1B3C53;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.achievement-card p:not(.achievement-year) {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-stat {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.achievement-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.achievement-stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

/* Course/Training Page Styles */
.course-filter {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-group select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.featured-courses {
    padding: 80px 0;
}

.featured-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.course-featured {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.course-featured:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-badge.popular {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.course-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.course-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.course-rating {
    text-align: right;
}

.stars {
    color: #fbbf24;
    margin-bottom: 5px;
}

.rating-score {
    font-weight: 700;
    color: var(--primary-color);
}

.all-courses {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glass);
}

.course-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-placeholder {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.course-level-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.course-level-badge.beginner {
    background: #10b981;
}

.course-level-badge.intermediate {
    background: #f59e0b;
}

.course-level-badge.advanced {
    background: #ef4444;
}

.course-content {
    padding: 25px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-category {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-info {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.course-price {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.discount {
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.course-benefits {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Job/Career Page Styles */
.why-work-with-us {
    padding: 80px 0;
}

.benefits-grid .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glass);
}

.benefit-item .benefit-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.open-positions {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.job-filters {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.job-listings {
    display: grid;
    gap: 30px;
}

.job-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.job-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.job-type {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.skill-tag {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.application-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 30px 0 20px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-widget h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    background: var(--bg-secondary);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-answer {
    padding: 15px;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.map-section {
    padding: 80px 0;
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    color: white;
}

.map-placeholder .map-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.transport-info {
    margin-top: 40px;
}

.transport-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.transport-method {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.transport-method:hover {
    transform: translateY(-5px);
}

.transport-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.support-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.support-departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-dept {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.support-dept:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.dept-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.dept-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.quick-actions {
    padding: 80px 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-action {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.quick-action:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.action-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* News/Updates Page Styles */
.news-hero {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.featured-news {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-news-content {
    padding: 40px;
}

.news-category {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-news h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.featured-news-image {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.news-placeholder {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
}

.news-categories {
    padding: 40px 0;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.news-grid-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin: 15px 0;
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.load-more {
    text-align: center;
    margin-top: 60px;
}

.newsletter-signup {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.newsletter-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 25px;
    white-space: nowrap;
}

.privacy-notice {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.recent-updates {
    padding: 80px 0;
}

.updates-timeline {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-date {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
}

.timeline-date .date {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Partners Page Styles */
.partners-overview {
    padding: 80px 0;
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.tech-partners {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.partner-card.premium {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.partner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partner-logo {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.partner-type {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.partnership-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.partnership-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.partnership-details .fas {
    color: #10b981;
}

.partner-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.benefit-tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.local-partners {
    padding: 80px 0;
}

.local-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.local-partner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.4s ease;
}

.local-partner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glass);
}

.partner-logo-local {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.partner-logo-local span {
    font-size: 0.7rem;
    margin-top: 2px;
}

.partner-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.collaboration-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.collaboration-types span {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partnership-benefits {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.benefit-column {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.benefit-column h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-list .benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-list .benefit-item:hover {
    transform: translateX(10px);
}

.benefit-list .fas {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.partnership-types {
    padding: 80px 0;
}

.partnership-formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.format-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.format-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.format-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.format-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.format-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.format-card li:last-child {
    border-bottom: none;
}

.partnership-success {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.success-story {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-stats {
    text-align: center;
    margin-bottom: 25px;
}

.story-stats h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.story-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.become-partner {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Employee Testimonials */
.employee-testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 3rem;
    color: var(--primary-color);
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.author-rating {
    margin-top: 8px;
}

.author-rating .stars {
    color: #fbbf24;
}

.career-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.student-success {
    padding: 80px 0;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.success-stat {
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.success-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.success-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.companies-hiring {
    text-align: center;
    margin-top: 60px;
}

.companies-hiring h4 {
    color: var(--text-primary);
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.companies-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.company-logo {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.company-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.company-logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .story-grid,
    .featured-news,
    .newsletter-content,
    .benefits-comparison,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .cta-features,
    .job-meta,
    .news-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-filter,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .partners-grid,
    .courses-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Page Responsive - Mobile */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .visual-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Events Page Styles */
.page-hero {
    background: linear-gradient(135deg, #1B3C53 0%, #234C6A 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: 
        radial-gradient(circle at 30% 20%, rgba(69, 104, 130, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(210, 193, 182, 0.15) 0%, transparent 50%);
}

.page-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.events-overview {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.events-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.event-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.event-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-stat-card p {
    color: var(--text-secondary);
    font-weight: 500;
}

.event-categories {
    padding: 100px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-neon);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.category-features span {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.upcoming-events {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.event-card.featured {
    border: 2px solid var(--primary-color);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.event-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-placeholder {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.event-content {
    padding: 2rem;
}

.event-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.event-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-detail i {
    color: var(--primary-color);
    width: 16px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.past-events {
    padding: 100px 0;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.past-event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.past-event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.past-event-image {
    height: 150px;
    background: var(--gradient-secondary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.past-event-placeholder {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
}

.past-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
}

.past-event-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.past-event-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.past-event-stats {
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
}

.past-event-stats .stat {
    text-align: center;
}

.past-event-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.past-event-stats .stat span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.event-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
}

.event-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Mobile Responsive for Events */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .events-grid,
    .categories-grid,
    .past-events-grid {
        grid-template-columns: 1fr;
    }
    
    .events-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 200px;
    }
    
    .event-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-actions .btn {
        width: 100%;
    }
}

/* Certificate Verification Page Styles */
.certificate-verification {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.verification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.verification-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.verification-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.verification-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.verification-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.verification-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.verification-form .form-group {
    margin-bottom: 2rem;
}

.verification-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.help-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.btn-verify {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.verification-result {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

.verification-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.verification-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-header i {
    font-size: 2rem;
}

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.certificate-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row strong {
    font-weight: 600;
    opacity: 0.9;
}

.status-valid {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.verification-stamp {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
}

.verification-stamp i {
    font-size: 1.5rem;
}

.error-suggestions {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.error-suggestions h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.error-suggestions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
}

.verification-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-card h3 i {
    color: var(--primary-color);
}

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

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

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

.info-list i {
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.sample-certificates {
    padding: 100px 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-sample {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.certificate-sample:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.certificate-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-placeholder {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.certificate-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
}

.certificate-type {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certificate-details {
    padding: 2rem;
}

.certificate-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.certificate-details p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.certificate-features {
    list-style: none;
    padding: 0;
}

.certificate-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.certificate-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 600;
    flex-shrink: 0;
}

.verification-contact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-option h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-option p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.top-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Mobile Responsive for Certificate Verification */
@media (max-width: 768px) {
    .verification-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verification-card {
        padding: 2rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
    }
    
    .input-wrapper input {
        font-size: 0.9rem;
        padding: 0.9rem 2.5rem 0.9rem 0.9rem;
    }
}

/* Course Detail Page */
.course-hero {
    background: linear-gradient(135deg, #1b3c53 0%, #234c6a 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.course-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.course-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.course-category {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.course-badge {
    background: #a56300;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.course-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.course-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.course-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1rem;
}

.course-stats .stat-item i {
    color: #c77700;
    font-size: 1.2rem;
}

.course-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.course-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.course-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.course-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.course-main {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.course-content-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.course-section {
    margin-bottom: 50px;
}

.course-section:last-child {
    margin-bottom: 0;
}

.course-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1b3c53;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c77700;
    display: inline-block;
}

.course-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    color: #28a745;
    font-size: 1.5rem;
}

.feature-item span {
    color: #333;
    font-weight: 500;
}

.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curriculum-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #c77700;
    transition: all 0.3s ease;
}

.curriculum-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.curriculum-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #c77700;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.curriculum-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-badge {
    background: linear-gradient(135deg, #1b3c53 0%, #234c6a 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 60, 83, 0.3);
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.instructor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1b3c53 0%, #234c6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.instructor-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.instructor-details p {
    color: #666;
    margin: 0;
}

.course-sidebar .sticky-card {
    position: sticky;
    top: 100px;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.course-card-icon {
    text-align: center;
    margin-bottom: 30px;
}

.course-card-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.course-price-section {
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #c77700;
}

.course-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b3c53;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.info-item span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.btn-block:last-child {
    margin-bottom: 0;
}

.course-card .btn-primary {
    background: #a56300;
    border-color: #a56300;
}

.course-card .btn-primary:hover {
    background: #8b5300;
    border-color: #8b5300;
}

.course-card .btn-outline {
    border-color: #a56300;
    color: #a56300;
}

.course-card .btn-outline:hover {
    background: #a56300;
    border-color: #a56300;
    color: white;
}

.related-courses {
    padding: 80px 0;
    background: white;
}

/* Responsive */
@media (max-width: 992px) {
    .course-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-title {
        font-size: 2.5rem;
    }
    
    .course-layout {
        grid-template-columns: 1fr;
    }
    
    .course-sidebar .sticky-card {
        position: static;
    }
    
    .course-main {
        padding: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .course-title {
        font-size: 2rem;
    }
    
    .course-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .course-card {
        padding: 25px;
    }
}