/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-red: #E63946;
    --primary-green: #10B981;
    --primary-purple: #6366F1;
    --primary-blue: #02569B;
    --dark-red: #8E0320;
    --gold: #FFD700;
    
    /* Light Mode Colors */
    --text-dark: #1A1A1A;
    --text-gray: #4B5563;
    --text-light: #6B7280;
    
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-secondary: #F3F4F6;
    --border-gray: #E5E7EB;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    
    --particle-color-1: rgba(99, 102, 241, 0.4);
    --particle-color-2: rgba(16, 185, 129, 0.4);
    --particle-color-3: rgba(230, 57, 70, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --text-dark: #F9FAFB;
    --text-gray: #D1D5DB;
    --text-light: #9CA3AF;
    
    --bg-light: #0F1419;
    --bg-white: #1A1F2E;
    --bg-secondary: #242B3D;
    --border-gray: #374151;
    
    --glass-bg: rgba(26, 31, 46, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.5);
    
    --particle-color-1: rgba(99, 102, 241, 0.6);
    --particle-color-2: rgba(16, 185, 129, 0.6);
    --particle-color-3: rgba(230, 57, 70, 0.6);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Dark Mode - Enhanced Glass Rings */
[data-theme="dark"] .glass-ring {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.03),
        0 0 60px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .ring-1 {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 
        0 8px 32px 0 rgba(99, 102, 241, 0.3),
        inset 0 0 40px rgba(99, 102, 241, 0.12),
        0 0 80px rgba(99, 102, 241, 0.25);
}

[data-theme="dark"] .ring-2 {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 
        0 8px 32px 0 rgba(16, 185, 129, 0.3),
        inset 0 0 40px rgba(16, 185, 129, 0.12),
        0 0 80px rgba(16, 185, 129, 0.25);
}

[data-theme="dark"] .ring-3 {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 
        0 8px 32px 0 rgba(139, 92, 246, 0.3),
        inset 0 0 40px rgba(139, 92, 246, 0.12),
        0 0 80px rgba(139, 92, 246, 0.25);
}

[data-theme="dark"] .ring-4 {
    border-color: rgba(59, 130, 246, 0.22);
    box-shadow: 
        0 8px 32px 0 rgba(59, 130, 246, 0.3),
        inset 0 0 40px rgba(59, 130, 246, 0.12),
        0 0 80px rgba(59, 130, 246, 0.25);
}

[data-theme="dark"] .ring-5 {
    border-color: rgba(236, 72, 153, 0.25);
    box-shadow: 
        0 8px 32px 0 rgba(236, 72, 153, 0.3),
        inset 0 0 40px rgba(236, 72, 153, 0.12),
        0 0 80px rgba(236, 72, 153, 0.25);
}

/* Dark Mode - Liquid Blobs */
[data-theme="dark"] .liquid-blob {
    opacity: 0.25;
    filter: blur(50px);
}

[data-theme="dark"] .blob-1 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
}

[data-theme="dark"] .blob-2 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(59, 130, 246, 0.4));
}

[data-theme="dark"] .blob-3 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(99, 102, 241, 0.35));
}

[data-theme="dark"] .blob-4 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.38), rgba(16, 185, 129, 0.38));
}

/* Dark Mode - Gradient Orbs */
[data-theme="dark"] .gradient-orb {
    opacity: 0.5;
    filter: blur(100px);
}

/* Dark Mode - Hero Elements */
[data-theme="dark"] .hero-badge {
    background: rgba(26, 31, 46, 0.3);
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 
        0 8px 32px rgba(230, 57, 70, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .hero-title {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.95) 0%, rgba(99, 102, 241, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 30px rgba(230, 57, 70, 0.3));
    opacity: 0.95;
}

[data-theme="dark"] .section-title {
    opacity: 0.9;
}

[data-theme="dark"] .about-text .section-title {
    opacity: 0.85;
    filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.2));
}

[data-theme="dark"] .highlight {
    background: linear-gradient(120deg, rgba(230, 57, 70, 1) 0%, rgba(99, 102, 241, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark Mode - Knowledge Sharing Cards */
[data-theme="dark"] .knowledge-card {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.15) 0%, rgba(17, 24, 39, 0.12) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.5),
        0 15px 30px -15px rgba(99, 102, 241, 0.2),
        inset 0 2px 0 rgba(99, 102, 241, 0.3),
        inset 0 -1px 0 rgba(99, 102, 241, 0.15);
}

[data-theme="dark"] .knowledge-card:hover {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.22) 0%, rgba(17, 24, 39, 0.18) 100%);
    box-shadow: 
        0 40px 100px -25px rgba(99, 102, 241, 0.5),
        0 25px 50px -20px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(99, 102, 241, 0.5),
        inset 0 -1px 0 rgba(99, 102, 241, 0.25),
        0 0 100px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

[data-theme="dark"] .knowledge-caption,
[data-theme="dark"] .demo-info {
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.12) 0%, rgba(17, 24, 39, 0.08) 100%);
}

[data-theme="dark"] .event-badge {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 15px 40px -10px rgba(0, 0, 0, 0.6),
        0 8px 16px -8px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .speaking-photo-item {
    background: linear-gradient(145deg, rgba(26, 31, 46, 0.15) 0%, rgba(17, 24, 39, 0.12) 100%);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .speaking-photo-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 20px 60px -15px rgba(99, 102, 241, 0.4),
        0 10px 25px -8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(99, 102, 241, 0.6);
}

/* ===========================
   AOS Animation Override - Force Visibility
   =========================== */
[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    opacity: 0;
    animation: bodyFadeIn 0.5s ease-out forwards;
    position: relative;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Animated Background Container */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--particle-color-1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--particle-color-2) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--particle-color-3) 0%, transparent 70%);
    bottom: -200px;
    left: 20%;
    animation-delay: -14s;
}

.orb-4 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -21s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

.particle-1 {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    top: 20%;
    left: 10%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle-2 {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    top: 60%;
    left: 80%;
    animation: floatParticle 20s infinite ease-in-out;
    animation-delay: -5s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    top: 40%;
    left: 50%;
    animation: floatParticle 18s infinite ease-in-out;
    animation-delay: -10s;
}

.particle-4 {
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    top: 80%;
    left: 30%;
    animation: floatParticle 22s infinite ease-in-out;
    animation-delay: -15s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    background: var(--primary-purple);
    top: 10%;
    left: 70%;
    animation: floatParticle 17s infinite ease-in-out;
    animation-delay: -8s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    background: var(--primary-blue);
    top: 35%;
    left: 15%;
    animation: floatParticle 19s infinite ease-in-out;
    animation-delay: -12s;
}

.particle-7 {
    width: 11px;
    height: 11px;
    background: var(--primary-green);
    top: 55%;
    right: 25%;
    animation: floatParticle 21s infinite ease-in-out;
    animation-delay: -18s;
}

.particle-8 {
    width: 9px;
    height: 9px;
    background: var(--primary-red);
    bottom: 30%;
    right: 15%;
    animation: floatParticle 16s infinite ease-in-out;
    animation-delay: -6s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(100px, -150px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-80px, 100px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(150px, 50px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    border: 2px solid var(--primary-purple);
    opacity: 0.2;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 5%;
    border-radius: 20px;
    animation: rotateShape 25s infinite linear;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    border-radius: 50%;
    border-color: var(--primary-green);
    animation: rotateShape 20s infinite linear reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 60%;
    transform: rotate(45deg);
    border-color: var(--primary-red);
    animation: rotateShape 30s infinite linear;
}

.shape-4 {
    width: 90px;
    height: 90px;
    top: 45%;
    left: 35%;
    border-radius: 30%;
    border-color: var(--primary-blue);
    opacity: 0.15;
    animation: rotateShape 28s infinite linear;
}

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

/* Mesh Gradient Background */
.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 20% 30%, var(--particle-color-1) 0px, transparent 50%),
        radial-gradient(at 80% 70%, var(--particle-color-2) 0px, transparent 50%),
        radial-gradient(at 50% 50%, var(--particle-color-3) 0px, transparent 50%);
    opacity: 0.3;
    filter: blur(60px);
    animation: meshMove 15s infinite ease-in-out alternate;
}

@keyframes meshMove {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Glassy Circular Rings */
.glass-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    animation: ringFloat 25s infinite ease-in-out, ringFadeIn 2s ease-out forwards;
}

.ring-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 15%;
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 
        0 8px 32px 0 rgba(99, 102, 241, 0.15),
        inset 0 0 30px rgba(99, 102, 241, 0.08),
        0 0 60px rgba(99, 102, 241, 0.15);
    animation-delay: 0s, 0.5s;
}

.ring-2 {
    width: 550px;
    height: 550px;
    top: 50%;
    right: 10%;
    border-width: 4px;
    border-color: rgba(16, 185, 129, 0.18);
    box-shadow: 
        0 8px 32px 0 rgba(16, 185, 129, 0.15),
        inset 0 0 30px rgba(16, 185, 129, 0.08),
        0 0 60px rgba(16, 185, 129, 0.15);
    animation-delay: -8s, 1s;
}

.ring-3 {
    width: 320px;
    height: 320px;
    bottom: 15%;
    left: 50%;
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 8px 32px 0 rgba(139, 92, 246, 0.15),
        inset 0 0 30px rgba(139, 92, 246, 0.08),
        0 0 60px rgba(139, 92, 246, 0.15);
    animation-delay: -16s, 1.5s;
}

.ring-4 {
    width: 480px;
    height: 480px;
    top: 25%;
    right: 25%;
    border-width: 2px;
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 
        0 8px 32px 0 rgba(59, 130, 246, 0.15),
        inset 0 0 30px rgba(59, 130, 246, 0.08),
        0 0 60px rgba(59, 130, 246, 0.15);
    animation-delay: -12s, 2s;
}

.ring-5 {
    width: 380px;
    height: 380px;
    bottom: 25%;
    left: 10%;
    border-color: rgba(236, 72, 153, 0.18);
    box-shadow: 
        0 8px 32px 0 rgba(236, 72, 153, 0.15),
        inset 0 0 30px rgba(236, 72, 153, 0.08),
        0 0 60px rgba(236, 72, 153, 0.15);
    animation-delay: -20s, 2.5s;
}

@keyframes ringFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -80px) scale(1.15) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-30px, 60px) scale(0.9) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(80px, 40px) scale(1.05) rotate(270deg);
        opacity: 0.5;
    }
}

@keyframes ringFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Liquid Blobs */
.liquid-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, var(--particle-color-1), var(--particle-color-2));
    opacity: 0.15;
    filter: blur(40px);
    animation: blobMorph 20s infinite ease-in-out, blobMove 25s infinite ease-in-out;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    animation-delay: 0s, 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(59, 130, 246, 0.3));
    animation-delay: -7s, -5s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    top: 40%;
    left: 30%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(99, 102, 241, 0.25));
    animation-delay: -14s, -10s;
}

.blob-4 {
    width: 550px;
    height: 550px;
    bottom: 20%;
    right: 20%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28), rgba(16, 185, 129, 0.28));
    animation-delay: -21s, -15s;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
    }
    75% {
        border-radius: 70% 30% 60% 40% / 30% 70% 50% 50%;
    }
}

@keyframes blobMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(120px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-80px, 120px) scale(0.9);
    }
}

@keyframes bodyFadeIn {
    to {
        opacity: 1;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   Text Animation Classes
   =========================== */
.typewriter-text {
    display: inline-block;
    margin: 0 auto;
}

.text-slide-in {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

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

.text-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

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

.text-pop-in {
    opacity: 0;
    animation: popIn 0.6s cubic-bezier(0.26, 0.53, 0.74, 1.48) forwards;
    animation-delay: 0.2s;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.text-reveal {
    opacity: 0;
    animation: textReveal 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes textReveal {
    from {
        opacity: 0;
        letter-spacing: 10px;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        letter-spacing: normal;
        filter: blur(0);
    }
}

.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

/* ===========================
   Container & Utilities
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    opacity: 0.85;
}

.title-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-purple));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.title-underline.red {
    background: var(--primary-red);
}

.title-underline.blue {
    background: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease, background-color 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 80px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 20s infinite ease-in-out;
    filter: blur(80px);
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbFloat 15s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

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

@keyframes float {
    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);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-red);
    box-shadow: 
        0 8px 32px rgba(230, 57, 70, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 7rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.85) 0%, rgba(99, 102, 241, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 12px;
    margin-bottom: 2rem;
    text-align: center;
    filter: drop-shadow(0 10px 30px rgba(230, 57, 70, 0.15));
    opacity: 0.9;
}

.hero-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin: 2rem 0 1rem;
}

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

.hero-image-wrapper {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto 2rem;
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: glowPulse 3s infinite ease-in-out;
}

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

.hero-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotateCircle 20s linear infinite;
}

.hero-circle.circle-1 {
    width: 580px;
    height: 580px;
    border-color: rgba(230, 57, 70, 0.008);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

.hero-circle.circle-2 {
    width: 520px;
    height: 520px;
    border-color: rgba(99, 102, 241, 0.008);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
    animation-direction: reverse;
}

.hero-circle.circle-3 {
    width: 460px;
    height: 460px;
    border-color: rgba(16, 185, 129, 0.008);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 2;
    animation: floatBadge 3s infinite ease-in-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-badge:hover {
    transform: translateY(-8px) scale(1.08);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.35);
}

.floating-badge i {
    font-size: 1.1rem;
}

.badge-1 {
    top: 50px;
    left: -80px;
    animation-delay: 0s;
}

.badge-1 i { color: var(--primary-red); }

.badge-2 {
    top: 120px;
    right: -90px;
    animation-delay: 0.5s;
}

.badge-2 i { color: var(--primary-green); }

.badge-3 {
    bottom: 120px;
    left: -70px;
    animation-delay: 1s;
}

.badge-3 i { color: var(--primary-purple); }

.badge-4 {
    bottom: 50px;
    right: -80px;
    animation-delay: 1.5s;
}

.badge-4 i { color: #FF6B6B; }

.badge-5 {
    top: 200px;
    left: -100px;
    animation-delay: 2s;
}

.badge-6 {
    top: 300px;
    right: -100px;
    animation-delay: 2.5s;
}

.badge-7 {
    bottom: 200px;
    left: -90px;
    animation-delay: 3s;
}

.language-badge {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-char {
    font-size: 1.8rem;
    font-weight: 700;
}

.language-char.korean {
    color: var(--primary-red);
}

.language-char.english {
    color: var(--primary-purple);
}

.language-char.khmer {
    color: var(--primary-green);
    font-size: 2rem;
}

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

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 8px rgba(255, 255, 255, 0.95),
                0 0 0 10px rgba(230, 57, 70, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2),
                0 0 0 8px rgba(255, 255, 255, 1),
                0 0 0 12px rgba(230, 57, 70, 0.3);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.profile-photo:hover img {
    transform: scale(1.05);
}

.photo-frame {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(230, 57, 70, 0.3) 0%, 
        rgba(99, 102, 241, 0.3) 50%, 
        rgba(16, 185, 129, 0.3) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(230, 57, 70, 0.2);
    animation: rotateBorder 8s linear infinite, liquidEffect 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

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

@keyframes liquidEffect {
    0%, 100% {
        border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%;
        filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.4));
    }
    25% {
        border-radius: 48% 52% 50% 48% / 52% 48% 52% 50%;
        filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.4));
    }
    50% {
        border-radius: 52% 50% 48% 52% / 48% 50% 52% 48%;
        filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.4));
    }
    75% {
        border-radius: 50% 48% 52% 50% / 52% 48% 50% 52%;
        filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.4));
    }
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 24px;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(230, 57, 70, 0.03) 15px,
        rgba(230, 57, 70, 0.03) 30px
    );
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translate(-25%, -25%); }
    100% { transform: translate(0, 0); }
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    opacity: 0.4;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.2));
}

.image-placeholder:hover i {
    opacity: 0.6;
    transform: scale(1.15) rotate(5deg);
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.image-placeholder span {
    font-size: 0.95rem;
    color: white;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #dc2626 100%);
    border-radius: 25px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.image-placeholder:hover span {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
}

.about-placeholder i {
    font-size: 5rem;
}

.about-placeholder p {
    font-size: 1.3rem;
}

.hero-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin: 2rem 0 1rem;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.hero-sub {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 160px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    border-radius: 15px;
    color: white;
    font-size: 1.5rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: visible;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    overflow: visible;
}

.about-image,
.aboutDr-image {
    position: relative;
    z-index: 2;
    overflow: visible;
}

.about-circles {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.about-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.about-circle.circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, rgba(230, 57, 70, 0.05) 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-circle.circle-2 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, rgba(230, 57, 70, 0.03) 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-circle.circle-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, rgba(230, 57, 70, 0.02) 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-wrapper {
    position: relative;
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 600px;
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-wrapper:hover {
    transform: scale(1.15);
    box-shadow: 0 30px 80px rgba(230, 57, 70, 0.3);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.image-overlay {
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(230, 57, 70, 0.3));
}

.about-text .section-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    opacity: 0.8;
    filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.1));
}

.highlight {
    background: linear-gradient(120deg, rgba(230, 57, 70, 0.9) 0%, rgba(99, 102, 241, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.95;
}

.description-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-red);
}

.description-box p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.description-box p:last-child {
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.info-item i {
    color: var(--primary-red);
    font-size: 1.3rem;
    width: 30px;
}

/* ===========================
   Employee Card Design Section
   =========================== */
.employee-cards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.employee-cards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-5%, 5%) rotate(1deg); }
    66% { transform: translate(5%, -5%) rotate(-1deg); }
}

.employee-cards-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.employee-cards-section .container {
    padding: 0 3rem;
}

.id-cards-scroll-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 4rem 1rem 4rem;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    perspective: 2000px;
    perspective-origin: center center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(230, 57, 70, 0.3);
    color: var(--primary-red);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);\n    position: relative;\n    overflow: hidden;\n}\n\n.carousel-btn::before {\n    content: '';\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    width: 0;\n    height: 0;\n    border-radius: 50%;\n    background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);\n    transform: translate(-50%, -50%);\n    transition: width 0.6s ease, height 0.6s ease;\n}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c73945 100%);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.15) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(230, 57, 70, 0.5),
        0 6px 15px rgba(230, 57, 70, 0.3),
        0 0 30px rgba(230, 57, 70, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);\n}\n\n.carousel-btn:hover::before {\n    width: 100%;\n    height: 100%;\n}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05) rotate(0deg);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
    padding: 0;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(230, 57, 70, 0.15) 100%);
    border: 2px solid rgba(230, 57, 70, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.4) 0%, transparent 70%);
    transition: all 0.4s ease;
}

