/* 
MinaMentor LLC - Elite Cybersecurity Website Styles
Final Version 1 - January 2025
Features: Dark purple theme, bold typography, single job carousels
*/

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

:root {
    /* Cydeo Dark Theme - Professional Color Scheme */
    --primary-bg: #010207;
    --secondary-bg: #020c27;
    --card-bg: #0a0e1a;

    /* Cydeo Accent Colors */
    --primary-teal: #80E8CA;
    --primary-purple: #BF5AE5;
    --accent-blue: #009EE2;
    --success-green: #39a935;
    --warning-gold: #F9C269;

    /* Maintain backward compatibility with existing class names */
    --neon-cyan: #80E8CA;
    --electric-blue: #BF5AE5;
    --purple-glow: #BF5AE5;
    --mint-green: #39a935;
    --electric-green: #39a935;
    --deep-purple: #BF5AE5;
    --vibrant-pink: #BF5AE5;
    --ai-blue: #009EE2;
    --ai-purple: #BF5AE5;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #72757e;
    --text-muted: #313134;
    --border-color: #313134;
    --hover-bg: #0a0e1a;

    /* Cydeo Gradients */
    --gradient-primary: linear-gradient(135deg, #80E8CA 0%, #BF5AE5 100%);
    --gradient-secondary: linear-gradient(135deg, #BF5AE5 0%, #009EE2 100%);
    --gradient-accent: linear-gradient(135deg, #80E8CA 0%, #39a935 100%);
    --gradient-cyber: linear-gradient(135deg, #80E8CA 0%, #BF5AE5 50%, #009EE2 100%);
    --gradient-ai: linear-gradient(135deg, #009EE2 0%, #BF5AE5 50%, #80E8CA 100%);
    --gradient-holographic: linear-gradient(135deg, #80E8CA, #BF5AE5, #009EE2, #39a935);

    /* Cydeo Shadows - Subtle, not glows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);

    /* Cydeo Border Radius System */
    --radius-sm: 10px;
    --radius-md: 13px;
    --radius-lg: 25px;
    --radius-full: 50%;

    /* Cydeo Spacing System */
    --padding-inline: clamp(20px, 5vw, 60px);
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 5rem;
    --section-padding: 8vmax;

    /* Accent Color */
    --accent: #80E8CA;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #141b3d 25%, #1a1f3a 50%, #0f1729 75%, #0a0e27 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.625;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
}

/* Force Desktop View - Override all mobile styles */
body.force-desktop-view {
    min-width: 1024px;
}

body.force-desktop-view * {
    max-width: none !important;
}

/* Force Mobile View - Override desktop styles */
body.force-mobile-view {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Animated Background Pattern */
/* Background pattern removed */

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Better section spacing and visual hierarchy */
.section {
    padding: 2rem 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, rgba(3, 3, 5, 0.9), rgba(6, 6, 9, 0.8));
}

.section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(2, 2, 4, 0.95), rgba(5, 5, 8, 0.85));
}

.section:first-child {
    padding-top: 3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.6rem, 3.5vw, 2rem);
    font-weight: 900;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 1px;
    animation: gradientShift 8s ease-in-out infinite;
}

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

/* Section title underline removed */

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

/* New Section Styles */

/* Hero Highlights */
.hero-highlights {
    margin-top: 2rem;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.1), rgba(75, 0, 130, 0.1));
    border: 1px solid var(--neon-cyan);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-content {
    text-align: left;
}

.highlight-content strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
    
.highlight-content span {
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Program Overview Section */
.program-overview-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.overview-left .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.overview-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.program-investment {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.investment-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.investment-price .currency {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.investment-price .amount {
    font-size: 3rem;
    color: var(--neon-cyan);
    font-weight: bold;
    line-height: 1;
}

.investment-details .roi-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.investment-details .flexibility-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.program-timeline-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 13px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item-compact:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
}

.timeline-marker-compact {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    font-size: 0.8rem;
    position: relative;
}

.timeline-marker-compact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-item-compact:hover .timeline-marker-compact {
    transform: scale(1.2);
}

.timeline-content-compact h4 {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

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

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.audience-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

/* Gradient border animation */
.audience-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-holographic);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

.audience-card:hover::after {
    opacity: 1;
}

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

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.audience-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.audience-icon i {
    font-size: 1.5rem;
    color: white;
}

.audience-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.audience-card p {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Program Timeline */
.program-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

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

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

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    max-width: 350px;
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Investment Section - Compact Layout */
.investment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.investment-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-showcase {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 25px;
    border: 2px solid var(--neon-cyan);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.price-main .currency {
    font-size: 2rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.price-main .amount {
    font-size: 4rem;
    color: var(--neon-cyan);
    font-weight: bold;
    line-height: 1;
}

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

.roi-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.roi-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(128, 0, 128, 0.1);
    border-radius: 13px;
    border: 1px solid var(--border-color);
}

.roi-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.roi-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Process Flow Styles */
.process-flow {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(128, 0, 128, 0.02);
    border-radius: 13px;
    border: 1px solid rgba(128, 0, 128, 0.1);
}

.process-flow p {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.flow-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.flow-icon.recruit {
    background: rgba(255, 64, 129, 0.08);
    border: 1px solid rgba(255, 64, 129, 0.2);
}

.flow-icon.projects {
    background: rgba(33, 150, 243, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.flow-icon.certificate {
    background: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.flow-icon.referrals {
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

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

.flow-step span {
    font-size: 1.3rem;
    font-weight: 900;
    color: #2196f3;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--neon-cyan);
    font-weight: bold;
}

/* Compact Pricing Styles */
.price-showcase-compact {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: var(--card-bg);
    border-radius: 13px;
    border: 2px solid var(--neon-cyan);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-main-compact {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.currency-compact {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.amount-compact {
    font-size: 3.5rem;
    color: var(--neon-cyan);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
}

.roi-text-compact {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.roi-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roi-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 13px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.roi-stat:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-1px);
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    color: var(--neon-cyan);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.payment-button-main {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 13px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 250px;
}

.payment-button-main:hover {
    transform: translateY(-2px);
}

.payment-security {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-security i {
    color: var(--neon-cyan);
}

.investment-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-compact h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.feature-item:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
}

.feature-item.highlight {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.1), rgba(75, 0, 130, 0.1));
    border-color: var(--neon-cyan);
}

.feature-item i {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.payment-providers-compact {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 13px;
    border: 1px solid var(--border-color);
}

.payment-providers-compact > span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.payment-providers-compact .providers {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.payment-providers-compact .providers span {
    color: var(--text-primary);
    font-weight: 700;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
}

/* Investment Section Responsive */
@media (max-width: 1024px) {
    .investment-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .roi-highlight {
        grid-template-columns: 1fr;
    }
    
    .price-main .amount {
        font-size: 3rem;
    }
    
    /* Process Flow Responsive */
    .process-flow {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .flow-steps {
        gap: 1rem;
    }
    
    .flow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .flow-step span {
        font-size: 0.9rem;
    }
    
    .flow-arrow {
        font-size: 1.2rem;
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    /* Compact Pricing Responsive */
    .amount-compact {
        font-size: 2.8rem;
    }
    
    .currency-compact {
        font-size: 1.2rem;
    }
    
    .stat-value {
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: 0.8px;
    }
    
    .roi-text-compact {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .flow-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .flow-step span {
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: 0.6px;
    }
}

/* Consultation Offer */
.consultation-offer {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 13px;
    border: 1px solid var(--border-color);
}

.consultation-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 2rem auto;
    max-width: 900px;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.overall-rating {
    text-align: center;
    flex: 0 0 220px;
    padding-right: 2rem;
    border-right: 1px solid var(--border-color);
}

.rating-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--neon-cyan);
    line-height: 1;
}

.rating-stars {
    margin: 1rem 0;
}

/* Professional simple rating styling */
.simple-rating {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
}

.simple-rating .rating-stars-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.simple-rating .rating-stars-row i {
    color: #ffd700;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.simple-rating .rating-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 700;
    padding: 0 1rem;
    white-space: nowrap;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0 0.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Animated stars */
.rating-stars i:nth-child(1) { animation: starPulse 2s ease-in-out infinite; }
.rating-stars i:nth-child(2) { animation: starPulse 2s ease-in-out 0.2s infinite; }
.rating-stars i:nth-child(3) { animation: starPulse 2s ease-in-out 0.4s infinite; }
.rating-stars i:nth-child(4) { animation: starPulse 2s ease-in-out 0.6s infinite; }
.rating-stars i:nth-child(5) { animation: starPulse 2s ease-in-out 0.8s infinite; }

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

.rating-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.rating-breakdown {
    flex: 1;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.rating-label {
    min-width: 60px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.rating-count {
    min-width: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
}

.review-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: var(--card-bg);
    border-radius: 13px;
    border: 1px solid var(--border-color);
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

.highlight-item span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-highlights {
        margin-top: 2rem;
    }
    
    .highlight-banner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .highlight-icon i {
        font-size: 1.2rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .service-card {
        max-height: none;
        padding: 1.2rem 1rem;
    }
    
    .program-timeline {
        margin-top: 2.5rem;
        padding: 1rem 0;
    }
    
    .program-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
        margin-bottom: 2.5rem;
    }
    
    .timeline-marker {
        margin: 0 1rem 0 0;
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        max-width: none;
        padding: 2rem 1.5rem;
    }
    
    .reviews-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin: 2.5rem auto;
    }
    
    .overall-rating {
        flex: none;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2rem;
    }
    
    .review-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .investment-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-showcase {
        padding: 1.5rem;
    }
    
    .roi-highlight {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .roi-item {
        padding: 1.2rem 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    /* Mobile logo adjustments */
    .logo-image {
        width: 100px;
        height: 100px;
        padding: 3px;
    }
    
    .footer-logo .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .nav-logo {
        gap: 12px;
        padding: 5px 0;
    }
    
    .footer-logo {
        gap: 12px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-left .section-title {
        text-align: center;
    }
    
    .program-investment {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .timeline-item-compact {
        padding: 1.2rem;
    }
    
    .timeline-marker-compact {
        width: 45px;
        height: 45px;
        font-size: 0.8rem;
    }
}

/* Avatar placeholder styles */
.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
    margin-right: 15px;
}

/* Consultation form styles */
.consultation-form {
    max-width: 500px;
    margin: 20px auto 0;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--text-primary);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 13px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
}

.consultation-form select {
    cursor: pointer;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 80px;
}

.consultation-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 13px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.consultation-submit-btn:hover {
    transform: translateY(-2px);
}

.consultation-submit-btn:active {
    transform: translateY(0);
}

.consultation-submit-btn i {
    margin-right: 8px;
}

.consultation-info {
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 13px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.consultation-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.consultation-info li {
    margin: 8px 0;
    color: var(--text-secondary);
}

.section {
    padding: 30px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: #010207;
    border-bottom: 0.5px solid #313134;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0 var(--padding-inline);
    display: flex;
    align-items: center;
}


/* Navigation progress indicator */
.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: 1001;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* View Toggle Button */
.view-toggle {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.view-toggle-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover {
    transform: translateY(-2px);
}

.view-toggle-btn i {
    font-size: 1rem;
}

.toggle-text {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    padding: 8px 0;
}

.nav-logo span {
    line-height: 1;
    vertical-align: middle;
}

.nav-logo i {
    font-size: 1.8rem;
}

/* Logo SVG Styles */
.logo-svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(128, 0, 128, 0.4));
    vertical-align: middle;
    display: inline-block;
}

.logo-svg:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(128, 0, 128, 0.7));
}

.logo-image:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(128, 0, 128, 0.7)) brightness(1.3);
    border-color: var(--neon-cyan);
}

/* Footer logo styling */
.footer-logo .logo-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
}

/* Custom Logo Styles - keeping for backward compatibility */
.custom-logo {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.shield-top {
    width: 32px;
    height: 12px;
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
    border-radius: 25px 16px 4px 4px;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite;
}

.shield-bottom {
    width: 32px;
    height: 20px;
    background: linear-gradient(135deg, #3a86ff 0%, #06ffa5 50%, #00f5ff 100%);
    border-radius: 4px 4px 16px 16px;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite 0.5s;
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.custom-logo:hover .shield-top,
.custom-logo:hover .shield-bottom {
    transform: scale(1.1);
}

.shield-top,
.shield-bottom {
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;    letter-spacing: 0.06em;    padding: 20px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(79, 70, 229, 0.2);
    border-radius: 10px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    margin-bottom: 5rem;
    background: radial-gradient(circle at center, rgba(1, 1, 2, 0.98) 0%, rgba(3, 3, 5, 0.95) 40%, rgba(0, 0, 0, 1) 100%);
}

/* Grid background removed */

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


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

.hero-title {
    font-size: clamp(2rem, 5vw, 50px);
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0.8px;
    letter-spacing: 0.06em;
}

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

/* Typing Animation for Hero Title */
.typing-text {
    display: inline-block;
    position: relative;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: var(--neon-cyan);
    animation: blink 1s infinite;
}

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

.neon-text {
    background: linear-gradient(135deg, #00d4ff 0%, #4f46e5 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25em;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    max-width: 500px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-bg);
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-transform: uppercase;    letter-spacing: 0.06em;    padding: 12px 30px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta-button i {
    transition: transform 0.3s ease;
}

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

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

.cyber-animation {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.matrix-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(128, 0, 128, 0.1) 2px,
        rgba(128, 0, 128, 0.1) 4px
    ),
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(128, 0, 128, 0.1) 2px,
        rgba(128, 0, 128, 0.1) 4px
    );
    animation: matrixMove 10s linear infinite;
}

.shield-icon {
    font-size: 6rem;
    color: var(--neon-cyan);
    animation: pulse 2s ease-in-out infinite, glow 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes glow {
    0%, 100% { 
    }
    50% { 
    }
}
    position: relative;
}

.mentor-image img {
    width: 100%;
    border-radius: 25px;
    border: 2px solid var(--neon-cyan);
    transition: all 0.3s ease;
}

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

/* Floating animation for image */
.mentor-image {
    max-width: 300px;    margin: 0 auto;
    
}


.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    blur: 20px;
}

.mentor-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--neon-cyan);
    font-weight: 900;
    letter-spacing: 1px;
}

.mentor-title {
    font-size: 1.2rem;
    color: var(--electric-green);
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--text-secondary);
}

.credential i {
    color: var(--neon-cyan);
    width: 20px;
}

.mentor-philosophy {
    font-style: normal;
    font-weight: 900;
    color: var(--text-primary);
    border-left: 3px solid var(--neon-cyan);
    padding-left: 20px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* About Section Job Titles - Bold and Sharp */
.job-titles-section h4 {
    font-weight: 900 !important;
    letter-spacing: 1px !important;
}

.job-title-item {
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    border-radius: 3px !important;
    border-left-width: 4px !important;
    color: var(--text-primary) !important;
    background: rgba(128, 0, 128, 0.15) !important;
    border-left-color: var(--electric-green) !important;
}

/* Training Components - Bold and Sharp */
.training-components h4 {
    font-weight: 900 !important;
    letter-spacing: 1px !important;
}

.training-item {
    font-weight: 800 !important;
    letter-spacing: 0.6px !important;
    border-radius: 4px !important;
    border-left-width: 5px !important;
    color: var(--text-primary) !important;
    background: rgba(0, 255, 150, 0.12) !important;
    border-left-color: var(--neon-cyan) !important;
}

.training-item strong {
    font-weight: 900 !important;
    letter-spacing: 0.8px !important;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-height: 320px;
    transform-style: preserve-3d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.7));
}

/* Glassmorphism effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(128, 0, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 128, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(-10deg) scale(1.02);
    border-color: var(--neon-cyan);
        0 20px 40px rgba(128, 0, 128, 0.3),
        inset 0 0 20px rgba(128, 0, 128, 0.1);
}

/* Animated border for service cards */
.service-card-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-cyber);
    border-radius: 25px;
    opacity: 0;
    z-index: -2;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-border {
    opacity: 1;
    animation: borderRotate 4s linear infinite;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
}

/* Icon pulse animation on hover */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.service-card:hover .service-icon {
    animation: iconPulse 1s ease-in-out infinite;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin-top: auto;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 20px;
    line-height: 1.3;
    font-size: 0.85rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

/* Success Metrics Section */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: 60px;
}

.metric-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: inline-block;
    margin-bottom: 10px;
}

.metric-suffix {
    font-size: 2rem;
    color: var(--neon-cyan);
    display: inline-block;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 2s ease;
}

.chart-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.stars {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
}

.testimonial-author strong {
    color: var(--text-primary);
    display: block;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonials Carousel Styles */
.testimonials-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 40px auto;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    border-radius: 25px;
}

.testimonial-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide .testimonial-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-slide .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(128, 0, 128, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.testimonial-slide .testimonial-card:hover::before {
    left: 100%;
}

.testimonial-slide .testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
        0 10px 30px rgba(128, 0, 128, 0.2),
        0 0 20px rgba(128, 0, 128, 0.1);
}

.testimonial-slide .testimonial-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-slide .testimonial-card .stars {
    color: var(--neon-cyan);
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-slide .testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(128, 0, 128, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 128, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

.carousel-nav:hover {
    background: rgba(128, 0, 128, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1);
}

.carousel-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.indicator:hover:not(.active) {
    border-color: var(--neon-cyan);
    background: rgba(128, 0, 128, 0.2);
}

/* Responsive Design for Carousel */
@media (max-width: 1200px) {
    .testimonial-slide {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .testimonial-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
}

@media (max-width: 600px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .testimonials-carousel-container {
        margin: 20px 10px;
    }
    
    .carousel-nav.prev {
        left: -15px;
    }
    
    .carousel-nav.next {
        right: -15px;
    }
    
    .testimonial-slide .testimonial-card {
        padding: 20px;
        min-height: 160px;
    }
    
    .carousel-indicators {
        margin-top: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Smooth slide transitions */
.testimonials-carousel .testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-carousel .testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Jobs Section Styles */
.jobs-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Jobs Level Boxes Layout */
.jobs-levels-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: 50px;
}

.jobs-level-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jobs-level-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(128, 0, 128, 0.05),
        transparent
    );
    transition: left 0.6s ease;
}

.jobs-level-box:hover::before {
    left: 100%;
}

.jobs-level-box:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
        0 15px 40px rgba(128, 0, 128, 0.15),
        0 0 30px rgba(128, 0, 128, 0.1);
}

/* Entry Level Styling */
.jobs-level-box.entry-level {
    border-left: 4px solid #4CAF50;
}

.jobs-level-box.entry-level:hover {
    border-color: #4CAF50;
        0 15px 40px rgba(76, 175, 80, 0.15),
        0 0 30px rgba(76, 175, 80, 0.1);
}

/* Mid Level Styling */
.jobs-level-box.mid-level {
    border-left: 4px solid #FFC107;
}

.jobs-level-box.mid-level:hover {
    border-color: #FFC107;
        0 15px 40px rgba(255, 193, 7, 0.15),
        0 0 30px rgba(255, 193, 7, 0.1);
}

/* Senior Level Styling */
.jobs-level-box.senior-level {
    border-left: 4px solid #E91E63;
}

.jobs-level-box.senior-level:hover {
    border-color: #E91E63;
        0 15px 40px rgba(233, 30, 99, 0.15),
        0 0 30px rgba(233, 30, 99, 0.1);
}

/* Level Header */
.level-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.level-icon {
    font-size: 3rem;
    margin-right: 20px;
}

.level-info h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.level-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.salary-range {
    color: var(--electric-green);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Level Jobs Carousel Container */
.level-jobs-carousel-container {
    position: relative;
    margin-bottom: 25px;
}

.level-jobs-carousel {
    overflow: visible;
    position: relative;
    border-radius: 15px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-jobs-slide {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px;
}

.level-jobs-slide.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

/* Level Carousel Navigation */
.level-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(128, 0, 128, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 128, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--neon-cyan);
    font-size: 0.9rem;
}

.level-carousel-nav:hover {
    background: rgba(128, 0, 128, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.level-carousel-nav.prev {
    left: -18px;
}

.level-carousel-nav.next {
    right: -18px;
}

.level-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1);
}

.level-carousel-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
}

/* Level Carousel Indicators */
.level-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.level-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.level-indicator.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.level-indicator:hover:not(.active) {
    border-color: var(--neon-cyan);
    background: rgba(128, 0, 128, 0.2);
}

/* Compact Job Cards */
.job-card.compact {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 260px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
}

.job-card.compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(128, 0, 128, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.job-card.compact:hover::before {
    left: 100%;
}

.job-card.compact:hover {
    transform: translateY(-2px);
    border-color: var(--neon-cyan);
}

.job-card.compact .job-platform {
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
    color: var(--primary-bg);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: fit-content;
}

.job-card.compact .job-apply-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 3px;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
    min-width: 130px;
}

.job-card.compact .job-apply-btn:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    letter-spacing: 1.2px;
}

.job-card.compact h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.job-card.compact .job-company {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.job-card.compact .job-salary {
    color: var(--electric-green);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.job-card.compact .job-location {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.job-card.compact .job-location::before {
    content: '📍';
    margin-right: 5px;
}

/* Apply Section */
.apply-section {
    text-align: center;
    margin-bottom: 20px;
}

.apply-button {
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
    color: var(--primary-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.apply-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.apply-button.entry {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.apply-button.entry:hover {
}

.apply-button.mid {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
}

.apply-button.mid:hover {
}

.apply-button.senior {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.apply-button.senior:hover {
}

/* Level Stats */
.level-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.level-stats .stat {
    text-align: center;
}

.level-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    margin-bottom: 5px;
    display: block;
}

.level-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Platform Stats */
.platform-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: 50px;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Jobs Level Boxes */
@media (max-width: 1200px) {
    .jobs-levels-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .job-card.compact {
        max-width: 320px;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .job-card.compact {
        min-height: 180px;
        padding: 22px;
        max-width: 300px;
    }
    
    .level-header {
        flex-direction: column;
        text-align: center;
    }
    
    .level-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .level-carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .level-carousel-nav.prev {
        left: -18px;
    }
    
    .level-carousel-nav.next {
        right: -18px;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .jobs-levels-container {
        gap: 25px;
    }
    
    .jobs-level-box {
        padding: 20px;
    }
    
    .job-card.compact {
        padding: 20px;
        min-height: 160px;
        max-width: 280px;
    }
    
    .level-jobs-slide {
        padding: 5px;
    }
    
    .level-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .level-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .level-info h3 {
        font-size: 1.3rem;
    }
    
    .level-carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .level-carousel-nav.prev {
        left: -16px;
    }
    
    .level-carousel-nav.next {
        right: -16px;
    }
    
    .level-carousel-indicators {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .level-indicator {
        width: 6px;
        height: 6px;
    }
    
    .apply-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .jobs-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question span {
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--neon-cyan);
    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;
}

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

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Payment Section */
.pricing-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--neon-cyan);
    border-radius: 25px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--primary-bg);
    padding: 5px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.feature i {
    color: var(--neon-cyan);
    width: 20px;
}

.payment-button {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-bg);
    border-radius: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.payment-button:hover {
    transform: translateY(-2px);
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-note i {
    color: var(--neon-cyan);
}

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

.payment-options p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.payment-providers {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.payment-providers span {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 700;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.submit-button {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-bg);
    border-radius: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.email-link {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--neon-cyan);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--neon-cyan);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    width: 30px;
}

.contact-method strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-method span {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    padding: 0;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(100%) scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.notification-success {
    border-left: 4px solid #00ff88;
}

.notification-success .fa-check-circle {
    color: #00ff88;
}

.notification-error {
    border-left: 4px solid #ff4757;
}

.notification-error .fa-exclamation-circle {
    color: #ff4757;
}

.notification-info {
    border-left: 4px solid var(--neon-cyan);
}

.notification-info .fa-info-circle {
    color: var(--neon-cyan);
}

.notification-content span {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    color: var(--text-primary);
    background: var(--border-color);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%) scale(0.95);
    }
    
    .notification.show {
        transform: translateY(0) scale(1);
    }
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.footer-brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    letter-spacing: 1.5px;
    animation: footerTextGlow 3s ease-in-out infinite;
}

.footer-logo span {
    line-height: 1;
    vertical-align: middle;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    color: var(--text-secondary);
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--primary-bg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons button:hover {
    transform: translateY(-1px);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--neon-cyan);
}

.modal-content {
    padding: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design - Hamburger Menu for Tablet and Mobile */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--primary-bg);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover {
        background: rgba(79, 70, 229, 0.2);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Mobile and Tablet Shared Styles */
@media (max-width: 768px) {
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: var(--spacing-lg) !important;
    }

    /* Mentor image mobile */
    .mentor-image {
    max-width: 300px;    margin: 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .mentor-image img {
        max-width: 100%;
        height: auto;
    }

    /* Mentor info mobile */
    .mentor-info h3 {
        font-size: 1.3rem !important;
    }

    .mentor-info p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .section-title {
        font-size: 1.8rem !important;
        padding: 0 15px;
        text-align: center;
    }

    /* Section spacing mobile */
    .section {
        padding: 60px 0 !important;
        min-height: auto !important;
    }

    .container {
        padding: 0 20px !important;
    }

    /* Navigation mobile improvements */
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 1.2rem;
        order: 0;
    }

    .nav-logo img {
        width: 45px;
        height: 45px;
    }

    /* View toggle mobile */
    .view-toggle {
        order: 1;
        margin-right: 10px;
        margin-left: auto;
    }

    .view-toggle-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .toggle-text {
        display: none;
    }

    .view-toggle-btn i {
        font-size: 1.1rem;
        margin: 0;
    }

    /* Hamburger menu visible */
    .hamburger {
        display: flex;
        order: 2;
    }

    .nav-menu {
        order: 3;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--secondary-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

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

    .service-card,
    .contact-form {
        padding: 30px 20px;
    }
}

/* iPad and Tablet Specific Styles (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .testimonial-slide {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-md) !important;
    }

    .investment-layout {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg);
    }

    .level-jobs-carousel {
        padding: 0 10px;
    }
}

/* Mobile Specific Enhancements (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero section - Add bottom spacing */
    .hero {
        padding-bottom: 80px !important;
        margin-bottom: 40px !important;
        padding-top: 100px !important;
    }

    /* Hero container mobile layout */
    .hero-container {
        padding: 20px;
    }

    /* Logo container - show on top for mobile */
    .hero-visual {
        order: -1;
        margin-bottom: 30px;
    }

    .logo-container {
        max-width: 200px;
        margin: 0 auto;
    }

    .logo-container img {
        max-width: 150px;
        height: auto;
    }

    .hero-logo-text {
        font-size: 1.2rem !important;
        margin-top: 10px;
    }

    /* Testimonials - Single column on mobile */
    .testimonial-slide {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
        word-wrap: break-word;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6;
        text-align: center;
        max-width: 100% !important;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    /* Hero content text alignment */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Neon text wrap */
    .neon-text {
        display: inline;
        word-wrap: break-word;
        font-size: 1.15em !important;
    }

    /* Program highlights mobile */
    .program-highlights {
        text-align: center;
        padding: 0 10px;
    }

    .program-highlights h3 {
        font-size: 1.2rem !important;
    }

    .program-highlights ul {
        font-size: 0.95rem !important;
        text-align: left;
    }

    .program-highlights li {
        margin-bottom: 10px !important;
    }

    /* Earning potential box mobile */
    .earning-potential {
        padding: 12px !important;
        margin: 20px 0 !important;
    }

    .earning-potential p {
        font-size: 0.9rem !important;
    }

    /* CTA section mobile */
    .cta-section {
        margin-top: 25px !important;
        text-align: center;
    }

    /* Investment section */
    .investment-layout {
        grid-template-columns: 1fr !important;
    }

    .price-showcase-compact {
        text-align: center;
    }

    /* Coming Soon section */
    .testimonial-slide > div,
    [style*="grid-template-columns: repeat(4, 1fr)"] > div {
        padding: 20px !important;
    }

    /* Get In Touch section */
    [style*="grid-template-columns: 1fr auto"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Contact info boxes */
    [style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }

    /* Social links */
    .social-links {
        justify-content: center !important;
    }

    /* Jobs section mobile */
    .jobs-level-box {
        margin-bottom: 30px;
        padding: 20px 15px;
    }

    .level-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }

    .level-icon {
        font-size: 3rem;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .level-info h3 {
        font-size: 1.5rem !important;
    }

    .level-description {
        font-size: 0.9rem !important;
    }

    .salary-range {
        font-size: 1rem !important;
    }

    /* Jobs carousel mobile */
    .level-jobs-carousel {
        padding: 0 5px;
        min-height: 300px !important;
    }

    .job-card.compact {
        padding: 20px;
        min-height: 280px;
        max-width: 100%;
    }

    .job-card.compact h4 {
        font-size: 1.1rem !important;
    }

    .job-card.compact .job-company {
        font-size: 0.95rem !important;
    }

    .job-card.compact .job-salary {
        font-size: 1rem !important;
    }

    .job-card.compact .job-location {
        font-size: 0.9rem !important;
    }

    .job-card.compact .job-apply-btn {
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
    }

    /* Level stats mobile */
    .level-stats .stat-number {
        font-size: 1.8rem !important;
    }

    .level-stats .stat-label {
        font-size: 0.85rem !important;
    }

    /* Process flow */
    .flow-steps {
        flex-direction: column !important;
        gap: var(--spacing-md) !important;
    }

    .flow-arrow {
        display: none !important;
    }

    /* Coming Soon cards */
    .coming-soon [style*="background: #2d2d2d"] {
        padding: 25px !important;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Hero section for small phones */
    .hero {
        padding-top: 90px !important;
        padding-bottom: 60px !important;
    }

    .logo-container img {
        max-width: 120px !important;
    }

    .hero-logo-text {
        font-size: 1rem !important;
    }

    .hero-title {
        font-size: 1.3rem !important;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }

    .neon-text {
        font-size: 1.1em !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    /* Program highlights for small phones */
    .program-highlights h3 {
        font-size: 1.1rem !important;
    }

    .program-highlights ul {
        font-size: 0.9rem !important;
    }

    /* Job cards for small phones */
    .job-card.compact {
        padding: 15px;
        min-height: 260px;
    }

    .job-card.compact h4 {
        font-size: 1rem !important;
    }

    .job-card.compact .job-platform {
        font-size: 0.75rem !important;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 14px 28px;
    }

    /* Hero content spacing */
    .hero-content {
        gap: var(--spacing-md);
    }

    /* Feature highlights */
    .feature-highlight {
        font-size: 0.85rem !important;
        padding: 8px 15px !important;
    }

    /* Testimonials */
    .testimonial-slide > div {
        padding: 15px !important;
        font-size: 0.9rem;
    }

    .testimonial-slide h4 {
        font-size: 1.1rem !important;
    }

    /* Navigation arrows */
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Job cards */
    .job-card {
        padding: 15px;
    }

    .job-title {
        font-size: 1rem;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.glow {
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Consultation Modal Styles */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.consultation-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-modal-content {
    background: var(--card-bg);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.consultation-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.consultation-modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.consultation-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 13px;
    transition: all 0.3s ease;
}

.consultation-modal-close:hover {
    color: var(--neon-cyan);
    background: var(--hover-bg);
}

.consultation-modal-body {
    padding: 24px;
}

.consultation-info {
    background: var(--secondary-bg);
    padding: 16px;
    border-radius: 13px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.consultation-info p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.consultation-info strong {
    color: var(--neon-cyan);
}

.time-slot-container {
    margin-bottom: 24px;
}

.week-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 8px;
}

.week-navigation button {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 13px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.week-navigation button:hover {
    transform: translateY(-2px);
}

.week-navigation span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.day-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.day-header {
    text-align: center;
    font-weight: 600;
    color: var(--neon-cyan);
    padding: 12px 8px;
    background: var(--secondary-bg);
    border-radius: 13px;
    font-size: 0.9rem;
}

.time-slot {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    padding: 8px 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.time-slot:hover {
    border-color: var(--neon-cyan);
    background: var(--hover-bg);
    transform: translateY(-1px);
}

.time-slot.available {
    background: var(--secondary-bg);
    border-color: var(--mint-green);
    color: var(--text-primary);
}

.time-slot.available:hover {
    background: rgba(0, 217, 255, 0.1);
}

.time-slot.selected {
    background: var(--gradient-accent);
    border-color: var(--neon-cyan);
    color: white;
    font-weight: 600;
}

.time-slot.booked {
    background: var(--card-bg);
    border-color: #666;
    color: #666;
    cursor: not-allowed;
}

.booking-form {
    background: var(--secondary-bg);
    padding: 24px;
    border-radius: 13px;
    border: 1px solid var(--border-color);
}

.booking-form h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.selected-time {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 16px;
    border-radius: 13px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.form-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.form-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.form-buttons button[type="button"] {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.form-buttons button[type="button"]:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.form-buttons button[type="submit"] {
    background: var(--gradient-primary);
    color: white;
}

.form-buttons button[type="submit"]:hover {
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design for Consultation Modal */
@media (max-width: 768px) {
    .consultation-modal-content {
        width: 95%;
        margin: 20px;
        max-height: 95vh;
    }
    
    .consultation-modal-header,
    .consultation-modal-body {
        padding: 16px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .week-navigation {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

/* Animated Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 250px;
    gap: var(--spacing-md);
}

.animated-logo {
    width: 160px;
    height: 160px;
    animation: logoRotate 8s linear infinite, logoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--neon-cyan));
    transition: all 0.3s ease;
}

.animated-logo:hover {
    animation-duration: 2s, 1.5s;
    filter: drop-shadow(0 0 50px var(--neon-cyan));
    transform: scale(1.1);
}

.hero-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--neon-cyan);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

@keyframes logoRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Navigation Logo Animation */
.nav-animated-logo {
    animation: logoRotate 8s linear infinite, navLogoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--neon-cyan));
    transition: all 0.3s ease;
}

.nav-animated-logo:hover {
    animation-duration: 2s, 1.5s;
    filter: drop-shadow(0 0 25px var(--neon-cyan));
    transform: scale(1.1);
}

@keyframes navLogoPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.nav-logo-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--neon-cyan);
    animation: navTextGlow 3s ease-in-out infinite;
}

@keyframes navTextGlow {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

/* Footer Logo Animation - merged with main footer-logo styles */

.footer-animated-logo {
    animation: logoRotate 8s linear infinite, footerLogoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--neon-cyan));
    transition: all 0.3s ease;
}

.footer-animated-logo:hover {
    animation-duration: 2s, 1.5s;
    filter: drop-shadow(0 0 30px var(--neon-cyan));
    transform: scale(1.1);
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 1.5px;
    text-shadow: 0 0 15px var(--neon-cyan);
    animation: footerTextGlow 3s ease-in-out infinite;
}

@keyframes footerLogoPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes footerTextGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Trust Text Styles */
.trust-text {
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 800px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.1), rgba(75, 0, 130, 0.1));
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.trust-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.trust-text strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Package Grid Styles */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.package-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.package-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-holographic);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

.package-card:hover::after {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-cyan);
        0 20px 40px rgba(128, 0, 128, 0.3),
        inset 0 0 20px rgba(128, 0, 128, 0.1);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.2);
}

.package-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.package-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Testimonials Grid Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1620px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

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

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 13px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: fit-content;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--neon-cyan);
        0 15px 30px rgba(128, 0, 128, 0.2),
        inset 0 0 15px rgba(128, 0, 128, 0.05);
}

.testimonial-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.testimonials-grid .stars {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================
   PROFESSIONAL MOBILE ENHANCEMENTS
   ============================================ */

/* Mobile-First Touch Optimizations */
@media (max-width: 768px) {

    /* Smooth scrolling for mobile */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-padding-top: 80px;
    }

    /* Better tap targets for mobile */
    button, a, input, select, textarea {
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.3);
        touch-action: manipulation;
    }

    /* Prevent text selection on touch */
    .cta-button, .nav-link, .hamburger, .carousel-btn {
        -webkit-user-select: none;
        user-select: none;
    }


    /* Mobile Navigation Improvements */
    .navbar {
        position: fixed;
        width: 100%;
        z-index: 9999;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        animation: slideDown 0.3s ease-in-out;
    }

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

    /* Hamburger menu improvements */
    .hamburger {
        cursor: pointer;
        z-index: 10000;
        padding: 10px;
        margin: -10px;
    }

    .hamburger .bar {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* CTA Button - Mobile Touch Friendly */
    .cta-button {
        min-height: 48px;
        font-size: 1.05rem !important;
        padding: 16px 32px !important;
        width: auto !important;
        max-width: 100% !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.2s ease;
    }

    .cta-button:active {
        transform: scale(0.95);
    }

    /* Cards - Better mobile spacing */
    .audience-card,
    .job-card,
    [class*="card"] {
        margin-bottom: 20px;
        border-radius: 13px;
    }

    /* Form inputs - Touch friendly */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        min-height: 48px;
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px 16px;
        border-radius: 13px;
    }

    textarea {
        min-height: 120px;
    }

    /* Submit buttons - Touch friendly */
    input[type="submit"],
    button[type="submit"],
    .submit-btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 14px 28px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    input[type="submit"]:active,
    button[type="submit"]:active {
        transform: scale(0.95);
    }

    /* Carousel Controls - Touch Optimized */
    .carousel-btn,
    [class*="prev-btn"],
    [class*="next-btn"],
    [class*="Btn"] {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        border-radius: 50%;
        transition: all 0.2s ease;
    }

    .carousel-btn:active,
    [class*="prev-btn"]:active,
    [class*="next-btn"]:active {
        transform: scale(0.9);
        opacity: 0.7;
    }

    /* Job Apply Buttons - Mobile */
    .job-apply-btn,
    [class*="apply-btn"] {
        min-height: 44px;
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
        width: 100%;
        transition: all 0.2s ease;
    }

    .job-apply-btn:active {
        transform: scale(0.95);
    }

    /* Social Links - Touch Friendly */
    .social-link,
    .social-links a {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: all 0.2s ease;
    }

    .social-link:active {
        transform: scale(0.9);
    }

    /* Typography Mobile Readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Better spacing for mobile sections */
    .section {
        padding: 50px 0 !important;
    }

    .container {
        padding: 0 20px !important;
        max-width: 100%;
    }

    /* Image optimization for mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Mentor image mobile */
    .mentor-image img,
    [class*="image"] img {
        border-radius: 13px;
        object-fit: cover;
    }

    /* Logo mobile */
    .logo-container img {
        max-width: 180px !important;
        height: auto;
    }

    /* Better mobile grid layouts */
    [style*="display: grid"],
    [class*="grid"] {
        gap: 20px;
    }

    /* Testimonials mobile */
    .testimonial-card {
        padding: 20px;
        border-radius: 13px;
        margin-bottom: 20px;
    }

    /* Stats mobile */
    .stat-card,
    [class*="stat"] {
        padding: 20px;
        text-align: center;
        border-radius: 13px;
    }

    /* Package/Program section mobile */
    .package-card,
    .program-card {
        padding: 25px 20px;
        border-radius: 13px;
        margin-bottom: 20px;
    }

    /* Footer mobile */
    footer {
        padding: 40px 20px;
        text-align: center;
    }

    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }

    /* Mobile-specific utilities */
    .mobile-center {
        text-align: center;
    }

    .mobile-full-width {
        width: 100%;
    }
}

/* Extra Small Mobile Devices (max-width: 380px) */
@media (max-width: 380px) {


    /* Hero section extra small */
    .hero-title {
        font-size: 1.2rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    /* CTA Button extra small */
    .cta-button {
        font-size: 0.95rem !important;
        padding: 14px 24px !important;
    }

    /* Container padding extra small */
    .container {
        padding: 0 15px !important;
    }

    /* Logo extra small */
    .logo-container img {
        max-width: 140px !important;
    }

    .nav-logo img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {

    /* Hero section landscape */
    .hero {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    /* Reduce vertical spacing in landscape */
    .section {
        padding: 40px 0 !important;
    }

    /* Navigation in landscape */
    .navbar {
        padding: 10px 0;
    }
}

/* Touch Device Optimizations (any size) */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects on touch devices */
    .audience-card:hover,
    .job-card:hover,
    [class*="card"]:hover {
        transform: none;
    }

    /* Active states for touch */
    .audience-card:active,
    .job-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    /* Better button feedback on touch */
    button:active,
    a:active,
    .cta-button:active {
        opacity: 0.8;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {

    /* Sharper borders on retina */
    .card,
    .button,
    [class*="card"],
    [class*="btn"] {
        border-width: 0.5px;
    }
}

/* Dark Mode Support (if device prefers dark) */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme, but ensure consistency */
    body {
        background: var(--primary-bg);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   TESTIMONIALS MOBILE - ONE CARD AT A TIME
   ============================================ */

@media (max-width: 768px) {
    /* Testimonials carousel - show one card at a time on mobile */
    .quick-slide {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 20px;
    }

    /* Make each testimonial card full width on mobile */
    .quick-slide > div {
        min-width: 100% !important;
        margin-bottom: 0 !important;
    }

    /* Hide navigation buttons on mobile (use swipe instead) */
    #quickPrevBtn,
    #quickNextBtn {
        display: none !important;
    }

    /* Better spacing for testimonials container on mobile */
    #quickTestimonialsCarousel {
        padding: 10px 0;
    }

    /* Adjust carousel indicators for mobile */
    #quickCarouselIndicators {
        margin-top: 25px !important;
        gap: 8px !important;
    }

    .quick-indicator {
        width: 10px !important;
        height: 10px !important;
    }

    /* Review highlights - stack on mobile */
    .review-highlights {
        flex-direction: column !important;
        gap: var(--spacing-md) !important;
    }

    .highlight-item {
        width: 100% !important;
        text-align: center !important;
        padding: 15px !important;
    }

    /* Simple rating on mobile */
    .simple-rating {
        margin-bottom: 30px !important;
    }

    .rating-stars {
        font-size: 1.5rem !important;
    }

    .rating-text {
        font-size: 0.9rem !important;
    }
}

/* Extra small phones - testimonials */
@media (max-width: 480px) {
    .quick-slide {
        padding: 0 10px !important;
    }

    .quick-slide > div {
        padding: 18px !important;
        font-size: 0.9rem !important;
    }

    .quick-slide h5 {
        font-size: 0.95rem !important;
    }

    .quick-slide p {
        font-size: 0.8rem !important;
    }
}
p, li, span, div { font-weight: 600 !important; }
h1, h2, h3, h4, h5, h6 { font-weight: 700 !important; }
