/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.cookie-btn:hover {
    background: #2980b9;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--secondary-color);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section - Modern 2025 Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #0a0e27;
    cursor: none;
}

/* Background with gradient and particles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2c3e50 50%, #3498db 75%, #9b59b6 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.9;
}

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(46, 204, 113, 0.2) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: shapeMove 25s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #3498db;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #9b59b6;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #2ecc71;
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes shapeMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 50px) scale(1.2); }
    66% { transform: translate(-30px, 30px) scale(0.8); }
}

/* Hero container */
.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero layout - split screen */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    align-items: center;
    position: relative;
    min-height: 80vh;
}

/* Hero content - left side */
.hero-left {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    text-align: left;
    position: relative;
}

/* Hero visual - right side */
.hero-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(155, 89, 182, 0.15) 50%, rgba(46, 204, 113, 0.15) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.2) 0%, 
        rgba(155, 89, 182, 0.2) 30%,
        rgba(46, 204, 113, 0.2) 60%,
        rgba(52, 152, 219, 0.2) 100%);
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
    opacity: 0.8;
}

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

.visual-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.visual-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: visualShapeFloat 15s ease-in-out infinite;
}

.vs-1 {
    width: 200px;
    height: 200px;
    background: #3498db;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.vs-2 {
    width: 150px;
    height: 150px;
    background: #9b59b6;
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.vs-3 {
    width: 180px;
    height: 180px;
    background: #2ecc71;
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

.vs-4 {
    width: 120px;
    height: 120px;
    background: #e74c3c;
    bottom: 10%;
    left: 20%;
    animation-delay: 9s;
}

@keyframes visualShapeFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    25% { 
        transform: translate(30px, -30px) scale(1.1);
    }
    50% { 
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% { 
        transform: translate(20px, 30px) scale(1.05);
    }
}

.visual-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
}

.floating-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: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: cardFloat 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.card-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 2s;
}

.card-3 {
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Large typography */
.hero-title-large {
    font-size: 96px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-align: left;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.title-line-1 {
    animation-delay: 0.2s;
    color: white;
}

.title-line-2 {
    animation-delay: 0.4s;
    color: rgba(255, 255, 255, 0.9);
}

.title-line-3 {
    animation-delay: 0.6s;
}

.gradient-text {
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 50%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 50%, #2ecc71 100%);
    border-radius: 2px;
    filter: blur(8px);
    opacity: 0.6;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 100%;
    text-align: left;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

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

/* Stats with glassmorphism */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-box {
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons with magnetic and glow effects */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-magnetic {
    position: relative;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.5), 0 0 60px rgba(52, 152, 219, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(52, 152, 219, 0.8), 0 0 80px rgba(52, 152, 219, 0.5);
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scrollMove 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes scrollMove {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Cursor follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(52, 152, 219, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    display: none;
}

.hero:hover .cursor-follower {
    display: block;
}

/* Decorative Elements */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    max-width: 200px;
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.3), transparent);
    animation: dividerFlow 3s ease infinite;
}

@keyframes dividerFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.divider-shape {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
    animation: dividerPulse 2s ease infinite;
}

.divider-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: dividerRipple 2s ease infinite;
}

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

@keyframes dividerRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Decorative Elements Container */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Decorative Circles */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.2);
    animation: decorFloat 20s ease-in-out infinite;
}

.decor-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decor-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 8%;
    animation-delay: 5s;
    border-color: rgba(155, 89, 182, 0.2);
}

@keyframes decorFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Decorative Dots */
.decor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
    animation: dotPulse 3s ease infinite;
}

.decor-3 {
    top: 30%;
    right: 10%;
    animation-delay: 1s;
}

.decor-4 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
    background: #9b59b6;
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Decorative Waves */
.decor-wave {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    animation: waveMove 15s ease-in-out infinite;
}

.decor-wave-1 {
    top: 20%;
    left: -50px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    border-radius: 50%;
}

.decor-wave-2 {
    bottom: 20%;
    right: -50px;
    background: radial-gradient(circle, #9b59b6 0%, transparent 70%);
    border-radius: 50%;
    animation-delay: 7s;
}

@keyframes waveMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
    }
}

/* Decorative Triangles */
.decor-triangle {
    position: absolute;
    width: 0;
    height: 0;
    animation: triangleRotate 25s linear infinite;
}

.decor-triangle-1 {
    top: 15%;
    right: 10%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(52, 152, 219, 0.15);
    animation-delay: 0s;
}

.decor-triangle-2 {
    bottom: 20%;
    left: 8%;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid rgba(155, 89, 182, 0.15);
    animation-delay: 10s;
}

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

/* Decorative Stars */
.decor-star {
    position: absolute;
    color: var(--secondary-color);
    font-size: 24px;
    opacity: 0.3;
    animation: starTwinkle 4s ease-in-out infinite;
}

.decor-star-1 {
    top: 25%;
    left: 12%;
    animation-delay: 0s;
}

.decor-star-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
    color: #9b59b6;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.decor-star::before {
    content: '✦';
    display: block;
}

/* Decorative Hexagons */
.decor-hexagon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.1);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation: hexagonFloat 18s ease-in-out infinite;
}

.decor-hexagon-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.decor-hexagon-2 {
    bottom: 25%;
    right: 12%;
    animation-delay: 9s;
    background: rgba(155, 89, 182, 0.1);
}

@keyframes hexagonFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(40px, -40px) rotate(180deg);
    }
}

/* Decorative Gradients */
.decor-gradient {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: gradientMove 20s ease-in-out infinite;
}