.carousel-indicator:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.6) 0%, rgba(230, 57, 70, 0.5) 100%);
    transform: scale(1.25);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.carousel-indicator:hover::before {
    width: 200%;
    height: 200%;
}

.carousel-indicator.active {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c73945 100%);
    border-color: var(--primary-red);
    width: 36px;
    border-radius: 8px;
    box-shadow: 
        0 4px 20px rgba(230, 57, 70, 0.5),
        0 2px 8px rgba(230, 57, 70, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(230, 57, 70, 0.7); }
}

/* Transition Style Indicator */
.transition-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.transition-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    opacity: 0.8;
}

.transition-name {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: capitalize;
    animation: transitionPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* View All Button Styles */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.view-all-btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(59, 130, 246, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5),
                0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 30px rgba(99, 102, 241, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.view-all-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.15);
}

.view-all-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}

.view-all-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-text {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .id-cards-scroll-container {
        padding: 2rem 1rem 1rem 1rem;
    }
    
    .employee-cards-section .container {
        padding: 0 1rem;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicator.active {
        width: 24px;
    }
    
    .transition-indicator {
        padding: 0.6rem 1.2rem;
        margin-top: 1rem;
    }
    
    .transition-label {
        font-size: 0.8rem;
    }
    
    .transition-name {
        font-size: 0.9rem;
    }
    
    .view-all-container {
        margin-top: 2rem;
    }
    
    .view-all-btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
    
    .view-all-btn i {
        font-size: 1rem;
    }
}

.id-cards-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.5rem;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    width: max-content;
    padding-bottom: 1rem;
    transform-style: preserve-3d;
}

.id-card-item {
    flex: 0 0 280px;
    width: 280px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    opacity: 1;
    animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(0deg); }
}

.id-card-item:nth-child(odd) {
    animation-delay: 0.5s;
}

.id-card-item:nth-child(even) {
    animation-delay: 1s;
}

@media (max-width: 1199px) {
    .id-card-item {
        flex: 0 0 260px;
        width: 260px;
    }
}

@media (max-width: 768px) {
    .id-card-item {
        flex: 0 0 240px;
        width: 240px;
    }
    
    .id-cards-grid {
        gap: 1.5rem;
    }
}

.id-card-item:hover {
    transform: translateY(-20px) scale(1.05) rotateY(5deg) !important;
    z-index: 100;
    animation: none;
}

.id-card-item:hover .id-card-preview {
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 50px rgba(99, 102, 241, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 1);
}

/* Carousel Transition Styles */

/* Slide Transition */
.id-cards-grid.slide {
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-enter-slide {
    animation: slideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideIn {
    0% { transform: translateX(30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Zoom-Fade Transition */
.id-cards-grid.zoom-fade {
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-enter-zoom {
    animation: zoomFadeIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoomFadeIn {
    0% { 
        transform: scale(0.7) translateY(20px); 
        opacity: 0;
        filter: blur(10px);
    }
    60% {
        filter: blur(0px);
    }
    100% { 
        transform: scale(1) translateY(0); 
        opacity: 1;
        filter: blur(0px);
    }
}

/* Rotate 3D Transition */
.id-cards-grid.rotate-3d {
    transition: all 1.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-enter-rotate {
    animation: rotate3DIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes rotate3DIn {
    0% { 
        transform: rotateY(-90deg) translateZ(-100px);
        opacity: 0;
    }
    100% { 
        transform: rotateY(0deg) translateZ(0);
        opacity: 1;
    }
}

/* Flip Transition */
.id-cards-grid.flip {
    transition: all 1.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-enter-flip {
    animation: flipIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes flipIn {
    0% { 
        transform: perspective(1000px) rotateX(-90deg);
        opacity: 0;
        transform-origin: center top;
    }
    100% { 
        transform: perspective(1000px) rotateX(0deg);
        opacity: 1;
        transform-origin: center top;
    }
}

/* Wave Transition */
.id-cards-grid.wave {
    transition: all 1s cubic-bezier(0.45, 0, 0.55, 1);
}

.card-enter-wave {
    animation: waveIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes waveIn {
    0% { 
        transform: translateY(50px) rotate(-5deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
    100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.id-card-preview {
    background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 2px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(255, 255, 255, 0.5);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform-style: preserve-3d;
}

.id-card-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
                transparent 30%,
                rgba(255, 255, 255, 0.6) 50%,
                transparent 70%);
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
    z-index: 10;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.id-card-preview:hover::before {
    opacity: 1;
}

.id-card-preview:hover {
    transform: translateZ(30px) rotateX(5deg);
    border-color: rgba(255, 255, 255, 0.6);
}

.id-card-preview:hover::before {
    animation: shimmerHover 0.8s ease forwards;
}

@keyframes shimmerHover {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.id-card-preview .trophy-photo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem;
}

.id-card-preview .trophy-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(1) contrast(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.id-card-preview:hover .trophy-photo {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
}

.id-card-preview.design-1 {
    background: linear-gradient(135deg, 
                rgba(255, 245, 245, 0.95) 0%, 
                rgba(255, 255, 255, 0.85) 100%);
    border-color: rgba(230, 57, 70, 0.2);
}

.id-card-preview.design-1::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.id-card-preview.design-1:hover {
    box-shadow: 0 25px 70px rgba(230, 57, 70, 0.25),
                0 10px 25px rgba(230, 57, 70, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 1);
    border-color: rgba(230, 57, 70, 0.4);
}

.id-card-preview.design-2 {
    background: linear-gradient(135deg, 
                rgba(240, 249, 255, 0.95) 0%, 
                rgba(255, 255, 255, 0.85) 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

.id-card-preview.design-2::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.id-card-preview.design-2:hover {
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.25),
                0 10px 25px rgba(99, 102, 241, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.4);
}

.id-card-preview.design-3 {
    background: linear-gradient(135deg, 
                rgba(240, 253, 244, 0.95) 0%, 
                rgba(255, 255, 255, 0.85) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.id-card-preview.design-3::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.id-card-preview.design-3:hover {
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.25),
                0 10px 25px rgba(16, 185, 129, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 1);
    border-color: rgba(16, 185, 129, 0.4);
}

.id-card-preview.design-4 {
    background: linear-gradient(135deg, 
                rgba(254, 243, 199, 0.95) 0%, 
                rgba(255, 255, 255, 0.85) 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.id-card-preview.design-4::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.id-card-preview.design-4:hover {
    box-shadow: 0 25px 70px rgba(245, 158, 11, 0.25),
                0 10px 25px rgba(245, 158, 11, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 1);
    border-color: rgba(245, 158, 11, 0.4);
}

.card-placeholder {
    font-size: 5rem;
    color: var(--primary-red);
    opacity: 0.3;
}

.id-card-preview.design-2 .card-placeholder {
    color: white;
}

.id-card-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.id-card-item p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* ===========================
   Education Section
   =========================== */
.education-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    text-align: center;
}

.education-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.education-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.education-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 4px solid var(--primary-red);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.education-card:hover {
    transform: translateY(-12px) scale(1.01);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 30px 80px rgba(230, 57, 70, 0.15),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 60px rgba(230, 57, 70, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

.education-year-badge-card {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.education-year-badge-card .year-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    color: white;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.education-year-badge-card .year-badge.current {
    background: linear-gradient(135deg, var(--primary-green), #059669);
}

.education-card-inner {
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.education-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.education-logo.ifl {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.education-logo.rupp {
    background: linear-gradient(135deg, #E63946, #DC2626);
    color: white;
    font-size: 2rem;
}

.education-info {
    flex: 1;
    text-align: left;
}

.education-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.education-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.education-status {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.status-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.education-status p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.education-status strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* ===========================
   Achievements Section
   =========================== */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.achievements-section .section-title {
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.achievements-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.12) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 2rem 2.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(239, 68, 68, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 150px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 30px 80px rgba(239, 68, 68, 0.25),
        inset 0 0 50px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 80px rgba(239, 68, 68, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.trophy-icon-circle {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.trophy-icon-circle .trophy-icon {
    font-size: 3.5rem;
    animation: none;
}

.achievement-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.achievement-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.achievement-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    opacity: 0.95;
}

.achievement-content p {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ===========================
   Trophy Moments Section
   =========================== */
.trophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.trophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.trophy-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.trophy-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 60px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.card-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.circle-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    filter: blur(40px);
    transition: opacity 0.4s ease;
}

.knowledge-card:hover .circle-deco {
    opacity: 0.08;
}

.circle-deco.red {
    background: var(--primary-red);
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-deco.green {
    background: var(--primary-green);
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-deco.purple {
    background: var(--primary-purple);
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-deco.blue {
    background: var(--primary-blue);
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.corner-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(20px);
    transition: all 0.4s ease;
}

.knowledge-card:hover .corner-accent,
.trophy-card:hover .corner-accent {
    opacity: 0.15;
    filter: blur(25px);
}

.knowledge-card .corner-accent.blue {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    top: -20px;
    right: -20px;
}

.knowledge-card .corner-accent.purple {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    top: -20px;
    right: -20px;
}

.knowledge-card .corner-accent.green {
    background: linear-gradient(135deg, #10B981, #3B82F6);
    top: -20px;
    right: -20px;
}

.trophy-red .corner-accent.red {
    background: var(--primary-red);
    top: 20px;
    right: 20px;
}

.trophy-green .corner-accent.green {
    background: var(--primary-green);
    top: 20px;
    left: 20px;
}

.trophy-purple .corner-accent.purple {
    background: var(--primary-purple);
    top: 20px;
    right: 20px;
}

.trophy-blue .corner-accent.blue {
    background: var(--primary-blue);
    top: 20px;
    left: 20px;
}

.year-badge,
.event-badge {
    position: absolute;
    top: 30px;
    padding: 10px 28px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    z-index: 10;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.knowledge-card:hover .event-badge {
    transform: translateY(-4px);
}

.year-badge.red {
    background: var(--primary-red);
    left: 40px;
}

.year-badge.green {
    background: var(--primary-green);
    right: 40px;
}

.year-badge.purple {
    background: var(--primary-purple);
    left: 40px;
}

.year-badge.blue {
    background: var(--primary-blue);
    right: 40px;
}

.photo-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px dashed rgba(230, 57, 70, 0.15);
    border-radius: 16px;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(230, 57, 70, 0.02) 20px,
            rgba(230, 57, 70, 0.02) 40px
        );
    animation: shimmer 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.photo-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.photo-placeholder i {
    font-size: 5.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    opacity: 0.35;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.15));
}

.photo-placeholder:hover i {
    opacity: 0.55;
    transform: scale(1.2) rotate(-5deg);
}

.photo-upload {
    display: none;
}

.upload-label {
    position: absolute;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #dc2626 100%);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    font-weight: 600;
    z-index: 1;
    transition: var(--transition);
}

.upload-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.4);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.upload-label:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.trophy-photo-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
    background: white;
    z-index: 1;
}

.trophy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
    display: block;
    position: relative;
    z-index: 1;
}

.trophy-card:hover .trophy-photo {
    transform: scale(1.08);
}

.trophy-caption {
    padding: 2rem;
    background: white;
    position: relative;
    z-index: 1;
}

.trophy-caption h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.caption-underline {
    width: 100px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.caption-underline.red {
    background: var(--primary-red);
    opacity: 0.3;
}

.caption-underline.green {
    background: var(--primary-green);
    opacity: 0.3;
}

.caption-underline.purple {
    background: var(--primary-purple);
    opacity: 0.3;
}

.caption-underline.blue {
    background: var(--primary-blue);
    opacity: 0.3;
}

.trophy-caption p {
    font-size: 1rem;
    font-weight: 600;
}

.trophy-red .trophy-caption p {
    color: var(--primary-red);
}

.trophy-green .trophy-caption p {
    color: var(--primary-green);
}

.trophy-purple .trophy-caption p {
    color: var(--primary-purple);
}

.trophy-blue .trophy-caption p {
    color: var(--primary-blue);
}

/* ===========================
   Knowledge Sharing Section
   =========================== */
.knowledge-sharing-section {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #FAFBFC 0%, #F3F4F6 100%);
    position: relative;
    overflow: hidden;
}

.knowledge-sharing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.knowledge-sharing-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    top: 10%;
    right: -200px;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.knowledge-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.08),
        0 15px 30px -15px rgba(0, 0, 0, 0.04),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.knowledge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

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

.knowledge-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 100px -25px rgba(99, 102, 241, 0.3),
        0 25px 50px -20px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2),
        0 0 80px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.event-badge.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.95) 100%);
    left: 30px;
    box-shadow: 
        0 15px 40px -10px rgba(59, 130, 246, 0.5),
        0 8px 16px -8px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.event-badge.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(124, 58, 237, 0.95) 100%);
    left: 30px;
    box-shadow: 
        0 15px 40px -10px rgba(139, 92, 246, 0.5),
        0 8px 16px -8px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.event-badge.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.95) 100%);
    left: 30px;
    box-shadow: 
        0 15px 40px -10px rgba(16, 185, 129, 0.5),
        0 8px 16px -8px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.knowledge-card:hover .event-badge {
    transform: scale(1.05) translateX(2px);
    box-shadow: 
        0 20px 50px -12px rgba(99, 102, 241, 0.6),
        0 12px 20px -10px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

.knowledge-photo-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.15) 0%, rgba(229, 231, 235, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    z-index: 1;
}

.knowledge-photo-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

.knowledge-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 1;
    filter: brightness(1.02) contrast(1.05);
}

.knowledge-card:hover .knowledge-photo {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.08) contrast(1.08);
}

.knowledge-caption {
    padding: 2rem 2rem 2.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(250, 251, 252, 0.05) 100%);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    position: relative;
    z-index: 1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.knowledge-caption h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.knowledge-caption p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: #4B5563;
    flex: 1;
}

.knowledge-caption p::before {
    content: '💡';
    margin-right: 8px;
    opacity: 0.7;
}

/* Speaking Photos Grid */
.speaking-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 5rem;
    padding-top: 4rem;
    position: relative;
}

.speaking-photos-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.speaking-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(249, 250, 251, 0.08) 100%);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaking-photo-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 60px -15px rgba(99, 102, 241, 0.2),
        0 10px 25px -8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(99, 102, 241, 0.3);
}

.speaking-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02);
}

.speaking-photo-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.1) contrast(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.85) 40%, rgba(17, 24, 39, 0.95) 100%);
    backdrop-filter: blur(8px);
    padding: 2rem 1.5rem 1.25rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaking-photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay p {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Speaking Demo Videos Section
   =========================== */
.speaking-demos-section {
    margin-top: 5rem;
    padding-top: 5rem;
    position: relative;
}

.speaking-demos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
}

.demos-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1F2937 0%, #6366F1 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3.5rem;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 1.5rem;
}

.demos-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366F1 0%, #8B5CF6 50%, #10B981 100%);
    border-radius: 100px;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.demo-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px -15px rgba(0, 0, 0, 0.1),
        0 10px 20px -10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

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

.demo-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 90px -20px rgba(99, 102, 241, 0.2),
        0 20px 40px -15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.3);
}

.demo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    z-index: 10;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.demo-card:hover .demo-badge {
    transform: translateY(-3px) scale(1.05);
}

.demo-badge.camtech {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.demo-badge.cadt-design {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.demo-badge.cadt-tech {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.demo-video-frame {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}

.demo-video-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
    z-index: 2;
}

.demo-video-frame iframe,
.demo-video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    object-fit: cover;
}

.demo-info {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(250, 251, 252, 0.05) 100%);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    position: relative;
    z-index: 1;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.demo-info h3 {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.demo-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
}

/* Responsive Speaking Demo Videos */
@media (max-width: 992px) {
    .demos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .demos-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .speaking-demos-section {
        margin-top: 4rem;
        padding-top: 4rem;
    }
    
    .demos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .demos-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
    
    .demo-info {
        padding: 1.5rem;
    }
    
    .demo-info h3 {
        font-size: 1.2rem;
    }
    
    .demo-info p {
        font-size: 0.9rem;
    }
    
    .demo-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        top: 15px;
        left: 15px;
    }
}

/* ===========================
   Best Staff Section
   =========================== */
.best-staff-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.best-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.best-staff-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.best-staff-card:hover {
    transform: translateY(-10px) scale(1.01);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.35);
}

.best-staff-photo-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #fff;
}

.best-staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.best-staff-card:hover .best-staff-photo {
    transform: scale(1.05);
}

.best-staff-content {
    padding: 1.3rem 1.2rem 1.4rem;
    background: white;
}

.best-staff-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.best-staff-content p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.45;
    font-weight: 500;
}

/* ===========================
   Public Speaking Section
   =========================== */
.public-speaking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(2, 86, 155, 0.04) 0%, rgba(99, 102, 241, 0.05) 55%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
}

.public-speaking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    /* margin-left: auto;
    margin-right: auto; */
}

.course-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 380px;
    width: 100%;
    justify-self: center;
}

.course-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 60%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.course-card::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -70px;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.01) 72%);
    pointer-events: none;
    z-index: 0;
}

