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

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    --primary-color: #00d9ff;
    --secondary-color: #7b3ff2;
    --accent-color: #ff006e;
    --dark-bg: #0a0a0a;
    --dark-secondary: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #7b3ff2 100%);
    --gradient-accent: linear-gradient(135deg, #ff006e 0%, #ff4458 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
}

/* Hide custom cursor on mobile and touch devices */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
    
    * {
        cursor: auto !important;
    }
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

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

/* Remove pointer cursor from header and footer links */
.navbar a,
.navbar button,
.navbar *[role="button"],
.footer a,
.footer button,
.footer *[role="button"],
.nav-menu li a,
.footer-column a,
.social-link,
.header-social-link,
.submit-btn,
.form-group select {
    cursor: none !important;
}


/* Buttons */
.cta-button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Header Navigation */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.header-social-link i {
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.float-element:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

.float-element:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: 20%;
    left: 10%;
    animation: float 20s ease-in-out infinite reverse;
}

.float-element:nth-child(3) {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation: float 18s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(40px, 7vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 800px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.stat-icon {
    font-size: 32px;
    opacity: 0.7;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

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

.stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    opacity: 0.3;
}

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

/* Programs Section */
.programs {
    padding: 100px 0;
    position: relative;
}

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

.title-label {
    display: block;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: 48px;
    font-weight: 800;
}

/* Tabs */
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.tab-button {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-button.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
}

.tab-icon {
    font-size: 20px;
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.course-card.featured:hover {
    border-color: var(--primary-color);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.2;
    transform: rotate(45deg);
}

.course-icon span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-icon svg {
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.course-icon img {
    position: relative;
    width: 32px;
    height: 32px;
    z-index: 2;
}

.course-icon i {
    position: relative;
    font-size: 32px;
    z-index: 2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.course-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.course-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 30px;
}

.course-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

.course-price {
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 14px;
}

.current-price {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.course-cta {
	margin-top: 20px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
}

.course-cta:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.course-date {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-top: 5px;
}

.free-card {
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.free-card:hover {
    border-color: var(--primary-color);
}


.free-card .course-icon span {
    font-size: 24px;
}

.free-card .course-icon svg {
    width: 40px;
    height: 40px;
}

.free-card .course-icon img {
    width: 32px;
    height: 32px;
}

.free-card .course-icon i {
    font-size: 32px;
}

.free-price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Instructor Section */
.instructor {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.instructor::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.instructor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.instructor-visual {
    position: relative;
}

.hexagon-frame {
    width: 400px;
    height: 500px;
    position: relative;
    margin: 0 auto;
}

.hexagon-inner {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    padding: 3px;
    overflow: hidden;
}

.hexagon-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
}

.badge {
    position: absolute;
    background: var(--gradient-primary);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.badge-1 {
    top: -15%;
    left: 10px;
    animation: float-badge 8s ease-in-out infinite;
}

.badge-2 {
    top: -2%;
    left: 209px;
    animation: float-badge 10s ease-in-out infinite reverse;
}

.badge-3 {
    top: -25%;
    right: -55px;
    animation: float-badge 12s ease-in-out infinite;
}

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

.instructor-name {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.instructor-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.achievements {
    margin-bottom: 40px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.instructor-quote {
    padding: 30px;
    background: rgba(0, 217, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    font-style: italic;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    overflow: hidden;
}

.reviews-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reviews-row {
    display: flex;
    gap: 2rem;
    animation: scroll-horizontal 40s linear infinite;
}

.reviews-row.row-2 {
    animation: scroll-horizontal 40s linear infinite reverse;
    margin-left: -200px;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    border-radius: 25px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 400px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.review-image-card {
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    margin-right: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-image-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

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

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.review-card:nth-child(even) {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff4458 100%);
}

.review-card:nth-child(3n) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

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

.review-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Partners */
.partners {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.partner-logo:hover {
    filter: grayscale(0%);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

.partner-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Partners toggle button */
.partners-toggle {
    display: none;
    margin: 40px auto 0;
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
}

.partners-toggle:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.partners-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}


/* Footer */
.footer {
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0a0a 100%);
    padding: 100px 0 30px;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    color: var(--dark-bg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Remove arrow animation from social links */
.social-link::before {
    display: none !important;
}

.social-link:hover {
    transform: translateY(-3px) !important;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-badges {
    display: flex;
    gap: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

/* Application Form */
.application-form {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    position: relative;
}

.application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-description h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.form-description p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.benefit-item span {
    font-size: 16px;
    color: var(--text-primary);
}

.application-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: none;
}

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

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.submit-btn i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        gap: 15px;
    }
    
    .header-social {
        gap: 8px;
    }
    
    .header-social-link {
        width: 32px;
        height: 32px;
    }
    
    .header-social-link i {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .instructor-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hexagon-frame {
        width: 300px;
        height: 380px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Application form mobile */
    .application-form {
        padding: 60px 0;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-description h3 {
        font-size: 28px;
    }
    
    .form-description p {
        font-size: 16px;
    }
    
    .application-form-container {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* Footer mobile styles */
    .footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }
    
    .footer-wave {
        top: -40px;
        height: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-tagline {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .contact-info {
        gap: 15px;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding-top: 35px;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .partner-logo {
        padding: 15px;
        gap: 10px;
        min-height: 120px;
    }
    
    .partner-logo img {
        height: 40px;
    }
    
    .partner-name {
        font-size: 11px;
        white-space: normal;
        line-height: 1.2;
    }
    
    /* Hide partners after 4th element (2 rows) */
    .partner-logo {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .partners:not(.partners-expanded) .partner-logo:nth-child(n+5) {
        display: none;
        opacity: 0;
        transform: translateY(-20px);
    }
    
    /* Show all partners when expanded */
    .partners.partners-expanded .partner-logo {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    .partners.partners-expanded .partner-logo:nth-child(n+5) {
        animation: fadeInUp 0.4s ease forwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Show toggle button */
    .partners-toggle {
        display: flex;
    }
    
    /* Footer additional mobile styles for 480px */
    .footer {
        padding: 50px 0 25px;
        margin-top: 50px;
    }
    
    .footer-wave {
        top: -30px;
        height: 30px;
    }
    
    .footer-brand {
        margin-bottom: 10px;
    }
    
    .footer-tagline {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-nav {
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column ul li {
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        gap: 20px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    .badge-item {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-logo {
        flex-direction: row;
        gap: 15px;
        min-height: auto;
        padding: 20px;
    }
    
    .partner-logo img {
        height: 45px;
        width: auto;
        min-width: 60px;
    }
    
    .partner-name {
        font-size: 13px;
        text-align: left;
    }
    
    /* Footer very small screens */
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .footer-wave {
        top: -25px;
        height: 25px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 13px;
        gap: 10px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 15px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .badge-item {
        font-size: 12px;
    }
    
    .instructor-visual {
        overflow: hidden;
    }
    
    .badge-1 {
        top: 5%;
        left: 5px;
    }
    
    .badge-2 {
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .badge-3 {
        top: 25%;
        right: 5px;
    }
    
    .badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .reviews-row {
        gap: 1rem;
    }
    
    .review-card {
        width: 320px;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hexagon-frame {
        width: 280px;
        height: 350px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .review-card {
        width: 280px;
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
    }
    
    .review-name {
        font-size: 0.9rem;
    }
    
    .review-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .reviews-row {
        gap: 0.8rem;
    }
    
    .reviews-row.row-2 {
        margin-left: -100px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}