.decor-gradient-1 {
    top: 10%;
    left: -100px;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    animation-delay: 0s;
}

.decor-gradient-2 {
    bottom: 10%;
    right: -100px;
    background: linear-gradient(135deg, #2ecc71, #3498db);
    animation-delay: 10s;
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(100px, -100px) scale(1.3);
    }
}

/* Section Title Decoration */
.section-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
    position: relative;
    animation: accentGlow 3s ease infinite;
}

.title-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 2px;
    filter: blur(8px);
    opacity: 0.5;
    animation: accentPulse 2s ease infinite;
}

@keyframes accentGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes accentPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
    }
}

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

.section-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Courses Section */
.courses-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.courses-section .container {
    position: relative;
    z-index: 1;
}

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

.course-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature {
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

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

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.review-card {
    display: none;
    background: var(--bg-light);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.review-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary-color);
}

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

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

.review-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.review-author strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.review-author span {
    color: var(--text-light);
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Process Section */
.process-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: var(--shadow-lg);
}

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

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Contact Form Button */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.policy-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content .last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        padding: 0 20px;
        height: auto;
        min-height: 100vh;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-right {
        padding-left: 0;
        height: 400px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-title-large {
        font-size: 64px;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Hide decorative elements on tablet */
    .decorative-elements {
        opacity: 0.3;
    }

    .section-divider {
        padding: 30px 0;
    }

    .divider-line {
        max-width: 100px;
    }

    .title-accent {
        width: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        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: 998;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 100vh;
        padding: 80px 0 60px;
        cursor: default;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-right {
        padding-left: 0;
        height: 350px;
    }

    .hero-visual {
        height: 350px;
    }

    .floating-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 36px;
    }

    .card-text {
        font-size: 14px;
    }

    .hero-title-large {
        font-size: 48px;
        line-height: 1.1;
        letter-spacing: -1px;
        text-align: center;
    }

    .title-line {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .hero-stats {
        gap: 15px;
        justify-content: center;
    }

    .stat-box {
        min-width: 100px;
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .btn-magnetic {
        width: 100%;
        text-align: center;
    }


    .cursor-follower {
        display: none !important;
    }

    .section-title {
        font-size: 28px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Hide decorative elements on mobile */
    .decorative-elements {
        display: none;
    }

    .section-divider {
        padding: 20px 0;
    }

    .divider-line {
        max-width: 60px;
    }

    .section-title-decoration {
        flex-direction: column;
        gap: 10px;
    }

    .title-accent {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-split {
        gap: 20px;
        padding: 30px 0;
    }

    .hero-right {
        height: 300px;
    }

    .hero-visual {
        height: 300px;
    }

    .visual-content {
        gap: 15px;
        padding: 20px;
    }

    .floating-card {
        padding: 15px;
    }

    .card-icon {
        font-size: 28px;
    }

    .card-text {
        font-size: 12px;
    }

    .hero-title-large {
        font-size: 36px;
        text-align: center;
    }

    .title-line {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .stat-box {
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }


    .contact-form {
        padding: 25px 20px;
    }

    .policy-content h1 {
        font-size: 28px;
    }
}

/* ========== INSTRUCTORS PAGE - MASONRY LAYOUT ========== */
.instructors-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.instructors-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.instructors-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.instructors-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

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

.instructors-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    grid-auto-rows: auto;
}

.instructor-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.instructor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.instructor-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.instructor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.social-link {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.instructor-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.instructor-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.instructor-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.instructor-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.instructor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.instructors-stats {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ========== PROGRAMS PAGE - TABS & ACCORDION ========== */
.programs-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.programs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.programs-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

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

.programs-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 3px solid var(--border-color);
    padding-bottom: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.1);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInTab 0.4s ease;
}

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

.program-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-header h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0;
}

.accordion-icon {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 2000px;
}

.program-details {
    padding: 0 30px 30px;
}

.program-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.info-item {
    font-size: 15px;
    color: var(--text-color);
}

.info-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.program-description {
    margin-bottom: 25px;
}

.program-description h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.program-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.program-description ul {
    list-style: none;
    padding-left: 0;
}

.program-description li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.program-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.program-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* ========== BLOG PAGE - BLOG LAYOUT ========== */
.blog-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

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

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
}

.post-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 400px;
}

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

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-date::before {
    content: '📅';
    margin-right: 5px;
}

.post-author::before {
    content: '✍️';
    margin-right: 5px;
}

.post-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-post.featured .post-title {
    font-size: 36px;
}

.post-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--secondary-color);
}

.post-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    transform: translateX(5px);
}

.blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.pagination-btn {
    padding: 12px 25px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.pagination-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.search-btn {
    padding: 12px 25px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2980b9;
}

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

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--secondary-color);
}

.category-list span {
    color: var(--text-light);
    font-size: 14px;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.recent-posts a:hover {
    transform: translateX(5px);
}

.recent-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-content h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-date {
    font-size: 12px;
    color: var(--text-light);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 15px;
    background: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--secondary-color);
    color: white;
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    padding: 12px 25px;
    background: white;
    color: var(--secondary-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive for new pages */
@media (max-width: 968px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .instructors-masonry {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .instructors-title,
    .programs-title,
    .blog-title {
        font-size: 36px;
    }

    .instructors-masonry {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-info {
        grid-template-columns: 1fr;
    }

    .blog-post.featured .post-image {
        height: 250px;
    }

    .post-title {
        font-size: 22px;
    }

    .blog-post.featured .post-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .instructors-title,
    .programs-title,
    .blog-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .blog-pagination {
        flex-direction: column;
        gap: 15px;
    }
}