.course-card.course-basic::after {
    background: radial-gradient(circle, rgba(2, 86, 155, 0.15) 0%, rgba(2, 86, 155, 0.01) 72%);
}

.course-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 
        0 30px 80px rgba(15, 23, 42, 0.12),
        inset 0 0 50px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.course-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.6);
    position: relative;
    z-index: 1;
}

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

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

.course-level {
    display: inline-block;
    margin: 1.3rem 1.2rem 0;
    padding: 6px 12px;
    background: linear-gradient(90deg, rgba(2, 86, 155, 0.95) 0%, rgba(2, 86, 155, 0.82) 100%);
    color: white;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.course-level.advanced {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.95) 0%, rgba(99, 102, 241, 0.82) 100%);
}

.course-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0.8rem 1.2rem 0.4rem;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.course-description {
    font-size: 0.92rem;
    color: #475467;
    margin: 0.4rem 1.2rem;
    line-height: 1.45;
    flex-grow: 1;
    font-weight: 450;
    position: relative;
    z-index: 1;
}

.course-footer {
    padding: 1rem 1.2rem 1.3rem;
    padding-top: 0.4rem;
    position: relative;
    z-index: 1;
}

.course-status {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1D4ED8;
    letter-spacing: -0.2px;
}

.course-card.course-advanced .course-status {
    color: #6366F1;
}

/* Responsive Public Speaking Grid */
@media (max-width: 768px) {
    .public-speaking-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    
    .course-card {
        padding: 0;
        border-radius: 18px;
        max-width: 100%;
    }
    
    .course-title {
        font-size: 1.1rem;
        margin: 0.9rem 1.2rem 0.4rem;
    }
    
    .course-description {
        font-size: 0.9rem;
        margin: 0.4rem 1.2rem;
    }

    .course-level {
        margin: 1rem 1.2rem 0;
    }

    .course-footer {
        padding: 0.8rem 1.2rem 1rem;
    }
}

/* ===========================
   Skills Section
   =========================== */
.skills-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-category:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.35);
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background: var(--border-gray);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-purple));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* ===========================
   Experience Section - Ultra Minimalist
   =========================== */
.experience-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.02) 0%, rgba(99, 102, 241, 0.02) 50%, rgba(16, 185, 129, 0.02) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    position: relative;
}

.experience-section .section-title {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 1.5rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-purple));
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    align-items: start;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Odd items (1st, 3rd, 5th) - content on right */
.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-badge {
    grid-column: 2;
    align-self: center;
    justify-self: center;
}

/* Even items (2nd, 4th) - content on left */
.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-badge {
    grid-column: 2;
    align-self: center;
    justify-self: center;
}

.timeline-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin: auto 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: transform 0.3s ease;
}

.timeline-badge:hover {
    transform: scale(1.08);
}

.timeline-badge.current {
    border-color: var(--primary-green);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 24px rgba(16, 185, 129, 0.6);
    }
}

.company-logo {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary-red);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 0 15px rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.company-image-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(even) .company-image-wrapper {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item:nth-child(odd) .company-image-wrapper {
    margin-left: 0;
    margin-right: auto;
}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.timeline-content:hover {
    transform: translateX(6px);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-6px);
}

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.status-badge.current {
    background: var(--primary-green);
    color: white;
}

.timeline-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.timeline-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.2rem;
}

.period {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content .description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-gray);
}

/* ===========================
   Experience Slider
   =========================== */
.exp-slider-outer {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 0;
    overflow: hidden;
    padding: 0.5rem 4rem 2rem;
}

.exp-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.exp-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.exp-card {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    padding: 2rem 2.2rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08),
                inset 0 0 30px rgba(255, 255, 255, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
    text-align: center;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(230, 57, 70, 0.12),
                inset 0 0 40px rgba(255, 255, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.exp-card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.exp-logo-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.exp-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exp-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.exp-badge span {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-red);
}

.exp-badge.current {
    border-color: var(--primary-green);
    animation: glow 2s infinite;
}

.exp-badge.current span {
    color: var(--primary-green);
}

.exp-card .status-badge {
    display: inline-block;
    margin-bottom: 0.6rem;
}

.exp-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.exp-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.exp-card .period {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.exp-card .description {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-gray);
    max-width: 48ch;
    margin: 0 auto;
}

/* Slider nav buttons */
.exp-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.88), rgba(220, 38, 38, 0.88));
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 18px rgba(230, 57, 70, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.exp-slider-btn:hover {
    transform: translateY(-50%) scale(1.14);
    background: linear-gradient(135deg, #E63946, #DC2626);
    box-shadow: 0 6px 28px rgba(230, 57, 70, 0.55);
}

.exp-slider-btn:active {
    transform: translateY(-50%) scale(1.04);
}

.exp-slider-prev { left: 6px; }
.exp-slider-next { right: 6px; }

/* Dots */
.exp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.exp-slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.28);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exp-slider-dot.active {
    width: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #E63946, #DC2626);
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
}

.exp-slider-dot:hover:not(.active) {
    transform: scale(1.3);
    background: rgba(230, 57, 70, 0.5);
}

/* Dark mode */
[data-theme="dark"] .exp-card {
    background: rgba(30, 30, 46, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .exp-slider-outer {
        padding: 0.5rem 3rem 2rem;
    }
    .exp-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    .exp-card {
        padding: 1.5rem 1.25rem;
    }
    .exp-card h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .exp-slider-outer {
        padding: 0.5rem 2.5rem 2rem;
    }
    .exp-slider-prev { left: 2px; }
    .exp-slider-next { right: 2px; }
}

/* ===========================
   Expert Training Section
   =========================== */
.training-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.training-section .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.training-section .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--primary-green) 0%, 
        rgba(16, 185, 129, 0.5) 50%,
        var(--primary-green) 100%
    );
    transform: translateX(-50%);
}

.training-section .timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.training-section .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.training-section .timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.training-section .timeline-item:nth-child(odd) .training-logo {
    grid-column: 3;
    justify-self: start;
}

.training-section .timeline-item:nth-child(even) .training-logo {
    grid-column: 1;
    justify-self: end;
}

.training-section .timeline-badge {
    grid-column: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.training-section .timeline-badge.training {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.training-section .timeline-badge i {
    font-size: 2rem;
    color: white;
}

.training-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    align-self: center;
}

.training-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-logo .logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
}

.training-logo .logo-placeholder i {
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.6;
}

.training-section .timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary-green);
}

.training-section .timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-green);
}

.training-section .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.training-section .timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.training-section .timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.training-section .timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.training-section .timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.timeline-content .description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===========================
   Languages Section
   =========================== */
.languages-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.languages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.language-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 30px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.language-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.language-card:hover::before {
    opacity: 0.3;
}

.language-card:nth-child(1) {
    color: var(--primary-red);
}

.language-card:nth-child(2) {
    color: var(--primary-green);
}

.language-card:nth-child(3) {
    color: var(--primary-purple);
}

.language-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.language-icon.khmer {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(230, 57, 70, 0.05) 100%);
    color: var(--primary-red);
}

.language-icon.english {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--primary-green);
}

.language-icon.korean {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
    color: var(--primary-purple);
}

.language-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.proficiency {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.language-card .skills-list {
    list-style: none;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.language-card .skills-list li {
    padding: 0.4rem 0.8rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.language-card:hover .skills-list li {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.proficiency-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gray);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.language-card:nth-child(1) .dot.filled {
    background: linear-gradient(135deg, var(--primary-red), #dc2626);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.4);
}

.language-card:nth-child(2) .dot.filled {
    background: linear-gradient(135deg, var(--primary-green), #059669);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.language-card:nth-child(3) .dot.filled {
    background: linear-gradient(135deg, var(--primary-purple), #4f46e5);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.language-card:hover .dot.filled {
    transform: scale(1.2);
}

/* ===========================
   Mobile Applications Section
   =========================== */
.mobile-apps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.mobile-apps-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Apps Slider — replaces static grid */
.apps-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 4rem 1.5rem;
}

.apps-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.apps-slider-track .app-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: calc(25% - 1.5rem);
}

.apps-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(220, 38, 38, 0.9));
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.apps-slider-btn:hover {
    transform: translateY(-50%) scale(1.14);
    background: linear-gradient(135deg, #E63946, #DC2626);
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.apps-slider-btn:active {
    transform: translateY(-50%) scale(1.04);
}

.apps-slider-prev { left: 8px; }
.apps-slider-next { right: 8px; }

.apps-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.apps-slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.3);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.apps-slider-dot.active {
    width: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #E63946, #DC2626);
    box-shadow: 0 0 14px rgba(230, 57, 70, 0.55);
}

.apps-slider-dot:hover:not(.active) {
    transform: scale(1.3);
    background: rgba(230, 57, 70, 0.55);
}

@media (max-width: 900px) {
    .apps-slider-track .app-card {
        flex: 0 0 calc(33.333% - 1.334rem);
        min-width: calc(33.333% - 1.334rem);
    }
}

@media (max-width: 600px) {
    .apps-slider-container {
        padding: 1rem 3rem 1.5rem;
    }
    .apps-slider-track .app-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    .apps-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}

.app-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 30px 80px rgba(230, 57, 70, 0.15),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 60px rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.3);
}

.app-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.app-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.app-card:hover .app-icon {
    transform: scale(1.1);
}

.app-icon.red {
    background: linear-gradient(135deg, #E63946 0%, #DC2626 100%);
}

.app-icon.teal {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
}

.app-icon.green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.app-icon.blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.app-icon.navy {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}

.app-icon.blue-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.app-icon.brown {
    background: linear-gradient(135deg, #78350F 0%, #451A03 100%);
}

.app-icon.light-blue {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
}

.app-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.app-card .company {
    color: var(--primary-red);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.app-card .category {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   Social Section
   =========================== */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-10px) scale(1.1);
}

.social-link.linkedin {
    background: #0A66C2;
}

.social-link.github {
    background: #333;
}

.social-link.behance {
    background: #1769FF;
}

.social-link.dribbble {
    background: #EA4C89;
}

.social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

/* ===========================
   Design & Projects Section
   =========================== */
.design-projects-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.design-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.design-card {
    position: relative;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.design-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.ux-ui-card {
    background: linear-gradient(135deg, #E63946 0%, #DC2626 100%);
}

.video-card {
    position: relative;
    background: linear-gradient(135deg, rgba(184, 134, 79, 0.9), rgba(156, 102, 31, 0.95));
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.design-card .card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
    text-align: center;
}

.design-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.design-card .subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.design-card .description {
    font-size: 1rem;
    font-weight: 600;
}

.design-card .khmer-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.video-wrapper-fullframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-wrapper-fullframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    color: white;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    pointer-events: none;
}

.video-text-overlay h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.video-text-overlay .subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.video-text-overlay .khmer-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.design-projects-intro-slide.video-card {
    cursor: default;
}

.design-projects-intro-slide .video-text-overlay {
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.design-projects-intro-slide .video-text-overlay h3 {
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1.2;
    max-width: 16ch;
    margin-bottom: 0.65rem;
}

.design-projects-intro-slide .video-text-overlay .subtitle {
    max-width: 30ch;
    line-height: 1.45;
}

/* Design Carousel Styles */
.design-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    overflow: hidden;
    padding: 3rem 4rem 2rem 4rem;
}

.design-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(220, 38, 38, 0.9));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.design-carousel-btn:hover {
    transform: translateY(-50%) scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(230, 57, 70, 1), rgba(220, 38, 38, 1));
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 20px rgba(230, 57, 70, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.design-carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.design-prev-btn {
    left: 10px;
}

.design-next-btn {
    right: 10px;
}

.design-projects-grid {
    display: flex;
    gap: 2rem;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.design-card {
    flex: 0 0 calc(100% - 8rem);
    min-width: calc(100% - 8rem);
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    opacity: 0.4;
    transform: scale(0.9);
}

.design-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 50px rgba(230, 57, 70, 0.3);
}

.design-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

/* Design Carousel Indicators */
.design-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.design-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.design-carousel-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.4), transparent);
    transition: all 0.4s ease;
}

.design-carousel-indicator.active {
    width: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #E63946, #DC2626);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
    animation: designIndicatorPulse 2s ease-in-out infinite;
}

.design-carousel-indicator.active::before {
    width: 50px;
    height: 50px;
}

.design-carousel-indicator:hover {
    transform: scale(1.3);
    background: rgba(230, 57, 70, 0.6);
}

@keyframes designIndicatorPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(230, 57, 70, 0.8);
    }
}

/* Design Transition Indicator */
.design-transition-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.2);
}

.design-transition-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    opacity: 0.8;
}

