/* style.css - Complete Swiss Design System with Header */

/* ========================================
   SWISS DESIGN SYSTEM - WITH CANVAS EFFECT
======================================== */
:root {
    /* Swiss Design Colors */
    --black: #000000;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #E9ECEF;
    --gray-200: #DEE2E6;
    --gray-500: #6C757D;
    --gray-700: #495057;
    --gray-900: #212529;
    
    /* Accent Colors */
    --primary: #0055FF;
    --primary-dark: #0039A6;
    --secondary: #FF3366;
    --secondary-dark: #CC0044;
    --accent: #00CC88;
    --accent-dark: #009966;
    
    /* Lightened Borders */
    --border-light: rgba(0, 0, 0, 0.1);
    --border-medium: rgba(0, 0, 0, 0.2);
    --border-dark: rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Layout */
    --grid-unit: 8px;
    --container-width: 1200px;
    
    /* Swiss Solid Shadows */
    --shadow-sm: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);
    --shadow-md: 6px 6px 0px 0px rgba(0, 0, 0, 0.15);
    --shadow-lg: 8px 8px 0px 0px rgba(0, 0, 0, 0.2);
    --shadow-primary: 6px 6px 0px 0px rgba(0, 57, 166, 0.3);
    --shadow-secondary: 6px 6px 0px 0px rgba(204, 0, 68, 0.3);
    --shadow-accent: 6px 6px 0px 0px rgba(0, 153, 102, 0.3);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
    overflow-x: hidden;
}

/* ========================================
   HEADER & NAVIGATION - SWISS DESIGN
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo wrapper */
.logo {
    display: flex;
    align-items: center;
}

/* Make the whole logo clickable, remove default link styles */
.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Control logo image size and keep aspect ratio */
.logo-img {
    height: 50px;          /* match your design */
    width: auto;           /* keeps aspect ratio */
    display: block;
}

/* Optional: reduce on very small screens */
@media (max-width: 600px) {
    .logo-img {
        height: 32px;
    }
}

/* Main Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 0;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--black);
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: -5px;
    transition: width 0.2s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--black);
    padding: 5px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-medium);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-left: 2px solid var(--border-medium);
}

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

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--black);
    padding: 5px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-medium);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    width: 100%;
}

.mobile-menu ul li {
    margin: 25px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    transition: color 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu ul li a:hover {
    color: var(--primary);
}

/* Typography Scale */
h1, .h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2, .h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

h3, .h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
}

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

/* ========================================
   TITLE UNDERLINE WITH RING - ONLY CENTER SECTION TITLES
======================================== */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--black);
    bottom: 15px;
    left: 0;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 50%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.08);
}

/* ========================================
   HEADER DROPDOWN STYLES - COURSES MENU
   ======================================== */

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: var(--white);
    border: 2px solid var(--black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px;
}

.dropdown-column h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-300);
}

.dropdown-column a {
    display: block;
    padding: 8px 0;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.dropdown-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.dropdown-footer {
    background: var(--gray-50);
    padding: 20px 30px;
    border-top: 1px solid var(--gray-300);
}

.view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border: 2px solid var(--primary-dark);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-all:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.3);
}

/* Mobile Dropdown */
.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-dropdown-content.show {
    max-height: 500px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 12px 0;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-300);
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-dropdown-content a:hover {
    color: var(--primary);
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
    }
    
    .dropdown-toggle i {
        display: none;
    }
}

/* Hero Section Titles */
.carousel-content h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.carousel-content h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    bottom: 15px;
    left: 0;
    z-index: 1;
}

.carousel-content h1::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

/* CTA Section Title */
.cta-content h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    bottom: 15px;
    left: 0;
    z-index: 1;
}

