/*
Theme Name: Swot
Theme URI: https://www.swot.shakedeal.co.il/
Author: Tiran Moyal
Author URI: https://www.swot.shakedeal.co.il/
Description: Custom Design Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Construction, Building
Text Domain: swot
*/

/* ============================================
   SWOT Quality Solutions - Main Stylesheet
   ============================================ */

/* ============================================
   CSS Variables & Root
   ============================================ */
:root {
    /* Dark Theme Colors */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-glass: rgba(18, 18, 26, 0.7);
    
    /* Accent Colors */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-cyan: #22d3ee;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    
    /* Navy Theme Colors */
    --navy-dark: #0a1628;
    --navy-primary: #1a3a5c;
    --navy-medium: #2d5a7b;
    --blue-accent: #3d8bbd;
    --blue-light: #5ba3d0;
    --blue-glow: #7ec8e3;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-dark: #1e293b;
    
    /* Utility Colors */
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray-medium: #e2e8f0;
    --border-color: rgba(255, 255, 255, 0.1);
    --glow-primary: rgba(99, 102, 241, 0.5);
    --glow-cyan: rgba(34, 211, 238, 0.5);
    --success: #10b981;
    --warning: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Dark Theme Body */
body.dark-theme {
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* Light Theme Body */
body.light-theme {
    background: var(--white);
    color: var(--text-dark);
}

/* ============================================
   Custom Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

body.light-theme::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
}

body.light-theme::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--navy-primary), var(--blue-accent));
    border-radius: 4px;
}

/* ============================================
   Cursor Glow Effect (Dark Theme)
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ============================================
   Background Animations (Dark Theme)
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    top: -200px;
    right: -200px;
    opacity: 0.15;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-primary));
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    top: 50%;
    left: 50%;
    opacity: 0.08;
    animation-delay: -10s;
}

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

/* ============================================
   Navigation - Dark Theme
   ============================================ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Navigation - Light Theme */
.navbar.light {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 1.5rem 5%;
    background: rgba(10, 22, 40, 0.95);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-decoration: none;
}

.dark-theme .logo-text {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--blue-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.dark-theme .nav-links {
    gap: 0.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.dark-theme .nav-links a {
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-accent), var(--blue-glow));
    transition: width 0.3s ease;
}

.dark-theme .nav-links a::after {
    display: none;
}

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

.dark-theme .nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    padding: 0.8rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 139, 189, 0.3);
}

.dark-theme .nav-cta {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

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

.dark-theme .nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(61, 139, 189, 0.5);
}

.dark-theme .nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    transition: right 0.4s ease;
}