.design-transition-name {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E63946, #DC2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: capitalize;
    animation: designTransitionPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Design Card Entrance Animations */
.design-card-enter-fade {
    animation: designFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.design-card-enter-zoom {
    animation: designZoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.design-card-enter-slide {
    animation: designSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.design-card-enter-flip {
    animation: designFlipIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes designFadeIn {
    from {
        opacity: 0.4;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes designZoomIn {
    from {
        opacity: 0.3;
        transform: scale(0.5) rotateZ(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateZ(0deg);
    }
}

@keyframes designSlideIn {
    from {
        opacity: 0.3;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes designFlipIn {
    from {
        opacity: 0.3;
        transform: perspective(1000px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* Responsive Design Carousel */
@media (max-width: 768px) {
    .design-carousel-container {
        padding: 2rem 3rem 1rem 3rem;
    }
    
    .design-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .design-prev-btn {
        left: 5px;
    }
    
    .design-next-btn {
        right: 5px;
    }
    
    .design-card {
        height: 300px;
    }
    
    .design-carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    .design-carousel-indicator.active {
        width: 24px;
    }
    
    .design-transition-indicator {
        padding: 0.6rem 1.2rem;
        margin-top: 1rem;
    }
    
    .design-transition-label {
        font-size: 0.8rem;
    }
    
    .design-transition-name {
        font-size: 0.9rem;
    }
}

/* ===========================
   Enhanced Get In Touch Section
   =========================== */
.get-in-touch-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.03) 0%, rgba(99, 102, 241, 0.03) 50%, rgba(16, 185, 129, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.get-in-touch-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.contact-box {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.contact-box:hover .contact-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.contact-icon.linkedin-icon {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.profile-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.contact-box p {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.profile-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.profile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.profile-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    color: white;
    text-align: center;
}

.github-card .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.profile-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.company-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.view-online-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.view-online-btn:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.info-card {
    background: white;
    border: 2px solid var(--border-gray);
}

.info-card .profile-overlay {
    background: white;
    color: var(--text-dark);
    justify-content: flex-start;
    padding: 2.5rem;
}

.info-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.job-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.experience {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.info-divider {
    width: 100%;
    height: 2px;
    background: var(--border-gray);
    margin: 1rem 0;
}

.specialty {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0.3rem 0;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: pulse 2s infinite;
}

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

.availability span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer p {
    margin: 0.5rem 0;
}

.footer i {
    color: var(--primary-red);
}

/* ===========================
   Dark Mode Toggle Button
   =========================== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.35);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon {
    font-size: 1.5rem;
    transition: all 0.4s ease;
    position: absolute;
}

.theme-icon.sun {
    color: #f59e0b;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-icon.moon {
    color: #6366f1;
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-icon.sun {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-icon.moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.15);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    color: var(--primary-red);
    border: 2px solid rgba(230, 57, 70, 0.3);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(230, 57, 70, 0.08),
        inset 0 0 40px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(230, 57, 70, 0.25);
    box-shadow: 
        0 30px 80px rgba(230, 57, 70, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 60px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.5);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text {
        text-align: center;
    }

    .about-text .title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .trophy-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .knowledge-photo-wrapper {
        height: 320px;
    }

    .speaking-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

    .speaking-photo-item {
        border-radius: 16px;
    }

    .best-staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-badge {
        grid-column: 1;
        justify-self: start;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 1;
        text-align: left;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 72px 0;
        overflow: hidden;
    }

    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }
    
    /* Hero Section Image Wrapper */
    .hero-image-wrapper .image-wrapper {
        width: 100%;
        height: 100%;
    }
    
    .hero-image-wrapper .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
    }
    
    /* About Section Image Wrapper */
    .about-image,
    .aboutDr-image {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .about-circles {
        width: 320px;
        height: 320px;
    }
    
    .about-image .image-wrapper,
    .aboutDr-image .image-wrapper {
        width: 320px;
        height: 320px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-image .image-wrapper img,
    .aboutDr-image .image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
        max-width: 100%;
        display: block;
    }

    .about-text .section-title {
        font-size: 1.9rem;
        letter-spacing: 1px;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .description-box {
        padding: 1.3rem;
        margin: 1rem 0;
    }

    .description-box p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .info-item {
        font-size: 1rem;
        align-items: flex-start;
        text-align: left;
    }
    
    /* About Section Decorative Circles */
    .about-circle.circle-1 {
        width: 320px;
        height: 320px;
    }
    
    .about-circle.circle-2 {
        width: 245px;
        height: 245px;
    }
    
    .about-circle.circle-3 {
        width: 175px;
        height: 175px;
    }
    
    .hero-name {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .id-cards-scroll-container {
        padding: 2rem 1rem 1rem 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 0.5rem;
    }
    
    .next-btn {
        right: 0.5rem;
    }
    
    .education-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .design-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-showcase {
        grid-template-columns: 1fr;
    }
}

/* Mobile Phones - Small Screens */
@media (max-width: 480px) {
    .about-section {
        padding: 58px 0;
        overflow: hidden;
    }

    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        width: 250px;
        height: 250px;
    }
    
    /* Hero Section Image Wrapper - Small Screens */
    .hero-image-wrapper .image-wrapper {
        width: 100%;
        height: 100%;
    }
    
    .hero-image-wrapper .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    /* About Section Image Wrapper - Small Screens */
    .about-image,
    .aboutDr-image {
        max-width: 245px;
        margin: 0 auto 1.2rem;
    }
    
    .about-circles {
        width: 245px;
        height: 245px;
    }
    
    .about-image .image-wrapper,
    .aboutDr-image .image-wrapper {
        width: 245px;
        height: 245px;
        max-width: 100%;
    }
    
    .about-image .image-wrapper img,
    .aboutDr-image .image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
    }

    .about-content {
        gap: 1rem;
    }

    .about-text .section-title {
        font-size: 1.52rem;
        letter-spacing: 0.4px;
        line-height: 1.15;
    }

    .about-text .title-underline {
        width: 130px;
        margin-bottom: 1.2rem;
    }

    .description-box {
        padding: 0.9rem;
        margin: 0.8rem 0;
        border-left-width: 4px;
    }

    .description-box p {
        font-size: 0.92rem;
        line-height: 1.55;
        text-align: left;
    }

    .contact-info {
        gap: 0.75rem;
        margin-top: 1.2rem;
    }

    .info-item {
        font-size: 0.88rem;
        gap: 0.65rem;
        line-height: 1.45;
    }

    .info-item i {
        font-size: 1rem;
        width: 22px;
    }
    
    /* About Section Decorative Circles - Small Screens */
    .about-circle.circle-1 {
        width: 245px;
        height: 245px;
    }
    
    .about-circle.circle-2 {
        width: 185px;
        height: 185px;
    }
    
    .about-circle.circle-3 {
        width: 130px;
        height: 130px;
    }
    
    .image-overlay {
        border-radius: 20px;
    }
    
    .hero-name {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .id-card-item {
        flex: 0 0 220px;
        width: 220px;
    }
    
    .id-cards-scroll-container {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
        overflow: hidden;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
    
    .floating-badge {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }
    
    .trophy-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .knowledge-caption {
        padding: 1.5rem;
        min-height: auto;
    }

    .knowledge-caption h3 {
        font-size: 1.25rem;
    }

    .knowledge-caption p {
        font-size: 0.9rem;
    }

    .knowledge-photo-wrapper {
        height: 280px;
    }

    .speaking-photos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .photo-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .photo-overlay p {
        font-size: 0.9rem;
    }

    .best-staff-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .best-staff-content {
        padding: 1rem;
    }

    .best-staff-content h3 {
        font-size: 1.02rem;
    }

    .best-staff-content p {
        font-size: 0.86rem;
    }
    
    .skill-category {
        padding: 1.5rem;
    }
}

/* Experience Section - Mobile Timeline Fix */
@media (max-width: 968px) {
    .experience-section .timeline {
        max-width: 100%;
        margin-top: 1.2rem;
        padding-left: 54px;
    }

    .experience-section .timeline::before {
        left: 21px;
        transform: none;
    }

    .experience-section .timeline-item {
        display: block;
        position: relative;
        margin-bottom: 1.4rem;
    }

    .experience-section .timeline-item .timeline-badge,
    .experience-section .timeline-item:nth-child(odd) .timeline-badge,
    .experience-section .timeline-item:nth-child(even) .timeline-badge {
        position: absolute;
        left: -54px;
        top: 16px;
        width: 42px;
        height: 42px;
        margin: 0;
        grid-column: auto;
        justify-self: auto;
        z-index: 5;
    }

    .experience-section .timeline-item .timeline-content,
    .experience-section .timeline-item:nth-child(odd) .timeline-content,
    .experience-section .timeline-item:nth-child(even) .timeline-content {
        grid-column: auto;
        text-align: left;
        width: 100%;
        padding: 1rem 1rem 1.1rem;
    }

    .experience-section .timeline-content:hover,
    .experience-section .timeline-item:nth-child(even) .timeline-content:hover {
        transform: none;
    }

    .experience-section .company-image-wrapper,
    .experience-section .timeline-item:nth-child(odd) .company-image-wrapper,
    .experience-section .timeline-item:nth-child(even) .company-image-wrapper {
        margin: 0 0 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .experience-section {
        padding: 30px 0;
    }

    .experience-section .section-title {
        font-size: 1.72rem;
    }

    .experience-section .timeline {
        padding-left: 44px;
    }

    .experience-section .timeline::before {
        left: 17px;
    }

    .experience-section .timeline-item .timeline-badge,
    .experience-section .timeline-item:nth-child(odd) .timeline-badge,
    .experience-section .timeline-item:nth-child(even) .timeline-badge {
        left: -44px;
        top: 14px;
        width: 36px;
        height: 36px;
    }

    .experience-section .company-logo {
        font-size: 0.72rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 100%;
        line-height: 1;
    }

    .experience-section .timeline-content h3 {
        font-size: 0.95rem;
    }

    .experience-section .timeline-content h4 {
        font-size: 0.83rem;
    }

    .experience-section .period {
        font-size: 0.78rem;
    }

    .experience-section .timeline-content .description {
        font-size: 0.82rem;
        line-height: 1.45;
    }
}

/* Expert Training Section - Mobile Timeline Fix */
@media (max-width: 968px) {
    .training-section {
        padding: 70px 0;
    }

    .training-section .section-subtitle {
        margin-bottom: 1.8rem;
    }

    .training-section .timeline {
        max-width: 100%;
        padding-left: 52px;
    }

    .training-section .timeline::before {
        left: 20px;
        transform: none;
    }

    .training-section .timeline-item {
        display: block;
        position: relative;
        margin-bottom: 1.6rem;
    }

    .training-section .timeline-badge,
    .training-section .timeline-item:nth-child(odd) .timeline-badge,
    .training-section .timeline-item:nth-child(even) .timeline-badge {
        position: absolute;
        left: -52px;
        top: 16px;
        width: 42px;
        height: 42px;
        border-width: 3px;
        margin: 0;
        grid-column: auto;
        z-index: 5;
    }

    .training-section .timeline-badge i {
        font-size: 1.2rem;
    }

    .training-section .timeline-item .timeline-content,
    .training-section .timeline-item:nth-child(odd) .timeline-content,
    .training-section .timeline-item:nth-child(even) .timeline-content {
        grid-column: auto;
        text-align: left;
        width: 100%;
        border-right: none;
        border-left: 4px solid var(--primary-green);
        padding: 1.1rem 1rem;
    }

    .training-section .timeline-content:hover {
        transform: none;
    }

    .training-section .training-logo,
    .training-section .timeline-item:nth-child(odd) .training-logo,
    .training-section .timeline-item:nth-child(even) .training-logo {
        display: none;
    }

    .training-section .timeline-content h3 {
        font-size: 1.18rem;
        line-height: 1.32;
    }

    .training-section .timeline-content h4 {
        font-size: 1rem;
    }

    .training-section .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .training-section {
        padding: 55px 0;
    }

    .training-section .section-title {
        font-size: 1.72rem;
    }

    .training-section .section-subtitle {
        margin-bottom: 1.3rem;
        font-size: 0.96rem;
    }

    .training-section .timeline {
        padding-left: 44px;
    }

    .training-section .timeline::before {
        left: 17px;
    }

    .training-section .timeline-badge,
    .training-section .timeline-item:nth-child(odd) .timeline-badge,
    .training-section .timeline-item:nth-child(even) .timeline-badge {
        left: -44px;
        top: 14px;
        width: 36px;
        height: 36px;
        border-width: 2.5px;
    }

    .training-section .timeline-badge i {
        font-size: 1rem;
    }

    .training-section .timeline-content {
        padding: 0.95rem 0.9rem;
    }

    .training-section .timeline-date {
        padding: 0.4rem 0.9rem;
        font-size: 0.78rem;
        border-radius: 14px;
        margin-bottom: 0.75rem;
    }

    .training-section .timeline-content h3 {
        font-size: 1.02rem;
    }

    .training-section .timeline-content h4 {
        font-size: 0.88rem;
        margin-bottom: 0.75rem;
    }

    .training-section .timeline-content p {
        font-size: 0.84rem;
        line-height: 1.5;
    }
}

/* =================================================
   INTERNATIONAL WORKSHOPS & EVENTS - ENHANCED DESIGN
   ================================================= */

.international-events-section {
    margin-top: 6rem;
    padding-top: 5rem;
    position: relative;
}

.international-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.4) 50%, transparent 100%);
}

/* Header Section */
.intl-section-header {
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
    padding: 3rem 1rem 1rem;
}

.intl-globe-decoration {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.intl-globe-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.25);
    transform: translate(-50%, -50%);
    animation: intlRingPulse 6s ease-in-out infinite;
}

.intl-globe-ring.ring-a {
    width: 120px;
    height: 120px;
    border-color: rgba(59, 130, 246, 0.3);
    animation-delay: 0s;
}

.intl-globe-ring.ring-b {
    width: 200px;
    height: 200px;
    border-color: rgba(139, 92, 246, 0.22);
    animation-delay: 1s;
}

.intl-globe-ring.ring-c {
    width: 280px;
    height: 280px;
    border-color: rgba(16, 185, 129, 0.18);
    animation-delay: 2s;
}

@keyframes intlRingPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.intl-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #4338ca;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.25);
}

.intl-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: intlPulseDot 2s infinite;
}

@keyframes intlPulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.intl-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #6366f1 35%, #8b5cf6 65%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    line-height: 1.15;
}

.intl-title-underline {
    width: 90px;
    height: 4px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
    border-radius: 100px;
    box-shadow: 0 4px 12px -2px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 1;
}

.intl-description {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    position: relative;
    z-index: 1;
}

/* Stats Row */
.intl-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intl-stat {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 18px;
    padding: 1.4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -12px rgba(99, 102, 241, 0.15);
}

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

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

.intl-stat:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 50px -15px rgba(99, 102, 241, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
}

.intl-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px -6px rgba(99, 102, 241, 0.45);
}

.intl-stat:nth-child(2) .intl-stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    box-shadow: 0 8px 20px -6px rgba(16, 185, 129, 0.45);
}

.intl-stat:nth-child(3) .intl-stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.45);
}

.intl-stat:nth-child(4) .intl-stat-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 8px 20px -6px rgba(139, 92, 246, 0.45);
}

.intl-stat-num {
    font-size: 1.85rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1f2937 0%, #4338ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.intl-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* International Events Grid - 6 cards */
.international-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

/* Add new color variants for circle/corner decorations */
.knowledge-card .circle-deco.orange {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
}
.knowledge-card .corner-accent.orange {
    background: linear-gradient(135deg, transparent 50%, rgba(249, 115, 22, 0.4) 100%);
}
.knowledge-card .circle-deco.cyan {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
}
.knowledge-card .corner-accent.cyan {
    background: linear-gradient(135deg, transparent 50%, rgba(34, 211, 238, 0.4) 100%);
}
.knowledge-card .circle-deco.rose {
    background: radial-gradient(circle, rgba(244, 63, 94, 0.18) 0%, transparent 70%);
}
.knowledge-card .corner-accent.rose {
    background: linear-gradient(135deg, transparent 50%, rgba(244, 63, 94, 0.4) 100%);
}

/* Event badge new variants */
.event-badge.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.95) 0%, rgba(234, 88, 12, 0.95) 100%);
    left: 30px;
    box-shadow:
        0 15px 40px -10px rgba(249, 115, 22, 0.5),
        0 8px 16px -8px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.event-badge.cyan {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.95) 0%, rgba(8, 145, 178, 0.95) 100%);
    left: 30px;
    box-shadow:
        0 15px 40px -10px rgba(34, 211, 238, 0.5),
        0 8px 16px -8px rgba(34, 211, 238, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.event-badge.rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.95) 0%, rgba(225, 29, 72, 0.95) 100%);
    left: 30px;
    box-shadow:
        0 15px 40px -10px rgba(244, 63, 94, 0.5),
        0 8px 16px -8px rgba(244, 63, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Caption underlines new variants */
.caption-underline.orange {
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
}
.caption-underline.cyan {
    background: linear-gradient(90deg, #22d3ee 0%, #0891b2 100%);
}
.caption-underline.rose {
    background: linear-gradient(90deg, #f43f5e 0%, #e11d48 100%);
}

/* International Card Specific Styles */
.intl-card {
    position: relative;
}

.intl-location-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.intl-location-tag i {
    color: #f87171;
    font-size: 0.78rem;
}

.intl-card:hover .intl-location-tag {
    background: rgba(17, 24, 39, 0.92);
    transform: translateY(-2px);
}

.intl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(99, 102, 241, 0.2);
}

.intl-tag {
    padding: 4px 12px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: #4338ca;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.intl-tag:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    transform: translateY(-1px);
    color: #4f46e5;
}

/* Override default knowledge caption emoji for intl cards */
.intl-card .knowledge-caption p::before {
    content: '✈️';
}

/* International Photo Gallery */
.intl-gallery-section {
    margin-top: 5rem;
    padding-top: 4rem;
    position: relative;
}

.intl-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.35) 50%, transparent 100%);
}

.intl-subtitle {
    text-align: center;
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #4338ca 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.intl-subtitle-desc {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.intl-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 1.25rem;
}

.intl-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 40px -12px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.intl-photo-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.intl-photo-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px -15px rgba(99, 102, 241, 0.35),
        0 15px 30px -12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(99, 102, 241, 0.45);
}

.intl-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02);
}

.intl-photo-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.08) contrast(1.05);
}

.intl-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.4rem 1.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.55) 35%, rgba(17, 24, 39, 0.95) 100%);
    backdrop-filter: blur(8px);
    transform: translateY(45%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.intl-photo-item:hover .intl-photo-overlay {
    transform: translateY(0);
}

.intl-photo-pin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.85);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px -2px rgba(99, 102, 241, 0.5);
}