.cta-content h2::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Process Step Titles */
.process-step h3 {
    padding-bottom: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Why Choose Us Item Titles */
.why-choose-text h3 {
    padding-bottom: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ========================================
   SWISS BUTTONS
======================================== */
.btn-primary, .btn-secondary, .btn-quiz-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-radius: 0;
}

.btn-primary:hover, .btn-secondary:hover, .btn-quiz-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active, .btn-secondary:active, .btn-quiz-cta:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--black);
    box-shadow: var(--shadow-secondary);
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-quiz-cta {
    background-color: var(--accent);
    color: var(--black);
    box-shadow: var(--shadow-accent);
}

.btn-primary i, .btn-secondary i, .btn-quiz-cta i {
    margin-right: 10px;
}

/* ========================================
   TITLE UNDERLINE WITH RING - ONLY CENTER SECTION TITLES
======================================== */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--black);
    bottom: 15px;
    left: 0;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 28px; /* SMALLER RING */
    height: 28px; /* SMALLER RING */
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 50%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.08);
}

/* Hero Section Titles */
.carousel-content h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.carousel-content h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    bottom: 15px;
    left: 0;
    z-index: 1;
}

.carousel-content h1::before {
    content: '';
    position: absolute;
    width: 28px; /* SMALLER RING */
    height: 28px; /* SMALLER RING */
    background: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

/* CTA Section Title */
.cta-content h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    bottom: 15px;
    left: 0;
    z-index: 1;
}

.cta-content h2::before {
    content: '';
    position: absolute;
    width: 28px; /* SMALLER RING */
    height: 28px; /* SMALLER RING */
    background: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

/* REMOVED: Process Step Titles (not center titles) */
.process-step h3 {
    padding-bottom: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* REMOVED: Why Choose Us Item Titles (not center titles) */
.why-choose-text h3 {
    padding-bottom: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ========================================
   SWISS BUTTONS
======================================== */
.btn-primary, .btn-secondary, .btn-quiz-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-radius: 0;
}

.btn-primary:hover, .btn-secondary:hover, .btn-quiz-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active, .btn-secondary:active, .btn-quiz-cta:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--black);
    box-shadow: var(--shadow-secondary);
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-quiz-cta {
    background-color: var(--accent);
    color: var(--black);
    box-shadow: var(--shadow-accent);
}

.btn-primary i, .btn-secondary i, .btn-quiz-cta i {
    margin-right: 10px;
}

/* ========================================
   HERO SECTION - WITH GRID & STRIPES ON ALL SLIDES
======================================== */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    user-select: none;
    border-bottom: 2px solid var(--black);
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    padding: 120px 30px;
    border-right: 2px solid var(--black);
}

.carousel-slide:last-child {
    border-right: none;
}

/* Grid Overlay - All Slides */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    padding: 2px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 0.7;
}

.grid-cell {
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    transition: all 0.3s ease;
}

/* All Slides with Stripe Pattern */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.1) 2px,
        rgba(255, 255, 255, 0.1) 4px
    );
    pointer-events: none;
}

/* Slide 1 - Primary Color Scheme */
.slide-1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    padding: 2px;
    background-color: var(--black);
    opacity: 0.3;
    z-index: 1;
}

.grid-cell {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--black);
    transition: all 0.3s ease;
}

.grid-cell.accent {
    background-color: var(--secondary);
    color: var(--white);
}

.grid-cell.primary {
    background-color: var(--primary);
    color: var(--white);
}

.grid-cell.green {
    background-color: var(--accent);
}

/* Slide 2 - Secondary Color Scheme with Stripes */
.slide-2 {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.slide-2 .grid-cell.accent {
    background-color: var(--accent);
}

.slide-2 .grid-cell.primary {
    background-color: var(--primary);
}

.slide-2 .grid-cell.green {
    background-color: var(--primary-dark);
}

/* Slide 3 - Accent Color Scheme with Stripes */
.slide-3 {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    position: relative;
    overflow: hidden;
}

.slide-3 .grid-cell.accent {
    background-color: var(--primary);
}

.slide-3 .grid-cell.primary {
    background-color: var(--secondary);
}

.slide-3 .grid-cell.green {
    background-color: var(--secondary-dark);
}

.carousel-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carousel-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
}