.dark-theme .mobile-menu {
    background: var(--bg-dark);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.menu-close {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.menu-close span {
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--white);
    top: 50%;
    left: 50%;
}

.menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ============================================
   Page Header (Light Theme Pages)
   ============================================ */
.page-header {
    padding: 180px 5% 100px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-medium) 100%);
    position: relative;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header.with-image {
    background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.page-header.with-image::before {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(26, 58, 92, 0.88));
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

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

/* ============================================
   Hero Section (Dark Theme)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
}

.hero.light-hero {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero.light-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 58, 92, 0.88) 50%, rgba(45, 90, 123, 0.85) 100%);
    z-index: 1;
}

.hero.light-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.light-hero .hero-content {
    padding: 0 10%;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.light-hero .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--blue-light);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.light-hero .hero-badge::before {
    background: var(--blue-light);
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.light-hero .hero-title {
    color: var(--white);
    opacity: 1;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.light-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.light-hero .hero-buttons {
    opacity: 1;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.light-hero .hero-stats {
    opacity: 1;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-hero .stat-number {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.light-hero .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-card-stack {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.card-1 {
    top: 0;
    right: 0;
    width: 280px;
    animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
    top: 120px;
    right: 200px;
    width: 320px;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: -2s;
}

.card-3 {
    top: 280px;
    right: 50px;
    width: 260px;
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: -4s;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-cyan));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.floating-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-progress {
    margin-top: 1rem;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.card-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-primary));
    border-radius: 3px;
    animation: progressAnim 3s ease-in-out infinite;
}

@keyframes progressAnim {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

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

/* Stats Bar (Light Theme) */
.stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    gap: 5rem;
    z-index: 10;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.light-theme .btn-primary {
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(61, 139, 189, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--glow-primary);
}

.light-theme .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(61, 139, 189, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
}

.btn-white {
    background: white;
    color: var(--accent-primary);
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.light-theme .section-title {
    color: var(--navy-dark);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.light-theme .section-description {
    color: var(--text-muted);
}

/* ============================================
   Bento Grid (Dark Theme)
   ============================================ */
.services-section {
    padding: 100px 5%;
    position: relative;
}

.bento-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.bento-large {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.bento-icon.gradient-1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.bento-icon.gradient-2 { background: linear-gradient(135deg, #22d3ee, #06b6d4); }
.bento-icon.gradient-3 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.bento-icon.gradient-4 { background: linear-gradient(135deg, #f97316, #eab308); }
.bento-icon.gradient-5 { background: linear-gradient(135deg, #10b981, #22c55e); }
.bento-icon.gradient-6 { background: linear-gradient(135deg, #6366f1, #22d3ee); }

.bento-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.bento-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
    transition: gap 0.3s ease;
}

.bento-link:hover {
    gap: 1rem;
}

.bento-visual {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-cyan));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

/* ============================================
   Services Grid (Light Theme)
   ============================================ */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.light-theme .features-section {
    background: var(--gray-light);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.light-theme .features-content h2 {
    color: var(--navy-dark);
}

.features-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.light-theme .features-content p {
    color: var(--text-muted);
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.light-theme .feature-item {
    background: var(--white);
    border-color: var(--gray-medium);
}

.feature-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(10px);
}

.light-theme .feature-item:hover {
    border-color: var(--blue-accent);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.light-theme .feature-icon {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.light-theme .feature-text h4 {
    color: var(--navy-dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Features Visual / Stats Card */
.features-visual {
    position: relative;
}

.stats-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
}

.light-theme .stats-card {
    background: var(--white);
    border-color: var(--gray-medium);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.stats-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.light-theme .stats-item {
    background: var(--gray-light);
}

.stats-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.05);
}

.light-theme .stats-item:hover {
    background: rgba(61, 139, 189, 0.1);
}

.stats-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.light-theme .stats-number {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    -webkit-background-clip: text;
    background-clip: text;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.light-theme .stats-label {
    color: var(--text-muted);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
    padding: 100px 5%;
}

.light-theme .testimonials-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.light-theme .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.light-theme .testimonial-card:hover {
    border-color: var(--blue-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.light-theme .testimonial-quote {
    background: linear-gradient(135deg, var(--blue-light), var(--blue-glow));
    -webkit-background-clip: text;
    background-clip: text;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.light-theme .testimonial-text {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.light-theme .author-avatar {
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.light-theme .author-info h4 {
    color: var(--white);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.light-theme .author-info p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 5%;
}

.light-theme .cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    padding: 5rem 5%;
    text-align: center;
}

.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.cta-card h2,
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-card p,
.cta-section > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 6rem 5%;
}

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

/* Contact Info Card */
.contact-info {
    background: var(--navy-dark);
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(61, 139, 189, 0.2), transparent);
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-detail-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--blue-light);
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-detail-text a {
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-text a:hover {
    color: var(--white);
}

.social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.social-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-medium);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.form-group label span {
    color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 4px rgba(61, 139, 189, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
}

.form-submit {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

.form-submit svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Success Message */
.success-message {
    display: none;
    background: var(--success);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* ============================================
   Articles & Blog
   ============================================ */
.featured-section {
    padding: 5rem 5%;
    background: var(--gray-light);
}

.featured-article {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.featured-image {
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    position: relative;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-accent);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* Filter Tabs */
.filter-section {
    padding: 3rem 5% 0;
}

.filter-tabs {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tabs a {
    padding: 0.8rem 2rem;
    border: 2px solid var(--gray-medium);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-tabs a:hover,
.filter-tab.active {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
    color: var(--white);
}

/* Articles Grid */
.articles-section {
    padding: 4rem 5%;
}

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

.article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-medium);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy-primary), var(--blue-accent));
    position: relative;
    overflow: hidden;
}

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

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

.article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.article-link:hover {
    gap: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination button {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    background: var(--white);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover,
.pagination button.active {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
    color: var(--white);
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    padding: 5rem 5%;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 139, 189, 0.5);
}

/* ============================================
   Training/Courses
   ============================================ */
.courses-section {
    padding: 6rem 5%;
}

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

.course-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
    transition: all 0.4s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.course-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    position: relative;
}

.course-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--success);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-badge.popular {
    background: var(--warning);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.course-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.course-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.course-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.course-body {
    padding: 2rem;
}

.course-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.course-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-detail svg {
    width: 18px;
    height: 18px;
    fill: var(--blue-accent);
}

.course-detail span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.course-topics h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.8rem;
}

.course-topics ul {
    list-style: none;
}

.course-topics li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.course-topics li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.course-footer {
    padding: 1.5rem 2rem;
    background: var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-dark);
}

.course-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-register {
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 139, 189, 0.4);
}

/* Schedule Table */
.schedule-section {
    padding: 6rem 5%;
    background: var(--gray-light);
}

.schedule-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: var(--navy-primary);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    text-align: right;
    font-weight: 600;
}

.schedule-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover {
    background: var(--gray-light);
}

.schedule-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.schedule-status.open {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.schedule-status.limited {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.schedule-btn {
    background: var(--navy-primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    background: var(--blue-accent);
}

/* Process Steps */
.process-section {
    padding: 6rem 5%;
}

.process-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gray-medium);
}

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

.process-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--navy-primary), var(--blue-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(26, 58, 92, 0.3);
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 150px;
    margin: 0 auto;
}

/* ============================================
   About Page Specific
   ============================================ */
.about-section {
    padding: 6rem 5%;
}

.about-intro {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.about-intro-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--blue-accent);
    border-radius: 20px;
    z-index: -1;
}

/* Mission & Vision */
.mission-vision {
    background: var(--gray-light);
    padding: 6rem 5%;
}

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

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-glow));
    opacity: 0.1;
    border-radius: 0 20px 0 100%;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Values */
.values-section {
    padding: 6rem 5%;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 3rem;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-medium);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-accent);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(61, 139, 189, 0.1), rgba(126, 200, 227, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--blue-accent);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Team */
.team-section {
    background: var(--gray-light);
    padding: 6rem 5%;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.team-section > p {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 280px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.3rem;
}

.team-info .role {
    color: var(--blue-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Timeline */
.timeline-section {
    padding: 6rem 5%;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 3rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--blue-accent), var(--navy-primary));
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
    left: -30px;
}

.timeline-item:nth-child(even) .timeline-year {
    right: -30px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: 6rem 5%;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-light);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--white);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
}

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

/* Quick Contact Cards */
.quick-contact {
    background: var(--gray-light);
    padding: 4rem 5%;
}

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

.quick-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-medium);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-accent);
}

.quick-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.quick-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.quick-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.quick-card a {
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.quick-card a:hover {
    color: var(--navy-primary);
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--navy-dark);
    padding: 4rem 5% 2rem;
}

.dark-theme footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 80px 5% 30px;
}

.footer-grid,
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-theme .footer-grid {
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-text {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand .logo-subtitle {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 300px;
    margin: 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--blue-light);
    padding-right: 5px;
}

.dark-theme .footer-column a:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
    padding-right: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark-theme .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dark-theme .social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.social-link:hover {
    background: var(--blue-accent);
    transform: translateY(-3px);
}

.dark-theme .social-link:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.dark-theme .social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.dark-theme .social-link:hover svg {
    fill: white;
}

/* ============================================
   Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Clients/Testimonials Page Styles
   ============================================ */

/* Clients Header */
.clients-header {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

/* Clients Stats */
.clients-stats {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.client-stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.client-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.client-stat-item .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.client-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.client-stat-item .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Client Logos Section */
.client-logos-section {
    padding: 6rem 5%;
    background: var(--white);
}

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

.logo-item {
    aspect-ratio: 16/9;
    background: var(--gray-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.logo-item:hover {
    border-color: var(--blue-accent);
    box-shadow: 0 10px 30px rgba(61, 139, 189, 0.15);
    transform: translateY(-5px);
}

.logo-placeholder {
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
    font-size: 0.9rem;
}

/* Testimonials Page Section */
.testimonials-page-section {
    padding: 6rem 5%;
    background: var(--gray-light);
}

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

.testimonial-page-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-page-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--gray-light);
    line-height: 1;
    z-index: 0;
}

.testimonial-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating span {
    font-size: 1.2rem;
}

.testimonial-page-card .testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.testimonial-page-card .testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.2rem;
}

.author-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-company {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.company-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(61, 139, 189, 0.1), rgba(126, 200, 227, 0.1));
    color: var(--blue-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Industries Section */
.industries-section {
    padding: 6rem 5%;
    background: var(--white);
}

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

.industry-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-light);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.industry-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 5%;
    background: var(--gray-light);
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.why-choose-text > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.why-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-medium);
    font-size: 1.05rem;
    color: var(--navy-dark);
}

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

.why-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-badge {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(26, 58, 92, 0.3);
}

.trust-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.trust-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 0.5rem;
}

/* Clients CTA */
.clients-cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    padding: 5rem 5%;
}

.clients-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.clients-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.clients-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Responsive for Clients Page */
@media (max-width: 1024px) {
    .clients-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-page-grid {
        grid-template-columns: 1fr;
    }

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

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

    .why-choose-visual {
        order: -1;
    }

    .trust-badge {
        width: 200px;
        height: 200px;
    }

    .trust-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .clients-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .client-stat-item {
        padding: 1.5rem;
    }

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

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

    .testimonial-page-card {
        padding: 2rem;
    }
}

/* ============================================
   New Training Page Styles
   ============================================ */

/* Training Hero */
.training-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 5% 0;
}

.training-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 58, 92, 0.88) 50%, rgba(45, 90, 123, 0.85) 100%);
    z-index: 1;
}