.intl-photo-overlay h5 {
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.intl-photo-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.intl-photo-item.large .intl-photo-overlay h5 {
    font-size: 1.35rem;
}

.intl-photo-item.large .intl-photo-overlay p {
    font-size: 0.95rem;
}

/* International Videos Section */
.intl-videos-section {
    margin-top: 5rem;
    padding-top: 4rem;
    position: relative;
}

.intl-videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.35) 50%, transparent 100%);
}

.intl-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
}

.intl-video-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 18px 48px -16px rgba(0, 0, 0, 0.1),
        0 8px 16px -8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
}

.intl-video-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 
        0 30px 80px -20px rgba(99, 102, 241, 0.25),
        0 18px 30px -15px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.intl-video-card.featured {
    border: 2px solid rgba(245, 158, 11, 0.35);
    box-shadow: 
        0 25px 60px -16px rgba(245, 158, 11, 0.2),
        0 12px 24px -10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.intl-video-card.featured:hover {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 
        0 35px 90px -22px rgba(245, 158, 11, 0.35),
        0 18px 30px -15px rgba(0, 0, 0, 0.1);
}

.intl-video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(99, 102, 241, 0.95) 100%);
    color: white;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px -6px rgba(99, 102, 241, 0.5);
}

.intl-video-badge.featured-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.95) 100%);
    box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.5);
}

.intl-video-frame {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.intl-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.intl-video-info {
    padding: 1.5rem 1.5rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.intl-video-info h5 {
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
}

.intl-video-info p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
}

.intl-video-meta {
    display: flex;
    gap: 1rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(99, 102, 241, 0.2);
}

.intl-video-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 600;
}

.intl-video-meta i {
    color: #6366f1;
    font-size: 0.85rem;
}

/* Dark mode adjustments */
[data-theme="dark"] .intl-badge-pill {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
}

[data-theme="dark"] .intl-title {
    background: linear-gradient(135deg, #93c5fd 0%, #a5b4fc 35%, #c4b5fd 65%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .intl-description {
    color: #cbd5e1;
}

[data-theme="dark"] .intl-stat {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-color: rgba(99, 102, 241, 0.25);
}

[data-theme="dark"] .intl-stat-num {
    background: linear-gradient(135deg, #f1f5f9 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .intl-stat-label {
    color: #94a3b8;
}

[data-theme="dark"] .intl-tag {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    color: #c7d2fe;
}

[data-theme="dark"] .intl-subtitle {
    background: linear-gradient(135deg, #f1f5f9 0%, #a5b4fc 50%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .intl-subtitle-desc {
    color: #94a3b8;
}

[data-theme="dark"] .intl-video-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .intl-video-info h5 {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .intl-video-info p {
    color: #94a3b8;
}

[data-theme="dark"] .intl-video-meta span {
    color: #94a3b8;
}

[data-theme="dark"] .intl-video-meta i {
    color: #a5b4fc;
}

/* Responsive */
@media (max-width: 1024px) {
    .international-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .intl-photos-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 200px;
    }

    .intl-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .intl-video-card.featured {
        grid-column: span 2;
    }

    .intl-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .international-events-section {
        margin-top: 4rem;
        padding-top: 3rem;
    }

    .intl-globe-decoration {
        width: 200px;
        height: 200px;
        opacity: 0.35;
    }

    .intl-globe-ring.ring-a { width: 90px; height: 90px; }
    .intl-globe-ring.ring-b { width: 150px; height: 150px; }
    .intl-globe-ring.ring-c { width: 200px; height: 200px; }

    .intl-title {
        font-size: 1.7rem;
    }

    .intl-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .international-events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intl-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 180px 180px 180px;
    }

    .intl-photo-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .intl-videos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .intl-video-card.featured {
        grid-column: span 1;
    }

    .intl-subtitle {
        font-size: 1.4rem;
    }

    .intl-gallery-section,
    .intl-videos-section {
        margin-top: 3.5rem;
        padding-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .intl-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .intl-stat {
        padding: 1.1rem 0.75rem;
    }

    .intl-stat-num {
        font-size: 1.5rem;
    }

    .intl-stat-label {
        font-size: 0.7rem;
    }

    .intl-photos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }

    .intl-photo-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .intl-photo-overlay {
        transform: translateY(0);
        padding: 1rem;
    }

    .intl-location-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .intl-title {
        font-size: 1.45rem;
    }

    .intl-badge-pill {
        font-size: 0.72rem;
        padding: 6px 16px;
    }
}

/* =================================================
   SINGAPORE TRIP SECTION
   ================================================= */

.singapore-section {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #fafbff 0%, #f5f3ff 100%);
}

[data-theme="dark"] .singapore-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
}

/* Background decorations */
.sg-bg-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sg-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: sgBlobFloat 18s ease-in-out infinite;
}

.sg-blob-1 {
    width: 380px;
    height: 380px;
    top: 8%;
    left: -8%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.55) 0%, transparent 70%);
    animation-delay: 0s;
}

.sg-blob-2 {
    width: 460px;
    height: 460px;
    bottom: 10%;
    right: -10%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, transparent 70%);
    animation-delay: 4s;
}

.sg-blob-3 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    animation-delay: 8s;
}

@keyframes sgBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 25px) scale(0.95); }
}

.sg-blob-3 {
    animation-name: sgBlobFloatCenter;
}

@keyframes sgBlobFloatCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.15); }
}

.sg-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

/* HERO BANNER */
.sg-hero {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    height: 480px;
    margin-bottom: 6rem;
    box-shadow:
        0 40px 100px -25px rgba(124, 58, 237, 0.4),
        0 20px 50px -15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sg-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sg-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-in-out;
    animation: sgHeroZoom 20s ease-in-out infinite;
}

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

.sg-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(124, 58, 237, 0.45) 50%, rgba(220, 38, 38, 0.5) 100%),
        linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.sg-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.sg-flag-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.4rem;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.3);
}

.sg-flag-icon {
    width: 28px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.sg-hero-title {
    color: white;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sg-hero-emoji {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: sgEmojiBounce 3s ease-in-out infinite;
}

@keyframes sgEmojiBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-5deg); }
}

.sg-hero-text {
    line-height: 1.15;
}

.sg-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.sg-hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.sg-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 14px 28px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4);
}

.sg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.sg-meta-item i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.sg-meta-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
}

/* Floating icons */
.sg-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.sg-float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.3);
    animation: sgFloat 6s ease-in-out infinite;
}

.sg-icon-1 { top: 10%; left: 8%; animation-delay: 0s; }
.sg-icon-2 { top: 18%; right: 12%; animation-delay: 1.5s; }
.sg-icon-3 { bottom: 22%; left: 10%; animation-delay: 3s; }
.sg-icon-4 { bottom: 14%; right: 8%; animation-delay: 4.5s; }

@keyframes sgFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}

/* STORY SECTION - PHOTO COLLAGE LAYOUT */
.sg-story-section {
    margin-bottom: 6rem;
}

.sg-highlight-alt {
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Photo Collage Mosaic */
.sg-story-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 200px 200px 200px;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem;
}

.sg-collage-photo {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    box-shadow:
        0 20px 50px -15px rgba(124, 58, 237, 0.25),
        0 10px 20px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sg-collage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-collage-photo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 35px 80px -20px rgba(124, 58, 237, 0.5),
        0 18px 30px -10px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.sg-collage-photo:hover img {
    transform: scale(1.12);
}

.sg-collage-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.35) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sg-collage-photo:hover .sg-collage-shine {
    opacity: 0.5;
}

/* Asymmetric mosaic positioning */
.sg-collage-1 { grid-column: span 3; grid-row: span 2; }
.sg-collage-2 { grid-column: span 3; grid-row: span 1; }
.sg-collage-3 { grid-column: span 2; grid-row: span 1; }
.sg-collage-4 { grid-column: span 2; grid-row: span 2; }
.sg-collage-5 { grid-column: span 2; grid-row: span 1; }
.sg-collage-6 { grid-column: span 4; grid-row: span 1; }

/* Floating stat badges over the collage */
.sg-collage-stat {
    position: absolute;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 25px 60px -15px rgba(124, 58, 237, 0.4),
        0 10px 20px -10px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    z-index: 10;
}

.sg-collage-stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 30px 70px -15px rgba(124, 58, 237, 0.55),
        0 15px 25px -10px rgba(0, 0, 0, 0.18);
}

.sg-collage-stat i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.sg-collage-stat-1 {
    top: -15px;
    right: 5%;
    animation: sgFloatCard 5s ease-in-out infinite;
}

.sg-collage-stat-1 i {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    box-shadow: 0 8px 20px -6px rgba(251, 191, 36, 0.5);
}

.sg-collage-stat-2 {
    top: 38%;
    left: -20px;
    animation: sgFloatCard 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.sg-collage-stat-2 i {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    box-shadow: 0 8px 20px -6px rgba(124, 58, 237, 0.5);
}

.sg-collage-stat-3 {
    bottom: -15px;
    right: 8%;
    animation: sgFloatCard 5s ease-in-out infinite;
    animation-delay: 3s;
}

.sg-collage-stat-3 i {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    box-shadow: 0 8px 20px -6px rgba(6, 182, 212, 0.5);
}

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

/* Compact caption below the collage */
.sg-story-caption {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.sg-caption-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #be185d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sg-caption-badge i { color: #dc2626; }

.sg-caption-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.sg-caption-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.sg-caption-tags {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.sg-card-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #1f2937;
    line-height: 1;
}

.sg-card-text {
    display: block;
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* SECTION TITLES */
.sg-section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1f2937 0%, #7c3aed 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sg-title-emoji {
    font-size: 2rem;
    -webkit-text-fill-color: initial;
}

.sg-section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* HIGHLIGHTS GRID */
.sg-highlights-section {
    margin-bottom: 6rem;
}

.sg-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 0;
}

.sg-highlight-card {
    position: relative;
    border-radius: 26px;
    overflow: visible;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.88) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 20px 50px -15px rgba(124, 58, 237, 0.18),
        0 10px 20px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-top: 32px;
}

.sg-highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 0%, rgba(124, 58, 237, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.sg-highlight-card:hover::before {
    opacity: 1;
}

.sg-highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 80px -20px rgba(124, 58, 237, 0.4),
        0 15px 30px -15px rgba(0, 0, 0, 0.12);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Photo-dominant card redesign */
.sg-highlight-card {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden !important;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    margin-top: 0;
    padding: 0;
}

.sg-card-image {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 24px;
    z-index: 0;
}

.sg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sg-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0) 35%,
        rgba(15, 23, 42, 0.55) 65%,
        rgba(15, 23, 42, 0.92) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.sg-highlight-card:hover .sg-card-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.3) 30%,
        rgba(15, 23, 42, 0.78) 60%,
        rgba(15, 23, 42, 0.95) 100%
    );
}

.sg-card-icon-circle {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow:
        0 10px 24px -6px rgba(124, 58, 237, 0.6),
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    z-index: 5;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sg-card-icon-circle.featured {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    box-shadow:
        0 10px 24px -6px rgba(251, 191, 36, 0.6),
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sg-highlight-card:hover .sg-card-icon-circle {
    transform: rotate(360deg) scale(1.1);
}

.sg-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem 1.4rem 1.5rem;
    z-index: 3;
    color: white;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-card-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sg-card-tag.featured {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.6) 0%, rgba(249, 115, 22, 0.6) 100%);
    border-color: rgba(251, 191, 36, 0.55);
    color: white;
}

.sg-card-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.sg-card-content p {
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.sg-highlight-card:hover .sg-card-content p {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
}

[data-theme="dark"] .sg-card-content h4,
[data-theme="dark"] .sg-card-content p { color: white; }

/* VIDEO SECTION */
.sg-video-section {
    margin-bottom: 6rem;
}

.sg-video-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.85) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 40px 100px -25px rgba(124, 58, 237, 0.4),
        0 20px 40px -15px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
}

.sg-video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow:
        0 50px 130px -25px rgba(124, 58, 237, 0.55),
        0 25px 50px -15px rgba(0, 0, 0, 0.15);
}

.sg-video-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.4) 0%, transparent 65%);
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
    animation: sgGlowPulse 4s ease-in-out infinite;
}

@keyframes sgGlowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.sg-video-frame-wrapper {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(124, 58, 237, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
}

.sg-video-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%) 1;
    z-index: 2;
}

.corner-tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.corner-tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.corner-bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.corner-br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.sg-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #0f172a;
    border-radius: 22px;
    overflow: hidden;
}

.sg-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.sg-video-info {
    padding: 2rem 2.5rem 2.5rem;
}

.sg-video-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.sg-video-info p {
    font-size: 1rem;
    line-height: 1.75;
    color: #6b7280;
    margin: 0 0 1.25rem;
}

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

.sg-vtag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #4338ca;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sg-vtag:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(220, 38, 38, 0.18) 100%);
    transform: translateY(-2px);
}

.sg-vtag i {
    color: #7c3aed;
}

/* GALLERY GRID */
.sg-gallery-section {
    margin-bottom: 5rem;
}

.sg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 1.25rem;
}

.sg-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 16px 40px -12px rgba(124, 58, 237, 0.25),
        0 8px 16px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.sg-photo-1 { grid-column: span 2; grid-row: span 2; }
.sg-photo-2 { grid-column: span 1; grid-row: span 1; }
.sg-photo-3 { grid-column: span 1; grid-row: span 1; }
.sg-photo-4 { grid-column: span 1; grid-row: span 1; }
.sg-photo-5 { grid-column: span 1; grid-row: span 1; }
.sg-photo-6 { grid-column: span 2; grid-row: span 1; }

.sg-photo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 25px 60px -15px rgba(124, 58, 237, 0.4),
        0 12px 24px -10px rgba(0, 0, 0, 0.15);
}

.sg-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-photo:hover img {
    transform: scale(1.12);
}

.sg-photo-cap {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.3);
    transform: translateY(8px);
    opacity: 0.92;
    transition: all 0.4s ease;
}

.sg-photo:hover .sg-photo-cap {
    transform: translateY(0);
    opacity: 1;
    background: rgba(124, 58, 237, 0.92);
}

.sg-photo-cap i {
    color: #fbbf24;
}

/* QUOTE SECTION */
.sg-quote-section {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.7) 0%, rgba(245, 243, 255, 0.5) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(124, 58, 237, 0.18);
    box-shadow:
        0 30px 80px -20px rgba(124, 58, 237, 0.25),
        0 15px 30px -15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.sg-quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.sg-quote-marks {
    font-family: Georgia, serif;
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.5;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    height: 50px;
    position: relative;
}

.sg-quote-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #1f2937;
    font-weight: 500;
    font-style: italic;
    margin: 1.5rem 0 2rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.sg-quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    color: #7c3aed;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.sg-quote-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed);
    border-radius: 100px;
}