.dot:hover {
    background-color: var(--white);
    transform: scale(1.2);
}

.dot.active {
    width: 45px;
    background-color: var(--white);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--black);
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.carousel-nav-btn:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-50%) translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
/* ========================================
   CANVAS HOLLOW TEXT ZOOM SECTION - SLOWER ZOOM
======================================== */
.canvas-text-section {
    position: relative;
    height: 150vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--black);
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

#hollowTextCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}

.content-behind-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.behind-content-wrapper {
    max-width: 1200px;
    text-align: center;
    background: rgba(255, 255, 255, 0);
    padding: 60px 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

/* ========================================
   STATS SECTION - INSIDE CANVAS
======================================== */
.stats-section {
    background: linear-gradient(135deg, #0055FF 0%, #0039A6 100%);
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 40px 30px;
    background-color: transparent !important;
    transition: all 0.2s ease;
    pointer-events: none;
    box-shadow: none !important;
    position: relative;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0.9;
}

.stat-number, .stat-number-text {
    font-size: 72px;
    font-weight: var(--font-weight-black);
    line-height: 1;
    margin-bottom: 5px;
    display: inline-block;
    color: var(--white);
}

.stat-plus, .stat-percent {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    display: inline-block;
    margin-left: 5px;
    color: var(--white);
}

.stat-label {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 15px;
    color: var(--white);
    opacity: 0.9;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-choose-us {
    background: var(--white);
    padding: 120px 0;
    border-top: 2px solid var(--border-light);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 30px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.7;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    border: none !important;
    box-shadow: none !important;
}

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

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-choose-item {
    display: flex;
    gap: 1rem;
    align-items: center; /* Changed from flex-start to center */
}

.why-choose-icon {
    font-size: 1.6rem;
    color: var(--text-primary);
    flex-shrink: 0;
    margin-top: 0; /* Remove the margin-top */
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-item:hover {
    transform: none;
}

.why-choose-number {
    font-size: 80px;
    font-weight: var(--font-weight-black);
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
    width: 100px;
}

.why-choose-text {
    flex: 1;
}

.why-choose-text h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.why-choose-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   HOW IT WORKS - HORIZONTAL WITH DOTTED LINE
======================================== */
.how-it-works {
    background: var(--gray-50);
    padding: 120px 0;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    min-height: 300px;
}

/* Dotted Line Connector */
.process-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--primary),
        var(--primary) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    margin: 0 auto 30px;
    border: 2px solid var(--border-dark);
    box-shadow: var(--shadow-primary);
    position: relative;
}

.step-icon {
    font-size: 60px;
    color: var(--primary);
    margin: 20px 0;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
    padding: 0 10px;
    border: none !important;
    box-shadow: none !important;
    background: transparent;
}

.process-connector {
    display: none;
}

.process-cta {
    text-align: center;
    margin-top: 100px;
}

/* ========================================
   UNIVERSITIES - BLACK SHADOW ONLY
======================================== */
.featured-universities {
    background: var(--white);
    padding: 120px 0;
}

.university-logos-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.university-logo-item {
    background: var(--white);
    padding: 30px;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid var(--border-light);
    position: relative;
    /* Black shadow with opacity */
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1) !important;
}

.university-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.03) 0%,
        rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.university-logo-item:hover {
    transform: translate(-3px, -3px);
    border-color: var(--border-medium);
    /* Darker black shadow on hover */
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.15) !important;
}

.university-logo-item:hover::before {
    opacity: 1;
}