.training-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.training-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.training-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.training-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    gap: 5rem;
    z-index: 10;
}

/* Training Intro */
.training-intro {
    padding: 6rem 5%;
    background: var(--white);
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.intro-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.intro-feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.3rem;
}

.intro-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Training Types List */
.training-types-list {
    padding: 5rem 5%;
    background: var(--gray-light);
}

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

.type-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    font-weight: 500;
    color: var(--navy-dark);
    transition: all 0.3s ease;
}

.type-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.type-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: 50%;
}

/* Detailed Courses */
.detailed-courses {
    padding: 6rem 5%;
    background: var(--white);
}

.course-detail-card {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
    transition: all 0.4s ease;
}

.course-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.course-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    color: var(--white);
}

.course-number {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.3;
    line-height: 1;
}

.course-detail-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-detail-icon.fire {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.course-detail-icon.emergency {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.course-detail-icon.hazmat {
    background: linear-gradient(135deg, #eab308, #f59e0b);
}

.course-detail-icon.firstaid {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.course-detail-icon.surveys {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.course-detail-icon.trustees {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.course-detail-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

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

.course-detail-content {
    padding: 2rem;
}

.course-detail-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.course-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(61, 139, 189, 0.1), rgba(126, 200, 227, 0.1));
    border-radius: 12px;
    margin: 1.5rem 0;
    border-right: 4px solid var(--blue-accent);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-text strong {
    display: block;
    color: var(--navy-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.highlight-text p {
    margin: 0;
    font-size: 0.95rem;
}

.course-includes {
    margin: 1.5rem 0;
}

.course-includes h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.course-includes ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-includes li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.course-includes li::before {
    content: '✓';
    color: var(--blue-accent);
    font-weight: 700;
}

.course-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: gap 0.3s ease;
}

.course-cta:hover {
    gap: 1rem;
}

/* Training FAQ */
.training-faq {
    background: var(--gray-light);
}

.training-faq .faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

/* Coverage Section */
.coverage-section {
    padding: 5rem 5%;
    background: var(--white);
}

.coverage-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coverage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coverage-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.coverage-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.coverage-cities span {
    padding: 0.6rem 1.2rem;
    background: var(--gray-light);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--navy-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.coverage-cities span:hover {
    background: var(--navy-dark);
    color: var(--white);
}

/* Training CTA */
.training-cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    padding: 5rem 5%;
}

.training-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.training-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.training-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Responsive for Training Page */
@media (max-width: 1024px) {
    .intro-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .training-hero {
        min-height: 70vh;
    }

    .training-stats-bar {
        flex-wrap: wrap;
        gap: 2rem;
    }

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

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

    .course-detail-header {
        flex-wrap: wrap;
    }

    .course-includes ul {
        grid-template-columns: 1fr;
    }

    .coverage-cities {
        gap: 0.5rem;
    }

    .coverage-cities span {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   Homepage Specific Styles
   ============================================ */

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden,
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 8px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Hero Badge Dot */
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-glow);
    border-radius: 50%;
    animation: blink 2s infinite;
}

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

/* Section Tag */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(61, 139, 189, 0.1), rgba(126, 200, 227, 0.1));
    color: var(--blue-accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(61, 139, 189, 0.2);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-accent);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* About Wrapper for Homepage */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-main::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--blue-accent), transparent);
    animation: rotate 15s linear infinite;
    opacity: 0.1;
}

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

.about-logo-display {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 10px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-logo-sub {
    font-size: 0.9rem;
    color: var(--blue-light);
    letter-spacing: 5px;
    text-align: center;
    margin-top: 0.5rem;
}

.about-floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: floatCard 6s ease-in-out infinite;
}

.about-floating-card.card-1 {
    top: 30px;
    right: -30px;
}

.about-floating-card.card-2 {
    bottom: 50px;
    left: -30px;
    animation-delay: -3s;
}

.floating-card-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-dark);
}