.sg-quote-line:last-child {
    background: linear-gradient(90deg, #7c3aed, transparent);
}

/* ============== DARK MODE ============== */
[data-theme="dark"] .sg-caption-title { color: #f1f5f9; }
[data-theme="dark"] .sg-caption-text { color: #cbd5e1; }
[data-theme="dark"] .sg-caption-badge {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-color: rgba(220, 38, 38, 0.4);
    color: #f9a8d4;
}
[data-theme="dark"] .sg-collage-stat {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}
[data-theme="dark"] .sg-section-title {
    background: linear-gradient(135deg, #f1f5f9 0%, #c4b5fd 50%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="dark"] .sg-section-subtitle { color: #94a3b8; }
[data-theme="dark"] .sg-highlight-card {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    border-color: rgba(124, 58, 237, 0.2);
}
[data-theme="dark"] .sg-card-content h4 { color: white; }
[data-theme="dark"] .sg-card-content p { color: rgba(255, 255, 255, 0.92); }
[data-theme="dark"] .sg-card-tag {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}
[data-theme="dark"] .sg-card-icon-circle { border-color: rgba(255, 255, 255, 0.3); }
[data-theme="dark"] .sg-video-wrapper {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    border-color: rgba(124, 58, 237, 0.25);
}
[data-theme="dark"] .sg-video-info h4 { color: #f1f5f9; }
[data-theme="dark"] .sg-video-info p { color: #94a3b8; }
[data-theme="dark"] .sg-vtag {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(220, 38, 38, 0.25) 100%);
    border-color: rgba(124, 58, 237, 0.4);
    color: #c4b5fd;
}
[data-theme="dark"] .sg-vtag i { color: #c4b5fd; }
[data-theme="dark"] .sg-card-num { color: #f1f5f9; }
[data-theme="dark"] .sg-card-text { color: #94a3b8; }
[data-theme="dark"] .sg-quote-section {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(30, 27, 75, 0.5) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}
[data-theme="dark"] .sg-quote-text { color: #e2e8f0; }
[data-theme="dark"] .sg-quote-attribution { color: #c4b5fd; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .sg-hero { height: 420px; }
    .sg-hero-title { font-size: 2.8rem; }
    .sg-story-collage {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 180px 180px 180px;
    }
    .sg-collage-1 { grid-column: span 4; grid-row: span 1; }
    .sg-collage-2 { grid-column: span 2; grid-row: span 1; }
    .sg-collage-3 { grid-column: span 2; grid-row: span 1; }
    .sg-collage-4 { grid-column: span 2; grid-row: span 1; }
    .sg-collage-5 { grid-column: span 2; grid-row: span 1; }
    .sg-collage-6 { grid-column: span 4; grid-row: span 1; }
    .sg-caption-title { font-size: 1.7rem; }
    .sg-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sg-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 200px 200px;
    }
    .sg-photo-1 { grid-column: span 3; grid-row: span 1; }
    .sg-photo-6 { grid-column: span 3; grid-row: span 1; }
}

@media (max-width: 768px) {
    .singapore-section { padding: 100px 0 80px; }
    .sg-hero { height: 380px; border-radius: 24px; }
    .sg-hero-title { font-size: 2.1rem; }
    .sg-hero-emoji { font-size: 2rem; }
    .sg-hero-subtitle { font-size: 1rem; }
    .sg-hero-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 12px 18px;
    }
    .sg-meta-divider { display: none; }
    .sg-float-icon { width: 38px; height: 38px; font-size: 0.9rem; }
    .sg-caption-title { font-size: 1.5rem; }
    .sg-caption-text { font-size: 0.95rem; }
    .sg-story-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
        gap: 0.75rem;
        padding: 0.5rem;
    }
    .sg-collage-1 { grid-column: span 2; grid-row: span 1; }
    .sg-collage-2,
    .sg-collage-3,
    .sg-collage-4,
    .sg-collage-5 { grid-column: span 1; grid-row: span 1; }
    .sg-collage-6 { grid-column: span 2; grid-row: span 1; }
    .sg-collage-stat {
        padding: 10px 14px;
    }
    .sg-collage-stat i { width: 32px; height: 32px; font-size: 0.85rem; }
    .sg-collage-stat-1 { right: 0; top: -10px; }
    .sg-collage-stat-2 { left: -8px; top: auto; bottom: 35%; }
    .sg-collage-stat-3 { right: 0; bottom: -10px; }
    .sg-section-title { font-size: 1.85rem; }
    .sg-title-emoji { font-size: 1.6rem; }
    .sg-highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sg-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
        gap: 1rem;
    }
    .sg-photo-1 { grid-column: span 2; grid-row: span 1; }
    .sg-photo-6 { grid-column: span 2; grid-row: span 1; }
    .sg-video-info { padding: 1.5rem; }
    .sg-video-info h4 { font-size: 1.2rem; }
    .sg-quote-section { padding: 2.5rem 1.5rem; }
    .sg-quote-text { font-size: 1.1rem; }
    .sg-quote-marks { font-size: 5rem; height: 30px; }
    .sg-card-num { font-size: 1.15rem; }
    .sg-card-text { font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .singapore-section { padding: 80px 0 60px; }
    .sg-hero { height: 340px; }
    .sg-hero-title { font-size: 1.7rem; }
    .sg-flag-pill {
        font-size: 0.72rem;
        padding: 8px 16px;
    }
    .sg-hero-meta {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: center;
    }
    .sg-caption-title { font-size: 1.3rem; }
    .sg-section-title { font-size: 1.5rem; flex-direction: column; gap: 6px; }
    .sg-floating-icons { display: none; }
    .sg-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 180px);
    }
    .sg-photo-1, .sg-photo-6 { grid-column: span 1; }
    .sg-quote-text { font-size: 1rem; }
    .sg-quote-attribution {
        flex-direction: column;
        gap: 0.5rem;
    }
    .sg-quote-line { width: 80px; }
}

/* GITEX AI ASIA Hashtag Pills */
.sg-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(124, 58, 237, 0.25);
}

.sg-hashtag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.sg-hashtag:hover {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.18) 0%, rgba(124, 58, 237, 0.18) 100%);
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 8px 18px -6px rgba(124, 58, 237, 0.35);
    color: #4c1d95;
}

[data-theme="dark"] .sg-hashtag {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.18) 0%, rgba(124, 58, 237, 0.18) 100%);
    border-color: rgba(124, 58, 237, 0.35);
    color: #c4b5fd;
}

[data-theme="dark"] .sg-hashtag:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-color: rgba(124, 58, 237, 0.6);
    color: #ddd6fe;
}

[data-theme="dark"] .sg-hashtags {
    border-top-color: rgba(124, 58, 237, 0.35);
}

/* ============================================================
   GITEX AI ASIA - MODERN EDITORIAL STORY DESIGN
   ============================================================ */

.sg-story-modern {
    margin-bottom: 6rem;
    position: relative;
}

/* Editorial Header */
.sg-editorial-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 1rem;
    position: relative;
}

.sg-chapter-line {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.sg-chapter-num {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    font-style: italic;
}

.sg-chapter-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.45), transparent);
    border-radius: 100px;
}

.sg-chapter-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #7c3aed;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.sg-editorial-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin: 0 auto 1.5rem;
    max-width: 920px;
}

.sg-editorial-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-editorial-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -2px;
    right: -2px;
    height: 8px;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.18) 0%, rgba(124, 58, 237, 0.18) 100%);
    border-radius: 100px;
    z-index: -1;
}

.sg-editorial-event {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sg-editorial-year {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 900;
    position: relative;
    margin-left: 0.5rem;
}

.sg-editorial-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 100px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: 0 12px 30px -10px rgba(124, 58, 237, 0.15);
}

.sg-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.sg-meta-pill i {
    color: #7c3aed;
    font-size: 0.78rem;
}

.sg-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.4);
}

/* Photo Collage Tag */
.sg-collage-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.3);
}

/* Refined photo collage with animated borders */
.sg-collage-photo {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sg-collage-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 30%, transparent 70%, rgba(124, 58, 237, 0.3));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.sg-collage-photo:hover::after {
    opacity: 1;
}

/* Modernized stat cards with reflection */
.sg-collage-stat {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
    position: absolute;
}

.sg-collage-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.sg-collage-stat:hover::before {
    left: 150%;
}

.sg-collage-stat i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.sg-collage-stat > div {
    position: relative;
    z-index: 1;
}

.sg-card-num {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #4338ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.sg-card-text {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Editorial Footer */
.sg-editorial-footer {
    text-align: center;
    margin-top: 3.5rem;
    padding: 0 1rem;
}

.sg-footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.sg-footer-divider::before,
.sg-footer-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.4));
}

.sg-footer-divider::after {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.4), transparent);
}

.sg-footer-mark {
    color: #7c3aed;
    font-size: 1rem;
    opacity: 0.7;
}

.sg-editorial-quote {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.65;
    color: #475569;
    font-weight: 500;
    max-width: 760px;
    margin: 0 auto 2rem;
    font-style: normal;
    letter-spacing: -0.01em;
}

.sg-editorial-quote em {
    font-style: italic;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Modernize hashtag pills */
.sg-caption-tags {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 100px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

/* Dark mode editorial */
[data-theme="dark"] .sg-editorial-title {
    color: #f1f5f9;
}

[data-theme="dark"] .sg-editorial-event {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .sg-editorial-meta {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}

[data-theme="dark"] .sg-meta-pill {
    color: #cbd5e1;
}

[data-theme="dark"] .sg-meta-pill i {
    color: #a5b4fc;
}

[data-theme="dark"] .sg-collage-stat {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(124, 58, 237, 0.3);
}

[data-theme="dark"] .sg-card-num {
    background: linear-gradient(135deg, #f1f5f9 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .sg-card-text {
    color: #94a3b8;
}

[data-theme="dark"] .sg-editorial-quote {
    color: #cbd5e1;
}

[data-theme="dark"] .sg-caption-tags {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.4) 100%);
    border-color: rgba(124, 58, 237, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .sg-chapter-num { font-size: 2.2rem; }
    .sg-chapter-divider { width: 36px; }
    .sg-chapter-label { font-size: 0.7rem; letter-spacing: 0.2em; }
    .sg-editorial-meta {
        gap: 8px;
        padding: 10px 16px;
    }
    .sg-meta-pill { font-size: 0.78rem; }
    .sg-meta-dot { display: none; }
    .sg-footer-divider::before,
    .sg-footer-divider::after { width: 40px; }
}

/* ============================================================
   GITEX AI ASIA - Single Hero Photo Showcase
   ============================================================ */

.sg-hero-showcase {
    position: relative;
    max-width: 480px;
    margin: 0 auto 3rem;
    padding: 1rem;
}

.sg-hero-photo {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow:
        0 40px 100px -25px rgba(124, 58, 237, 0.45),
        0 20px 50px -20px rgba(220, 38, 38, 0.25),
        0 10px 30px -10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: rotate(-1.5deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}

.sg-hero-photo:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow:
        0 50px 120px -25px rgba(124, 58, 237, 0.55),
        0 25px 60px -20px rgba(220, 38, 38, 0.3),
        0 12px 30px -10px rgba(0, 0, 0, 0.18);
}

.sg-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-hero-photo:hover img {
    transform: scale(1.06);
}

.sg-hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.18) 0%,
        transparent 25%,
        transparent 70%,
        rgba(15, 23, 42, 0.55) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.sg-hero-photo-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.4);
}

.sg-hero-photo-tag i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.sg-hero-photo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.45) 0%, transparent 65%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
    animation: sgHeroGlow 5s ease-in-out infinite;
}

@keyframes sgHeroGlow {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.08); }
}

/* Reposition floating stats for single-photo layout */
.sg-hero-showcase .sg-collage-stat-1 {
    top: 8%;
    right: -32px;
}

.sg-hero-showcase .sg-collage-stat-2 {
    top: 50%;
    left: -36px;
    transform: translateY(-50%);
}

.sg-hero-showcase .sg-collage-stat-2 {
    animation: sgFloatCardCenter 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

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

.sg-hero-showcase .sg-collage-stat-3 {
    bottom: 10%;
    right: -28px;
}

/* Responsive */
@media (max-width: 768px) {
    .sg-hero-showcase {
        padding: 0.5rem;
    }

    .sg-hero-photo {
        aspect-ratio: 4 / 5;
        transform: rotate(0deg);
        border-radius: 24px;
    }

    .sg-hero-photo-tag {
        top: 14px;
        left: 14px;
        padding: 7px 13px;
        font-size: 0.7rem;
    }

    .sg-hero-showcase .sg-collage-stat-1 {
        top: -10px;
        right: 5%;
    }

    .sg-hero-showcase .sg-collage-stat-2 {
        top: auto;
        bottom: 35%;
        left: -5px;
        transform: translateY(0);
        animation: sgFloatCard 5s ease-in-out infinite;
        animation-delay: 1.5s;
    }

    .sg-hero-showcase .sg-collage-stat-3 {
        bottom: -10px;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .sg-hero-showcase .sg-collage-stat {
        padding: 10px 14px;
    }

    .sg-hero-showcase .sg-card-num {
        font-size: 1.15rem;
    }

    .sg-hero-showcase .sg-card-text {
        font-size: 0.65rem;
    }

    .sg-hero-showcase .sg-collage-stat i {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* ============================================================
   Merged Editorial - Inline Chapter Header (Chapter 02)
   ============================================================ */

.sg-editorial-header-inline {
    margin-top: 5rem;
    margin-bottom: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
    position: relative;
}

.sg-editorial-header-inline::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.sg-editorial-header-inline .sg-chapter-line {
    justify-content: center;
}

.sg-editorial-title-sub {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .sg-editorial-header-inline {
    border-top-color: rgba(196, 181, 253, 0.18);
}

/* Merged grid spacing */
.sg-highlights-grid-merged {
    margin-top: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .sg-editorial-header-inline {
        margin-top: 3.5rem;
        margin-bottom: 2rem;
        padding-top: 1.5rem;
    }

    .sg-editorial-title-sub {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .sg-editorial-title-sub {
        font-size: 1.4rem;
    }

    .sg-editorial-title-sub br {
        display: none;
    }
}

/* ============================================================
   Unified Editorial - Centered Label (No Chapter Number)
   ============================================================ */

.sg-editorial-header .sg-chapter-line {
    justify-content: center;
}

.sg-chapter-divider-left {
    /* mirror of right divider for symmetric centered label */
}

.sg-highlights-grid-merged {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
}

.sg-highlights-grid-merged::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

[data-theme="dark"] .sg-highlights-grid-merged {
    border-top-color: rgba(196, 181, 253, 0.15);
}

@media (max-width: 768px) {
    .sg-highlights-grid-merged {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
}

/* ============================================================
   Hero + About Merged Section
   ============================================================ */

.hero-merged .hero-content {
    text-align: center;
}

.hero-greeting {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 2.5rem auto 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    max-width: 900px;
}

.hero-greeting .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-merged .title-underline {
    margin: 0.75rem auto 1.25rem;
}

.hero-merged .hero-description {
    margin-bottom: 2.5rem;
}

/* Two-column layout: bio on left, contact on right */
.hero-about-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto 3.5rem;
    text-align: left;
}

.hero-bio {
    margin: 0;
}

.hero-bio p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero-bio p:last-child {
    margin-bottom: 0;
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.04), rgba(220, 38, 38, 0.04));
    border-radius: 18px;
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.hero-contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-contact-info .info-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

[data-theme="dark"] .hero-greeting {
    color: var(--text-dark);
}

[data-theme="dark"] .hero-contact-info {
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.08), rgba(248, 113, 113, 0.06));
    border-color: rgba(196, 181, 253, 0.18);
}

[data-theme="dark"] .hero-contact-info .info-item {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-about-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 700px;
    }

    .hero-greeting {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-greeting {
        font-size: 1.65rem;
        margin-top: 2rem;
    }

    .hero-merged .hero-description {
        margin-bottom: 2rem;
    }

    .hero-contact-info {
        padding: 1.25rem;
    }

    .hero-contact-info .info-item {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .hero-greeting {
        font-size: 1.4rem;
    }
}

/* ============================================================
   Get In Touch — Minimalist Redesign
   ============================================================ */

.get-in-touch-minimal {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.06), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05), transparent 45%),
        var(--bg-light);
}

.get-in-touch-minimal .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-card-minimal {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow:
        0 20px 60px -25px rgba(15, 23, 42, 0.12),
        0 8px 20px -10px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.contact-card-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 100px;
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-availability-pill .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: contactPulse 2s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.contact-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.contact-headline .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.contact-tagline {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Contact Pills Row */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.1rem;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 100px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-pill i {
    color: var(--primary);
    font-size: 0.95rem;
}

.contact-pill:hover:not(.contact-pill-static) {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -10px rgba(124, 58, 237, 0.3);
    color: var(--primary);
}

.contact-pill-static {
    cursor: default;
}

/* CTA Row */
.contact-cta-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-cta i {
    font-size: 1rem;
}

.contact-cta-primary {
    background: linear-gradient(135deg, #1f2937, #0f172a);
    color: white;
    box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.4);
}

.contact-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.5);
}

.contact-cta-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(148, 163, 184, 0.3);
}

.contact-cta-secondary:hover {
    background: rgba(124, 58, 237, 0.06);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Dark mode */
[data-theme="dark"] .contact-card-minimal {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(196, 181, 253, 0.15);
    backdrop-filter: blur(20px);
}

[data-theme="dark"] .contact-availability-pill {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

[data-theme="dark"] .contact-pill {
    background: rgba(148, 163, 184, 0.1);
    border-color: rgba(148, 163, 184, 0.2);
    color: var(--text-light);
}

[data-theme="dark"] .contact-pill:hover:not(.contact-pill-static) {
    background: rgba(196, 181, 253, 0.12);
    border-color: rgba(196, 181, 253, 0.4);
    color: #c4b5fd;
}

[data-theme="dark"] .contact-pill i {
    color: #c4b5fd;
}

[data-theme="dark"] .contact-cta-primary {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    color: #0f172a;
}

[data-theme="dark"] .contact-cta-secondary {
    color: var(--text-light);
    border-color: rgba(148, 163, 184, 0.25);
}

[data-theme="dark"] .contact-cta-secondary:hover {
    background: rgba(196, 181, 253, 0.1);
    border-color: #c4b5fd;
    color: #c4b5fd;
}

/* Responsive */
@media (max-width: 768px) {
    .get-in-touch-minimal {
        padding: 4rem 0;
    }

    .contact-card-minimal {
        padding: 3rem 1.5rem;
        border-radius: 22px;
    }

    .contact-headline {
        font-size: 1.9rem;
    }

    .contact-tagline {
        font-size: 0.92rem;
        margin-bottom: 2rem;
    }

    .contact-pill {
        font-size: 0.82rem;
        padding: 0.55rem 0.95rem;
    }

    .contact-cta {
        padding: 0.75rem 1.4rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .contact-headline {
        font-size: 1.6rem;
    }

    .contact-row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-pill {
        justify-content: center;
    }

    .contact-cta-row {
        flex-direction: column;
    }

    .contact-cta {
        justify-content: center;
    }
}

/* ============================================================
   Languages — Minimalist Redesign
   ============================================================ */

.languages-minimal {
    padding: 5rem 0;
    background: var(--bg-light);
}

.languages-minimal .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.languages-header {
    text-align: center;
    margin-bottom: 3rem;
}

.languages-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.languages-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}

/* Row of 3 sleek cards */
.languages-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.lang-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.lang-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.18);
    border-color: rgba(124, 58, 237, 0.25);
}