.logo-wrapper {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(222, 226, 230, 0.5);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.university-logo-item:hover .logo-wrapper {
    border-color: var(--primary);
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.university-logo-item:hover .logo-wrapper img {
    filter: grayscale(0%);
}

.university-logo-name {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   STUDENT STORIES
======================================== */
.student-stories {
    padding: 120px 0;
    background-color: var(--gray-50);
    position: relative;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.stories-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    user-select: none;
}

.stories-carousel {
    display: flex;
    gap: 40px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.story-card {
    flex: 0 0 420px;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border-light);
}

.story-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-lg);
}

.student-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

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

.university-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.accepted-badge {
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    font-weight: var(--font-weight-semibold);
}

.university-name-overlay {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.student-info {
    padding: 30px;
    background-color: var(--white);
    border-top: 2px solid var(--border-light);
}

.student-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.student-details-row {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.detail-item {
    flex: 1;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    font-weight: var(--font-weight-medium);
}

.detail-value {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
}

.student-review {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-top: 2px solid var(--border-light);
}

.story-card:hover .student-review {
    height: 100%;
}

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

.review-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--black);
    font-style: normal;
    margin-bottom: 20px;
}

.review-author {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--border-medium);
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.carousel-nav:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-50%) translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    background: var(--white);
    padding: 120px 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-item {
    border: 2px solid var(--border-light);
    margin-bottom: 20px;
    transition: all 0.2s ease;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: var(--white);
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: var(--font-weight-semibold);
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--primary);
    padding: 100px 30px;
    text-align: center;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   BLACK FOOTER
======================================== */
.swiss-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--white);
    bottom: 0;
    left: 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px rgba(255, 255, 255, 0.3);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .process-container {
        flex-wrap: wrap;
        gap: 60px;
    }
    
    .process-container::before {
        display: none;
    }
    
    .process-step {
        flex: 1 1 calc(50% - 30px);
        min-width: 250px;
    }
    
    .stories-container {
        padding: 0 60px;
    }
    
    .story-card {
        flex: 0 0 360px;
    }
    
    .why-choose-container {
        gap: 60px;
    }
    
    .canvas-text-section {
        height: 120vh;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-choose-image {
        height: 400px;
    }
    
    .why-choose-number {
        font-size: 60px;
        width: 80px;
    }
    
    .why-choose-text h3 {
        font-size: 1.5rem;
    }
    
    h1, .h1 {
        font-size: 2.5rem;
    }
    
    h2, .h2 {
        font-size: 2rem;
    }
    
    .canvas-text-section {
        height: 100vh;
    }
    
    .carousel-content h1 {
        font-size: 2.5rem;
    }
    
    .carousel-content h1::before,
    .carousel-content h1::after,
    .cta-content h2::before,
    .cta-content h2::after,
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .carousel-content h1,
    .cta-content h2,
    .section-title {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 600px;
    }

    .carousel-slide {
        padding: 80px 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number, .stat-number-text {
        font-size: 56px;
    }
    
    .process-container {
        flex-direction: column;
        gap: 80px;
    }
    
    .process-step {
        width: 100%;
    }
    
    .university-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-container {
        padding: 0 40px;
    }
    
    .story-card {
        flex: 0 0 280px;
    }
    
    .canvas-text-section {
        height: 80vh;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 550px;
    }

    .carousel-content h1 {
        font-size: 1.75rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-quiz-cta {
        padding: 14px 24px;
        font-size: 0.875rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-number {
        font-size: 50px;
        width: 60px;
    }
    
    .why-choose-text h3 {
        font-size: 1.25rem;
    }
    
    .university-logos-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-container {
        padding: 0 20px;
    }
    
    .story-card {
        flex: 0 0 280px;
    }
    
    .carousel-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
    }
    
    .stat-number, .stat-number-text {
        font-size: 42px;
    }
    
    .canvas-text-section {
        height: 60vh;
    }
}

@media (max-width: 400px) {
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-quiz-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .canvas-text-section {
        height: 50vh;
    }
}

/* Swiss Slide Animation */
@keyframes swissSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}