.floating-card-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.about-feature span {
    font-weight: 600;
    color: var(--navy-dark);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.3);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}


/* for custom style */

.navigation {
    text-align: center;
}
.navigation ul{
    padding: 0;
    margin: 0;
}
.navigation ul li{
    list-style: none;
    padding: 0;
    margin: 0 10px;
    display: inline-block;
}
.dark-theme .navigation{
    gap: 0.5rem;
}
.navigation ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}
.dark-theme .navigation ul li a {
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
}
.navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-accent), var(--blue-glow));
    transition: width 0.3s ease;
}
.dark-theme .navigation ul li a::after {
    display: none;
}
.navigation ul li.current_page_item a:hover::after,
.navigation ul li.current_page_item a::after {
    width: 100%;
}
.dark-theme .navigation a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}
.default-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.default-content h2, .default-content h3, .default-content h4{
    padding: 0 0 25px 0;
}
.default-content p{
    margin: 0;
    padding: 0 0 25px 0;
    line-height: 20px;
}
.author-avatar img{
    width: 100%;
    height: auto;
    display: inline-block;
    max-width: 50px;
    border-radius: 50%;
}
.team-avatar img{
    width: 100%;
    height: auto;
    display: inline-block;
    max-width: 150px;
    border-radius: 50%;
}
.form-group{
    direction: rtl;
}
.form-group input, .form-group textarea, .form-group select{
    text-align: right;
}