.lang-pill-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.lang-pill-icon.khmer {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.lang-pill-icon.english {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.lang-pill-icon.korean {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.lang-pill-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lang-pill-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.lang-pill-level {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Proficiency bar - bottom strip */
.lang-pill-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(148, 163, 184, 0.15);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    overflow: hidden;
}

.lang-pill-fill {
    display: block;
    height: 100%;
    border-bottom-left-radius: 18px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode */
[data-theme="dark"] .lang-pill {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(196, 181, 253, 0.15);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .lang-pill:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(196, 181, 253, 0.3);
}

[data-theme="dark"] .languages-eyebrow {
    color: #c4b5fd;
}

[data-theme="dark"] .lang-pill-icon.khmer {
    background: rgba(248, 113, 113, 0.15);
    color: #fca5a5;
}

[data-theme="dark"] .lang-pill-icon.english {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

[data-theme="dark"] .lang-pill-icon.korean {
    background: rgba(196, 181, 253, 0.15);
    color: #c4b5fd;
}

[data-theme="dark"] .lang-pill-bar {
    background: rgba(148, 163, 184, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .languages-minimal {
        padding: 3.5rem 0;
    }

    .languages-headline {
        font-size: 1.75rem;
    }

    .languages-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .lang-pill {
        padding: 1.15rem 1.25rem;
    }

    .lang-pill-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .lang-pill-info h3 {
        font-size: 1rem;
    }
}

/* ============================================================
   Event Highlights — Auto-Scrolling Marquee
   ============================================================ */

.sg-highlights-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Edge fade masks for clean entry/exit */
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        rgba(0, 0, 0, 1) 6%,
        rgba(0, 0, 0, 1) 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0,
        rgba(0, 0, 0, 1) 6%,
        rgba(0, 0, 0, 1) 94%,
        transparent 100%
    );
}

.sg-highlights-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 1rem 0.5rem;
    animation: sgHighlightsScroll 50s linear infinite;
    will-change: transform;
}

/* Pause on hover so users can read */
.sg-highlights-marquee:hover .sg-highlights-track {
    animation-play-state: paused;
}

/* Override grid card sizing for the horizontal track */
.sg-highlights-track .sg-highlight-card {
    flex: 0 0 420px;
    width: 420px;
    margin: 0;
    aspect-ratio: 4 / 5;
}

@keyframes sgHighlightsScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* Move by the width of one set (6 cards + 6 gaps) */
        transform: translate3d(calc(-50% - 0.75rem), 0, 0);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .sg-highlights-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .sg-highlights-track .sg-highlight-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .sg-highlights-track .sg-highlight-card {
        flex: 0 0 360px;
        width: 360px;
    }

    .sg-highlights-track {
        animation-duration: 45s;
    }
}

@media (max-width: 768px) {
    .sg-highlights-track .sg-highlight-card {
        flex: 0 0 310px;
        width: 310px;
    }

    .sg-highlights-track {
        gap: 1rem;
        animation-duration: 40s;
    }

    .sg-highlights-marquee {
        -webkit-mask-image: linear-gradient(
            90deg,
            transparent 0,
            rgba(0, 0, 0, 1) 4%,
            rgba(0, 0, 0, 1) 96%,
            transparent 100%
        );
        mask-image: linear-gradient(
            90deg,
            transparent 0,
            rgba(0, 0, 0, 1) 4%,
            rgba(0, 0, 0, 1) 96%,
            transparent 100%
        );
    }
}

@media (max-width: 480px) {
    .sg-highlights-track .sg-highlight-card {
        flex: 0 0 270px;
        width: 270px;
    }
}

/* ============================================================
   GITEX Hero — Enhanced Glassmorphism
   ============================================================ */

/* Soften the dark overlay so background colors shine through the glass */
.sg-hero-overlay {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.35) 0%, rgba(124, 58, 237, 0.32) 50%, rgba(220, 38, 38, 0.4) 100%),
        radial-gradient(ellipse at 20% 30%, rgba(168, 85, 247, 0.4), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(244, 114, 182, 0.3), transparent 60%),
        linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.55) 100%) !important;
}

/* Enhanced hero card edges */
.sg-hero {
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow:
        0 50px 120px -30px rgba(124, 58, 237, 0.55),
        0 25px 60px -20px rgba(220, 38, 38, 0.35),
        0 10px 30px -10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* THE GLASS PANEL — the centerpiece of the new look */
.sg-hero-glass-panel {
    position: relative;
    max-width: 760px;
    width: 100%;
    padding: 2.5rem 2.75rem 2.25rem;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.35),
        0 12px 30px -10px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Subtle gradient border using mask (prismatic edge) */
.sg-hero-glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6),
        rgba(251, 191, 36, 0.2) 30%,
        rgba(124, 58, 237, 0.15) 60%,
        rgba(255, 255, 255, 0.45)
    );
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* Top inner highlight — like light reflecting off glass */
.sg-glass-highlight {
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    z-index: 1;
}

.sg-glass-highlight::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18) 0%,
        transparent 100%
    );
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animated shimmer that sweeps across the glass */
.sg-glass-shimmer {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 35%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.06) 65%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: sgGlassShimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

/* Make sure the content is above the glass effects */
.sg-hero-glass-panel > .sg-flag-pill,
.sg-hero-glass-panel > .sg-hero-title,
.sg-hero-glass-panel > .sg-hero-subtitle,
.sg-hero-glass-panel > .sg-hero-meta {
    position: relative;
    z-index: 2;
}

/* Tighten internal spacing for the glass panel */
.sg-hero-glass-panel .sg-flag-pill {
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.45);
}

.sg-hero-glass-panel .sg-hero-title {
    font-size: 3.1rem;
    margin-bottom: 0.85rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sg-hero-glass-panel .sg-hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.sg-hero-glass-panel .sg-hero-meta {
    margin: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 12px 30px -10px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Enhance the floating icons to feel like glass orbs */
.sg-float-icon {
    background: rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
        0 12px 32px -8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sg-float-icon::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    right: 30%;
    height: 30%;
    border-radius: 50% 50% 30% 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .sg-hero-glass-panel {
        padding: 2rem 1.5rem 1.75rem;
        border-radius: 22px;
        max-width: calc(100% - 1rem);
    }

    .sg-hero-glass-panel .sg-hero-title {
        font-size: 2rem;
    }

    .sg-hero-glass-panel .sg-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sg-hero-glass-panel {
        padding: 1.5rem 1.1rem 1.25rem;
    }

    .sg-hero-glass-panel .sg-hero-title {
        font-size: 1.5rem;
    }

    .sg-hero-glass-panel .sg-flag-pill {
        font-size: 0.7rem;
        padding: 8px 14px;
    }
}

/* ============================================================
   Hero Showcase — Live Background Stage + Glassy Badges
   ============================================================ */

.sg-hero-showcase {
    position: relative;
    isolation: isolate;
    padding: 2.5rem 1rem 2.5rem;
}

/* Live animated background stage */
.sg-stage-bg {
    position: absolute;
    inset: -2rem -2rem;
    z-index: -1;
    overflow: hidden;
    border-radius: 36px;
    pointer-events: none;
}

/* Animated colorful blobs */
.sg-stage-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

.sg-stage-blob-1 {
    width: 360px;
    height: 360px;
    top: 5%;
    left: -8%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.55), transparent 70%);
    animation: sgStageBlobA 14s ease-in-out infinite;
}

.sg-stage-blob-2 {
    width: 420px;
    height: 420px;
    bottom: 0;
    right: -10%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.5), transparent 70%);
    animation: sgStageBlobB 16s ease-in-out infinite;
    animation-delay: 2s;
}

.sg-stage-blob-3 {
    width: 320px;
    height: 320px;
    top: 35%;
    left: 35%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.45), transparent 70%);
    animation: sgStageBlobC 18s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes sgStageBlobA {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    33% { transform: translate(60px, 40px) scale(1.15); opacity: 0.95; }
    66% { transform: translate(-20px, 80px) scale(0.95); opacity: 0.6; }
}

@keyframes sgStageBlobB {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
    50% { transform: translate(-70px, -50px) scale(1.2); opacity: 0.9; }
}

@keyframes sgStageBlobC {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(-40px, 30px) scale(1.1); opacity: 0.8; }
    66% { transform: translate(50px, -40px) scale(0.9); opacity: 0.4; }
}

/* Faint grid/dot pattern */
.sg-stage-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18) 1px, transparent 1.5px),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.12) 1px, transparent 1.5px);
    background-size: 36px 36px, 56px 56px;
    background-position: 0 0, 18px 18px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    opacity: 0.6;
    animation: sgStageGridDrift 30s linear infinite;
}

@keyframes sgStageGridDrift {
    0% { background-position: 0 0, 18px 18px; }
    100% { background-position: 36px 36px, 54px 54px; }
}

/* Floating particles */
.sg-stage-particles {
    position: absolute;
    inset: 0;
}

.sg-stage-particles span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(196, 181, 253, 0.7));
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: sgParticleFloat 12s linear infinite;
}

.sg-stage-particles span:nth-child(1)  { left: 8%;  bottom: -10px; animation-delay: 0s;   width: 5px; height: 5px; }
.sg-stage-particles span:nth-child(2)  { left: 22%; bottom: -10px; animation-delay: 1.2s; width: 8px; height: 8px; }
.sg-stage-particles span:nth-child(3)  { left: 38%; bottom: -10px; animation-delay: 2.5s; width: 4px; height: 4px; }
.sg-stage-particles span:nth-child(4)  { left: 55%; bottom: -10px; animation-delay: 0.8s; width: 7px; height: 7px; }
.sg-stage-particles span:nth-child(5)  { left: 68%; bottom: -10px; animation-delay: 3.2s; width: 5px; height: 5px; }
.sg-stage-particles span:nth-child(6)  { left: 82%; bottom: -10px; animation-delay: 1.8s; width: 6px; height: 6px; }
.sg-stage-particles span:nth-child(7)  { left: 92%; bottom: -10px; animation-delay: 4.5s; width: 4px; height: 4px; }
.sg-stage-particles span:nth-child(8)  { left: 15%; bottom: -10px; animation-delay: 5.5s; width: 5px; height: 5px; }
.sg-stage-particles span:nth-child(9)  { left: 30%; bottom: -10px; animation-delay: 6.8s; width: 7px; height: 7px; }
.sg-stage-particles span:nth-child(10) { left: 48%; bottom: -10px; animation-delay: 7.2s; width: 4px; height: 4px; }
.sg-stage-particles span:nth-child(11) { left: 62%; bottom: -10px; animation-delay: 8.5s; width: 6px; height: 6px; }
.sg-stage-particles span:nth-child(12) { left: 76%; bottom: -10px; animation-delay: 9.8s; width: 5px; height: 5px; }

@keyframes sgParticleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.6);
    }
    10% {
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50vh) translateX(20px) scale(1);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(-15px) scale(0.4);
    }
}

/* Soft conic light rays radiating from center */
.sg-stage-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.04) 30deg,
        transparent 60deg,
        rgba(255, 255, 255, 0.06) 120deg,
        transparent 150deg,
        rgba(196, 181, 253, 0.04) 220deg,
        transparent 250deg,
        rgba(244, 114, 182, 0.05) 320deg,
        transparent 360deg
    );
    mask-image: radial-gradient(circle, transparent 30%, black 50%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, transparent 30%, black 50%, transparent 80%);
    animation: sgRaysSpin 60s linear infinite;
    opacity: 0.7;
}

@keyframes sgRaysSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================================
   GLASSY STAT BADGES — frosted look with prismatic edges
   ============================================================ */
.sg-collage-stat {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.25) 100%
    ) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow:
        0 25px 60px -15px rgba(124, 58, 237, 0.4),
        0 10px 25px -10px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15) !important;
    overflow: hidden;
    isolation: isolate;
}

/* Prismatic gradient border (subtle rainbow edge) */
.sg-collage-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(251, 191, 36, 0.4) 25%,
        rgba(124, 58, 237, 0.35) 50%,
        rgba(244, 114, 182, 0.4) 75%,
        rgba(255, 255, 255, 0.85)
    );
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* Subtle glass shine — top inner highlight */
.sg-collage-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.35) 0%,
        transparent 100%
    );
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    pointer-events: none;
    z-index: 0;
}

/* Make sure content sits on top of glass effects */
.sg-collage-stat > i,
.sg-collage-stat > div {
    position: relative;
    z-index: 1;
}

/* Glass photo frame — soft halo around the photo */
.sg-hero-photo {
    box-shadow:
        0 50px 130px -30px rgba(124, 58, 237, 0.55),
        0 25px 60px -20px rgba(244, 114, 182, 0.35),
        0 10px 30px -10px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Dark mode adjustments for glassy badges */
[data-theme="dark"] .sg-collage-stat {
    background: linear-gradient(
        135deg,
        rgba(30, 41, 59, 0.55) 0%,
        rgba(15, 23, 42, 0.35) 100%
    ) !important;
    border-color: rgba(196, 181, 253, 0.3) !important;
    box-shadow:
        0 25px 60px -15px rgba(124, 58, 237, 0.5),
        0 10px 25px -10px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .sg-card-num {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .sg-card-text {
    color: #cbd5e1 !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sg-stage-blob,
    .sg-stage-grid,
    .sg-stage-particles span,
    .sg-stage-rays {
        animation: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sg-hero-showcase {
        padding: 1.5rem 0.5rem;
    }

    .sg-stage-bg {
        inset: -1rem -1rem;
        border-radius: 24px;
    }

    .sg-stage-blob-1 { width: 240px; height: 240px; }
    .sg-stage-blob-2 { width: 280px; height: 280px; }
    .sg-stage-blob-3 { width: 200px; height: 200px; }
}

/* ============================================================
   Highlights Carousel — Manual Prev/Next Buttons
   ============================================================ */

.sg-highlights-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.sg-highlights-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

[data-theme="dark"] .sg-highlights-wrapper {
    border-top-color: rgba(196, 181, 253, 0.15);
}

/* When wrapper is used, the inner marquee no longer needs the merged margin/border */
.sg-highlights-wrapper .sg-highlights-marquee {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.sg-highlights-wrapper .sg-highlights-marquee::before {
    display: none;
}

/* Manual track control (overrides infinite CSS animation) */
.sg-highlights-wrapper .sg-highlights-track {
    animation: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

/* Glassy round nav buttons */
.sg-marquee-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.65) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 16px 40px -12px rgba(124, 58, 237, 0.35),
        0 6px 14px -6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                background 0.3s ease,
                color 0.3s ease;
}

.sg-marquee-btn i {
    pointer-events: none;
}

.sg-marquee-prev {
    left: 1rem;
}

.sg-marquee-next {
    right: 1rem;
}

.sg-marquee-btn:hover {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow:
        0 20px 50px -12px rgba(124, 58, 237, 0.55),
        0 8px 18px -6px rgba(220, 38, 38, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.sg-marquee-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.sg-marquee-btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Dark mode buttons */
[data-theme="dark"] .sg-marquee-btn {
    background: linear-gradient(
        135deg,
        rgba(30, 41, 59, 0.7) 0%,
        rgba(15, 23, 42, 0.5) 100%
    );
    color: #f1f5f9;
    border-color: rgba(196, 181, 253, 0.35);
    box-shadow:
        0 16px 40px -12px rgba(124, 58, 237, 0.45),
        0 6px 14px -6px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .sg-marquee-btn:hover {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    color: #0f172a;
}

/* Responsive */
@media (max-width: 992px) {
    .sg-marquee-btn {
        width: 46px;
        height: 46px;
    }

    .sg-marquee-prev {
        left: 0.5rem;
    }

    .sg-marquee-next {
        right: 0.5rem;
    }
}

@media (max-width: 600px) {
    .sg-marquee-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .sg-marquee-prev {
        left: 0.25rem;
    }

    .sg-marquee-next {
        right: 0.25rem;
    }
}

/* ============================================================
   Chapter Ribbon — Slim Divider Between Hero & Showcase
   ============================================================ */

.sg-chapter-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 1rem auto 2.5rem;
    text-align: center;
}

.sg-chapter-ribbon .sg-chapter-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.sg-chapter-ribbon .sg-chapter-divider-left {
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.sg-chapter-ribbon .sg-chapter-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    white-space: nowrap;
}

[data-theme="dark"] .sg-chapter-ribbon .sg-chapter-label {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-chapter-ribbon .sg-chapter-divider,
[data-theme="dark"] .sg-chapter-ribbon .sg-chapter-divider-left {
    background: linear-gradient(90deg, transparent, #c4b5fd, transparent);
}

@media (max-width: 768px) {
    .sg-chapter-ribbon {
        margin: 0.5rem auto 2rem;
        gap: 10px;
    }

    .sg-chapter-ribbon .sg-chapter-divider {
        width: 32px;
    }

    .sg-chapter-ribbon .sg-chapter-label {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }
}

/* ============================================================
   GITEX Editorial Header — Magazine-Style Spread
   ============================================================ */

.sg-editorial-magazine {
    max-width: 760px;
    margin: 0 auto 3rem;
    padding: 2rem 1.5rem 0;
}

/* Masthead — Issue / Edition / Volume */
.sg-masthead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0.75rem 1.25rem;
    margin: 0 auto 1.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
    max-width: max-content;
    color: rgba(15, 23, 42, 0.65);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sg-masthead-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.sg-masthead-item strong {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.sg-masthead-center {
    color: var(--text-dark);
    font-weight: 600;
}

.sg-masthead-center i {
    color: var(--secondary);
    font-size: 0.78rem;
}

.sg-masthead-rule {
    width: 24px;
    height: 1px;
    background: rgba(15, 23, 42, 0.2);
}

/* Refined chapter line with twin ornaments */
.sg-chapter-line-fancy {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.sg-chapter-line-fancy .sg-chapter-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
}

.sg-chapter-ornament {
    color: var(--primary);
    font-size: 0.8rem;
    line-height: 1;
    transform: translateY(-1px);
}

.sg-chapter-line-fancy .sg-chapter-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    white-space: nowrap;
}

/* Italic editorial tagline */
.sg-editorial-tagline {
    max-width: 600px;
    margin: 1.25rem auto 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(15, 23, 42, 0.72);
    font-style: italic;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.sg-tagline-mark {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
    flex-shrink: 0;
    line-height: 1.5;
}

.sg-editorial-tagline em {
    font-style: italic;
}

/* Decorative connector arrow leading to the photo */
.sg-editorial-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto 0;
    gap: 6px;
    color: var(--primary);
    opacity: 0.85;
}

.sg-connector-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, var(--primary));
}

.sg-connector-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
    animation: sgConnectorPulse 2.4s ease-in-out infinite;
}

@keyframes sgConnectorPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(124, 58, 237, 0.05); }
}

.sg-connector-arrow {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sgConnectorBounce 2.4s ease-in-out infinite;
}

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

/* Slightly reduce title size in magazine layout to balance with masthead */
.sg-editorial-magazine .sg-editorial-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.sg-editorial-magazine .sg-editorial-meta {
    margin-top: 0;
}

/* Dark mode */
[data-theme="dark"] .sg-masthead {
    border-top-color: rgba(241, 245, 249, 0.15);
    border-bottom-color: rgba(241, 245, 249, 0.15);
    color: rgba(241, 245, 249, 0.65);
}

[data-theme="dark"] .sg-masthead-rule {
    background: rgba(241, 245, 249, 0.2);
}

[data-theme="dark"] .sg-masthead-item strong {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-masthead-center {
    color: #f1f5f9;
}

[data-theme="dark"] .sg-masthead-center i {
    color: #f87171;
}

[data-theme="dark"] .sg-chapter-line-fancy .sg-chapter-label,
[data-theme="dark"] .sg-chapter-ornament {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-chapter-line-fancy .sg-chapter-divider {
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.5), transparent);
}

[data-theme="dark"] .sg-editorial-tagline {
    color: rgba(241, 245, 249, 0.72);
}

[data-theme="dark"] .sg-tagline-mark {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-editorial-connector {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-connector-line {
    background: linear-gradient(180deg, transparent, #c4b5fd);
}

[data-theme="dark"] .sg-connector-dot {
    background: #c4b5fd;
    box-shadow: 0 0 0 4px rgba(196, 181, 253, 0.18);
}

[data-theme="dark"] @keyframes sgConnectorPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(196, 181, 253, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(196, 181, 253, 0.06); }
}

/* Responsive */
@media (max-width: 768px) {
    .sg-editorial-magazine {
        padding: 1.5rem 1rem 0;
    }

    .sg-masthead {
        gap: 8px;
        padding: 0.6rem 1rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .sg-masthead-rule {
        width: 14px;
    }

    .sg-masthead-center i {
        font-size: 0.68rem;
    }

    .sg-chapter-line-fancy .sg-chapter-divider {
        width: 30px;
    }

    .sg-chapter-line-fancy .sg-chapter-label {
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .sg-editorial-tagline {
        font-size: 0.92rem;
        margin: 1rem auto 1.25rem;
    }

    .sg-editorial-connector {
        margin-top: 1.5rem;
    }

    .sg-connector-line {
        height: 24px;
    }
}

@media (max-width: 480px) {
    .sg-masthead {
        flex-wrap: wrap;
        max-width: 100%;
    }

    .sg-masthead-rule {
        display: none;
    }

    .sg-masthead-center {
        order: -1;
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 4px;
    }
}

/* ============================================================
   Highlight Cards — Magazine-Style Editorial Redesign
   ============================================================ */

/* Card itself: refined frame with subtle inner border */
.sg-highlights-track .sg-highlight-card {
    border-radius: 22px;
    overflow: hidden !important;
    isolation: isolate;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease;
    box-shadow:
        0 24px 50px -20px rgba(15, 23, 42, 0.4),
        0 8px 20px -10px rgba(15, 23, 42, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sg-highlights-track .sg-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 36px 70px -20px rgba(124, 58, 237, 0.5),
        0 12px 30px -10px rgba(15, 23, 42, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Refined image overlay — better gradient for text legibility */
.sg-highlights-track .sg-card-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.05) 35%,
        rgba(15, 23, 42, 0.55) 75%,
        rgba(15, 23, 42, 0.85) 100%
    ) !important;
}

/* Magazine chapter number — top-left corner
   IMPORTANT: explicitly reset inset/right/bottom because the inherited
   .sg-highlight-card::before rule sets inset: 0 (full-card overlay).
   We override that AND opacity so the badge appears as a small pill,
   not a hover-triggered full-card blur overlay. */
.sg-highlights-track .sg-highlight-card::before {
    position: absolute;
    top: 18px;
    left: 18px;
    right: auto !important;
    bottom: auto !important;
    inset: auto auto auto auto !important;
    width: auto;
    height: auto;
    z-index: 4;
    padding: 6px 11px;
    border-radius: 100px;
    background: rgba(15, 23, 42, 0.55) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    opacity: 1 !important;
}

/* Disable the inherited hover overlay rule that was making the badge cover the card */
.sg-highlights-track .sg-highlight-card:hover::before {
    opacity: 1 !important;
}

.sg-highlights-track .sg-card-summit::before  { content: 'No.\00a0 01'; }
.sg-highlights-track .sg-card-marina::before  { content: 'No.\00a0 02'; }
.sg-highlights-track .sg-card-changi::before  { content: 'No.\00a0 03'; }
.sg-highlights-track .sg-card-gardens::before { content: 'No.\00a0 04'; }
.sg-highlights-track .sg-card-network::before { content: 'No.\00a0 05'; }
.sg-highlights-track .sg-card-merlion::before { content: 'No.\00a0 06'; }

/* Refined tag pill — more editorial, glass-tone */
.sg-highlights-track .sg-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.sg-highlights-track .sg-card-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 6px rgba(124, 58, 237, 0.7);
}

.sg-highlights-track .sg-card-tag.featured {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(249, 115, 22, 0.2));
    border-color: rgba(251, 191, 36, 0.5);
    color: #fef3c7;
}

.sg-highlights-track .sg-card-tag.featured::before {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.9);
}

/* Title — refined typography + animated accent line beneath */
.sg-highlights-track .sg-card-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 0.7rem;
}

.sg-highlights-track .sg-card-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f97316);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-highlights-track .sg-highlight-card:hover .sg-card-content h4::after {
    width: 80px;
}

/* "Read article" hint — appears on hover */
.sg-highlights-track .sg-highlight-card::after {
    content: 'Read article \003E';
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 4;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.sg-highlights-track .sg-highlight-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Refined icon circle — better integrated with magazine aesthetic */
.sg-highlights-track .sg-card-icon-circle {
    top: 18px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
    box-shadow:
        0 10px 25px -8px rgba(15, 23, 42, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sg-highlights-track .sg-card-icon-circle i {
    font-size: 0.95rem !important;
}

/* Card content — better hover description spacing */
.sg-highlights-track .sg-card-content {
    padding: 1.5rem 1.5rem 1.5rem !important;
}

.sg-highlights-track .sg-card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.86rem;
    line-height: 1.55;
}

/* Subtle "scan line" shimmer on hover (over photo) */
.sg-highlights-track .sg-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sg-highlights-track .sg-highlight-card:hover .sg-card-image::after {
    left: 150%;
}

/* Dark mode */
[data-theme="dark"] .sg-highlights-track .sg-highlight-card::before {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(196, 181, 253, 0.3);
}

[data-theme="dark"] .sg-highlights-track .sg-highlight-card::after {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(196, 181, 253, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
    .sg-highlights-track .sg-highlight-card::before {
        font-size: 0.6rem;
        padding: 5px 9px;
        top: 14px;
        left: 14px;
    }

    .sg-highlights-track .sg-card-icon-circle {
        top: 14px !important;
        right: 14px !important;
        width: 34px !important;
        height: 34px !important;
    }

    .sg-highlights-track .sg-card-content h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .sg-highlights-track .sg-highlight-card::before {
        font-size: 0.55rem;
        padding: 4px 8px;
    }

    .sg-highlights-track .sg-card-content h4 {
        font-size: 1.1rem;
    }

    .sg-highlights-track .sg-highlight-card::after {
        font-size: 0.6rem;
        bottom: 14px;
        right: 14px;
    }
}

/* ============================================================
   Highlight Card Hover — Cleaner, Less Aggressive
   ============================================================ */

/* Override the inherited heavy hover overlay — keep the photo visible */
.sg-highlights-track .sg-highlight-card:hover .sg-card-image-overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.1) 35%,
        rgba(15, 23, 42, 0.6) 75%,
        rgba(15, 23, 42, 0.88) 100%
    ) !important;
}

/* Don't expand the description on hover — title + tag are enough */
.sg-highlights-track .sg-highlight-card:hover .sg-card-content p {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
}

/* Hide the description paragraph entirely in the carousel cards */
.sg-highlights-track .sg-card-content p {
    display: none;
}

/* Reduce the over-zoom on the image on hover — subtle is better */
.sg-highlights-track .sg-highlight-card:hover .sg-card-image img {
    transform: scale(1.05) !important;
}

/* Don't spin the icon 360° on hover — too distracting; just lift */
.sg-highlights-track .sg-highlight-card:hover .sg-card-icon-circle {
    transform: scale(1.08) !important;
}

/* Make sure the "Read article" hint doesn't overlap the title at the bottom */
.sg-highlights-track .sg-card-content {
    padding-bottom: 4rem !important;
}

/* ============================================================
   Magazine Feature Spread — Photo + "In This Issue" Index
   ============================================================ */

.sg-feature-spread {
    display: grid;
    grid-template-columns: minmax(340px, 420px) 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 1rem;
}

/* LEFT COLUMN — Photo feature (reuses existing .sg-hero-photo, .sg-stage-bg, .sg-collage-stat) */
.sg-spread-feature {
    position: relative;
    isolation: isolate;
    padding: 1.5rem 1rem;
}

/* Override sg-hero-showcase positioning to use within the spread */
.sg-spread-feature .sg-stage-bg {
    position: absolute;
    inset: -1rem;
    z-index: -1;
    overflow: hidden;
    border-radius: 36px;
    pointer-events: none;
}

.sg-spread-feature .sg-hero-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow:
        0 40px 100px -25px rgba(124, 58, 237, 0.5),
        0 20px 50px -20px rgba(244, 114, 182, 0.3),
        0 10px 30px -10px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: rotate(-1.2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-spread-feature .sg-hero-photo:hover {
    transform: rotate(0deg) scale(1.02);
}

.sg-spread-feature .sg-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-spread-feature .sg-hero-photo:hover img {
    transform: scale(1.05);
}

/* Reposition floating badges relative to the spread feature column */
.sg-spread-feature .sg-collage-stat-1 {
    top: 6%;
    right: -28px;
    animation: sgFloatCard 5s ease-in-out infinite;
}
.sg-spread-feature .sg-collage-stat-2 {
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    animation: sgFloatCardCenter 5s ease-in-out infinite;
    animation-delay: 1.5s;
}
.sg-spread-feature .sg-collage-stat-3 {
    bottom: 8%;
    right: -22px;
    animation: sgFloatCard 5s ease-in-out infinite;
    animation-delay: 3s;
}

/* RIGHT COLUMN — "In This Issue" Index */
.sg-spread-index {
    position: relative;
    padding-top: 1rem;
}

/* Index header */
.sg-index-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.sg-index-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.sg-index-title {
    flex: 1;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.sg-index-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.55);
}

/* Index list */
.sg-index-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.sg-index-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.sg-index-item:last-child {
    border-bottom: none;
}

.sg-index-link {
    display: grid;
    grid-template-columns: 36px 64px 1fr 24px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: padding 0.3s ease, background 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.sg-index-link:hover {
    padding-left: 1rem;
    padding-right: 1rem;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.04), transparent 80%);
}

/* Chapter number — magazine drop-cap style */
.sg-index-num {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.25);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sg-index-link:hover .sg-index-num {
    color: var(--primary);
    transform: translateX(2px);
}

/* Photo thumbnail */
.sg-index-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937, #111827);
    box-shadow:
        0 8px 20px -8px rgba(15, 23, 42, 0.3),
        0 2px 6px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sg-index-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sg-index-link:hover .sg-index-thumb {
    transform: scale(1.05) rotate(-2deg);
}

.sg-index-link:hover .sg-index-thumb img {
    transform: scale(1.1);
}

/* Text column */
.sg-index-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sg-index-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1;
}

.sg-index-tag.featured {
    color: #d97706;
}

.sg-index-tag i {
    font-size: 0.7rem;
}

.sg-index-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
}

.sg-index-link:hover .sg-index-heading {
    color: var(--primary);
}

.sg-index-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(15, 23, 42, 0.6);
    margin: 0;
}

/* Arrow */
.sg-index-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 23, 42, 0.3);
    font-size: 0.85rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sg-index-link:hover .sg-index-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* DARK MODE */
[data-theme="dark"] .sg-index-header {
    border-bottom-color: rgba(241, 245, 249, 0.15);
}

[data-theme="dark"] .sg-index-mark {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-index-title {
    color: #f1f5f9;
}

[data-theme="dark"] .sg-index-count {
    color: rgba(241, 245, 249, 0.5);
}

[data-theme="dark"] .sg-index-item {
    border-bottom-color: rgba(241, 245, 249, 0.1);
}

[data-theme="dark"] .sg-index-num {
    color: rgba(241, 245, 249, 0.25);
}

[data-theme="dark"] .sg-index-link:hover .sg-index-num {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-index-tag {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-index-tag.featured {
    color: #fbbf24;
}

[data-theme="dark"] .sg-index-heading {
    color: #f1f5f9;
}

[data-theme="dark"] .sg-index-link:hover .sg-index-heading {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-index-desc {
    color: rgba(241, 245, 249, 0.6);
}

[data-theme="dark"] .sg-index-arrow {
    color: rgba(241, 245, 249, 0.3);
}

[data-theme="dark"] .sg-index-link:hover .sg-index-arrow {
    color: #c4b5fd;
}

[data-theme="dark"] .sg-index-link:hover {
    background: linear-gradient(90deg, rgba(196, 181, 253, 0.08), transparent 80%);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sg-feature-spread {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0.5rem;
    }

    .sg-spread-feature {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .sg-index-link {
        grid-template-columns: 28px 52px 1fr 20px;
        gap: 0.75rem;
        padding: 0.85rem 0.5rem;
    }

    .sg-index-num {
        font-size: 1.4rem;
    }

    .sg-index-thumb {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .sg-index-heading {
        font-size: 1.05rem;
    }

    .sg-index-desc {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .sg-index-tag {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .sg-index-title {
        font-size: 1.2rem;
    }

    .sg-index-mark {
        font-size: 1.6rem;
    }
}
