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

:root {
    --primary-color: #de5e09;
    --secondary-color: #E67E22;
    --accent-color: #8B4513;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    width: 100%;
    position: relative;
}

/* ==================== DESKTOP/MOBILE CONTENT TOGGLE ==================== */
/* Show desktop content by default, hide mobile content */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ==================== SIDE NAVIGATION ====================
 * Side navigation styles are now handled by global/global.css
 * This ensures consistency across all pages.
 * Removed duplicate styles to prevent conflicts.
 */

/* ========== HERO CAROUSEL (4-SLIDE PRODUCT CAROUSEL - MICROSOFT STYLE) ========== */

/* Section Container */
.hero-banner-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Carousel Container (banner only, no controls) */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
}


/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Background */
.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Content Overlay */
.hero-content-overlay {
    position: absolute;
    z-index: 10;
    text-align: left;
    max-width: 600px;
    padding: 2.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content-bottom-left {
    bottom: 8%;
    left: 5%;
}

.hero-content-right {
    top: 80%;
    right: 25%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 480px;
}

.hero-content-right .hero-description {
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: none;
}

.hero-catered {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    right: 5%;
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    text-align: right;
    letter-spacing: 0.3px;
    z-index: 5;
}

.hero-content-right .hero-cta-btn {
    background: #de5e09;
    color: white;
}

.hero-content-right .hero-cta-btn:hover {
    background: #c45208;
}

/* Heading */
.hero-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* CTA Button Base */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover svg {
    transform: translateX(4px);
}

/* CTA Button Color Variants */
.hero-cta-orange {
    background: #de5e09;
    box-shadow: 0 4px 12px rgba(222, 94, 9, 0.3);
}

.hero-cta-orange:hover {
    background: #E67E22;
    box-shadow: 0 6px 16px rgba(222, 94, 9, 0.4);
    transform: translateY(-2px);
}

.hero-cta-blue {
    background: #1e3a8a;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.hero-cta-blue:hover {
    background: #2563eb;
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
    transform: translateY(-2px);
}

.hero-cta-green {
    background: #047857;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.hero-cta-green:hover {
    background: #059669;
    box-shadow: 0 6px 16px rgba(4, 120, 87, 0.4);
    transform: translateY(-2px);
}

.hero-cta-purple {
    background: #6B4BA1;
    box-shadow: 0 4px 12px rgba(107, 75, 161, 0.3);
}

.hero-cta-purple:hover {
    background: #7D5BB8;
    box-shadow: 0 6px 16px rgba(107, 75, 161, 0.4);
    transform: translateY(-2px);
}

/* CONTROLS CONTAINER - OUTSIDE AND BELOW BANNER (Microsoft-style) */
.hero-controls-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Navigation Arrows - Outside banner, at controls level */
.hero-nav-btn {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* Center Controls (Dots + Pause) */
.hero-center-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Navigation Dots - Below banner */
.hero-dots {
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
}

.hero-dot.active {
    background: #333;
    border-color: #333;
    transform: scale(1.3);
}

/* Pause Button */
.hero-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-pause-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.hero-pause-btn.paused .pause-icon {
    display: none;
}

.hero-pause-btn.paused .play-icon {
    display: block !important;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content-overlay {
        padding: 2rem;
        max-width: 90%;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-controls-container {
        padding: 1.5rem 1rem 2rem;
        gap: 0.75rem;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }

    .hero-dots {
        gap: 0.5rem;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-pause-btn {
        width: 32px;
        height: 32px;
    }

    .hero-center-controls {
        gap: 0.5rem;
    }

    /* Mobile: Force bottom-center for better usability */
    .hero-content-overlay {
        bottom: 15% !important;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
    }
}

/* ==================== MOBILE HERO BANNER ==================== */

/* Hidden on desktop */
.hero-mobile-section {
    display: none;
}

@media (max-width: 968px) {
    .hero-banner-section {
        display: none !important;
    }

    .hero-mobile-section {
        display: block !important;
        margin-top: 60px;
    }
}

/* Mobile Carousel Container */
.hero-mobile-carousel {
    position: relative;
    width: 100%;
    min-height: 640px;
    overflow: hidden;
    background: #ffffff;
}

/* Individual Mobile Slides */
.hero-mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 640px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-mobile-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Content — left-aligned like exam page */
.hero-mobile-content {
    padding: 2.5rem 1.5rem 2rem;
}

/* Logo */
.hero-mobile-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1.5rem;
}

/* Title block */
.hero-mobile-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1rem;
}

/* Gradient text line (subtitle) */
.hero-mobile-gradient-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(to right, #de5e09, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.hero-mobile-gradient-teal {
    background: linear-gradient(to right, #0891b2, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Description */
.hero-mobile-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

/* Pill badges — specially catered for */
.hero-mobile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.hero-mobile-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #c2410c;
    background: rgba(255, 237, 213, 0.8);
    border: 1px solid rgba(234, 88, 12, 0.15);
    border-radius: 20px;
}

/* ---- Slide 2: Mobile App text-focused layout ---- */
.hero-mobile-slide:nth-child(2) .hero-mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 640px;
    padding: 3rem 1.5rem;
}

.hero-mobile-label-teal {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0891b2;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-mobile-title-large {
    font-size: 4rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.05;
    margin: 0 0 1.25rem 0;
}

.hero-mobile-subtitle-block {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-mobile-slide:nth-child(2) .hero-mobile-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Coming Soon pill badge */
.hero-mobile-coming-soon {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0891b2;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background: rgba(8, 145, 178, 0.08);
    border: 1.5px solid rgba(8, 145, 178, 0.2);
    border-radius: 24px;
}

/* CTA Buttons — full-width stacked like exam page */
.hero-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-mobile-btn-primary {
    display: block;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(to right, #de5e09, #f97316);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(222, 94, 9, 0.25);
}

.hero-mobile-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(222, 94, 9, 0.35);
}

.hero-mobile-btn-secondary {
    display: block;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-mobile-btn-secondary:hover {
    border-color: #9ca3af;
}

/* Mobile Carousel Controls (arrows + dots) */
.hero-mobile-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0 1.5rem;
    background: white;
}

.hero-mobile-nav-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
}

.hero-mobile-nav-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.hero-mobile-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hero-mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-mobile-dot.active {
    background: #374151;
    border-color: #374151;
    transform: scale(1.3);
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
    .hero-mobile-carousel,
    .hero-mobile-slide {
        min-height: 600px;
    }

    .hero-mobile-content {
        padding: 2rem 1.25rem 1.5rem;
    }

    .hero-mobile-title {
        font-size: 1.5rem;
    }

    .hero-mobile-gradient-text {
        font-size: 1.2rem;
    }

    .hero-mobile-description {
        font-size: 0.9rem;
    }

    .hero-mobile-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.65rem;
    }

    .hero-mobile-slide:nth-child(2) .hero-mobile-content {
        min-height: 600px;
        padding: 2.5rem 1.25rem;
    }

    .hero-mobile-title-large {
        font-size: 3.25rem;
    }

    .hero-mobile-subtitle-block {
        font-size: 1.25rem;
    }
}

/* Removed duplicate .floating-card styles - using .visual-card instead (see line 1749) */
/* Removed duplicate .card-icon - see complete definition at line 1768 */

.card-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Features Section */
.features {
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Courses Section */
.courses {
    background: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.5s ease-out forwards;
}

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.2s; }
.course-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.course-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.course-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.course-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: rotateY(-15deg);
    animation: rotateIn 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes rotateIn {
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

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

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: #ffffff;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.info-text h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.info-text p {
    color: var(--text-light);
}

/* Footer - Using Tailwind utilities in HTML */

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-visual {
        height: 400px;
    }

    .visual-card {
        max-width: 200px !important;
        padding: 1rem;
    }

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

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    .card-title {
        font-size: 0.85rem;
    }

    .card-subtitle {
        font-size: 0.75rem;
    }

    .center-illustration {
        width: 200px;
        height: 200px;
    }

    /* Products Grid Responsive */
    .products-grid-centered {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card-modern.highlighted-modern {
        transform: scale(1);
    }

    .section-title-centered {
        font-size: 2rem;
    }

    /* Services Grid Responsive */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card-modern.featured-service {
        transform: scale(1);
    }

    /* Intro section responsive */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-title {
        font-size: 2rem;
    }

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

    .product-showcase,
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Product cards - 2 columns on tablets */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.highlighted {
        transform: scale(1);
    }

    .product-card.highlighted:hover {
        transform: scale(1.02) translateY(-8px);
    }

    /* Services - 2 columns on tablets */
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    /* ==================== DESKTOP/MOBILE TOGGLE ==================== */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* ==================== PREVENT OVERFLOW ==================== */
    * {
        max-width: 100%;
    }

    /* Removed overflow-x: hidden to allow side nav labels to show */

    /* ==================== MODERN BANNER - MOBILE ==================== */
    .modern-banner {
        padding: 90px 0 60px;
        min-height: auto;
    }

    .modern-banner-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .banner-label {
        margin-bottom: 2rem;
        font-size: 0.75rem;
        padding: 0.4375rem 1rem;
    }

    .modern-banner-title {
        font-size: 2.25rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }

    .title-highlight {
        margin-top: 0.5rem;
    }

    .modern-banner-description {
        font-size: 1.0625rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .modern-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .modern-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9375rem 1.75rem;
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-badge {
        font-size: 0.875rem;
    }

    /* Mobile Visual */
    .modern-banner-visual {
        height: 450px;
        order: -1;
        margin-bottom: 2rem;
    }

    .dashboard-mockup {
        width: 320px;
        height: 400px;
    }

    .mockup-header {
        height: 50px;
    }

    .mockup-dots span {
        width: 10px;
        height: 10px;
    }

    .mockup-content {
        padding: 1.5rem;
    }

    .calendar-grid {
        gap: 0.75rem;
    }

    .floating-stat-card {
        padding: 1rem 1.25rem;
    }

    .card-top {
        right: -20px;
        top: 30px;
    }

    .card-bottom {
        left: -20px;
        bottom: 50px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .success-icon {
        width: 32px;
        height: 32px;
    }

    .success-text span {
        font-size: 0.875rem;
    }

    .deco-circle {
        display: none;
    }
}

    /* ==================== BANNER SECTION - MOBILE ==================== */
    .banner {
        padding: 85px 1.5rem 60px;
        min-height: auto;
        display: block;
    }

    .banner-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .banner-content {
        order: 1;
        width: 100%;
    }

    .banner-visual {
        order: 2;
        width: 100%;
        position: relative;
        height: auto;
        min-height: 350px;
    }

    /* Banner Typography */
    .banner-title {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }

    .title-gradient {
        display: block;
        margin-top: 0.5rem;
    }

    .banner-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    /* Banner Badge */
    .banner-badge {
        display: inline-flex;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
    }

    /* Banner Buttons */
    .banner-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }

    .btn-icon {
        width: 20px;
        height: 20px;
    }

    /* Banner Trust Indicators */
    .banner-trust {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .trust-item {
        font-size: 0.875rem;
    }

    .trust-icon {
        width: 18px;
        height: 18px;
    }

    /* Banner Image Grid */
    .banner-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        gap: 0.875rem;
    }

    /* Banner Visual Cards */
    .visual-card {
        max-width: 200px;
        padding: 1rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .card-title {
        font-size: 0.9375rem;
    }

    .card-subtitle {
        font-size: 0.8125rem;
    }

    /* Reduce orb sizes on mobile */
    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }

    /* ==================== INTRO SECTION - MOBILE ==================== */
    .intro-section {
        padding: 4rem 1.5rem;
    }

    .intro-content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .intro-text {
        width: 100%;
        text-align: center;
    }

    .intro-stats {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

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

    /* ==================== HERO SECTION - MOBILE ==================== */
    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .stats {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        justify-content: center;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .hero-image {
        height: 280px;
        width: 100%;
    }

    /* ==================== CONTACT SECTION - MOBILE ==================== */
    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }

    /* ==================== GENERAL GRIDS - MOBILE ==================== */
    .features-grid,
    .courses-grid,
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* ==================== PRODUCTS SECTION - MOBILE ==================== */
    .products-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .product-card {
        width: 100%;
        margin: 0;
    }

    .product-image {
        height: 220px;
        width: 100%;
    }

    /* ==================== SERVICES SECTION - MOBILE ==================== */
    .services-showcase {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .service-card-large {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .service-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .service-icon-large svg {
        width: 30px;
        height: 30px;
    }

    .service-title-large {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }

    .service-description-large {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .visual-card {
        max-width: 200px;
        padding: 0.75rem;
    }

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

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    .card-title {
        font-size: 0.875rem;
    }

    .card-subtitle {
        font-size: 0.75rem;
    }

    /* Intro Section */
    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    /* Logo Scroll */
    .client-logo {
        min-width: 120px;
    }

    /* Products Grid - Modern */
    .products-grid-centered {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .product-card-modern {
        padding: 2rem 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    /* Services Grid - Modern */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .service-card-modern {
        padding: 2rem 1.5rem;
    }

    .service-icon-modern {
        width: 50px;
        height: 50px;
    }

    .service-icon-modern svg {
        width: 24px;
        height: 24px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    /* Testimonials Carousel */
    .testimonials-carousel {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .testimonial-role {
        font-size: 0.8rem;
    }

    /* FAQ Section */
    .faq-container {
        padding: 0;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
        padding-right: 2.5rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.875rem;
    }

    .contact-info-item {
        padding: 1.25rem;
    }

    /* Chat Widget */
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-button {
        width: 55px;
        height: 55px;
    }

    .chat-box {
        width: calc(100vw - 30px);
        height: calc(100vh - 120px);
        max-width: none;
        border-radius: 20px;
        right: 15px;
        bottom: 80px;
    }

    /* ==================== SECTION SPACING - MOBILE ==================== */
    .section-container {
        padding: 3.5rem 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }

    section {
        padding: 3.5rem 1.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ==================== TYPOGRAPHY - MOBILE ==================== */
    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }

    .section-tag {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        text-align: center;
        display: inline-block;
        margin: 0 auto 1rem;
    }

    /* ==================== GENERAL SPACING - MOBILE ==================== */
    * {
        max-width: 100%;
    }

    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    /* Visual Cards */
    .visual-card {
        max-width: 180px;
        padding: 0.875rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
    }

    .card-title {
        font-size: 0.875rem;
    }

    .card-subtitle {
        font-size: 0.75rem;
    }
/* End of @media (max-width: 768px) */

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Extra Small Phones - 320px to 374px (iPhone SE, small Android) */
@media (max-width: 374px) {
    /* Banner */
    .banner {
        padding: 70px 0.875rem 35px;
        min-height: auto;
    }

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

    .banner-title {
        font-size: 1.375rem;
        line-height: 1.3;
    }

    .banner-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .btn {
        padding: 0.6875rem 1.125rem;
        font-size: 0.875rem;
    }

    .banner-visual {
        height: 280px;
    }

    .visual-card {
        max-width: 140px;
        padding: 0.625rem;
    }

    .card-icon {
        width: 38px;
        height: 38px;
    }

    .card-title {
        font-size: 0.8125rem;
    }

    .card-subtitle {
        font-size: 0.6875rem;
    }

    /* Products & Services */
    .products-grid-centered,
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card-modern,
    .service-card-modern {
        padding: 1.375rem 1.125rem;
    }

    .product-image {
        height: 180px;
    }

    .product-title,
    .service-title {
        font-size: 1.125rem;
    }

    .product-description,
    .service-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .product-badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.75rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem 1.125rem;
    }

    .testimonial-text {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .testimonial-author {
        font-size: 0.875rem;
    }

    /* FAQ */
    .faq-item {
        padding: 0.875rem;
    }

    .faq-question {
        font-size: 0.875rem;
        padding-right: 2.25rem;
    }

    .faq-answer {
        font-size: 0.8125rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem 1.125rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.875rem;
        padding: 0.6875rem;
    }

    /* Typography */
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.8125rem;
    }

    /* Section Padding */
    section,
    .section-container {
        padding: 2.5rem 0.875rem;
    }

    /* Chat Widget */
    .chat-button {
        width: 48px;
        height: 48px;
    }

    .chat-box {
        width: calc(100vw - 16px);
        height: calc(100vh - 90px);
        right: 8px;
        bottom: 65px;
    }
}

/* Small Phones - 375px to 413px (iPhone 12/13/14, standard Android) */
@media (min-width: 375px) and (max-width: 413px) {
    /* Banner */
    .banner {
        padding: 75px 1rem 40px;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-description {
        font-size: 0.875rem;
    }

    .banner-visual {
        height: 300px;
    }

    .visual-card {
        max-width: 160px;
        padding: 0.75rem;
    }

    /* Products & Services */
    .product-card-modern,
    .service-card-modern {
        padding: 1.5rem 1.25rem;
    }

    .product-image {
        height: 190px;
    }

    .product-title,
    .service-title {
        font-size: 1.25rem;
    }

    .product-description,
    .service-description {
        font-size: 0.85rem;
    }

    /* Typography */
    .section-title {
        font-size: 1.625rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    /* Section Padding */
    section,
    .section-container {
        padding: 3rem 1rem;
    }
}

/* Large Phones - 414px to 480px (iPhone Pro Max, iPhone 14 Pro Max, large Android) */
@media (min-width: 414px) and (max-width: 480px) {
    /* Banner Section */
    .banner {
        padding: 90px 1.75rem 60px;
    }

    .banner-container {
        gap: 3.5rem;
    }

    .banner-title {
        font-size: 2.125rem;
        line-height: 1.3;
    }

    .banner-description {
        font-size: 1.0625rem;
        line-height: 1.65;
    }

    .banner-visual {
        height: 380px;
        min-height: 380px;
    }

    .visual-card {
        max-width: 190px;
        padding: 1.125rem;
    }

    .card-icon {
        width: 52px;
        height: 52px;
    }

    /* Products & Services */
    .product-card-modern,
    .service-card-modern {
        padding: 2.25rem 1.75rem;
    }

    .product-image {
        height: 240px;
    }

    .product-title,
    .service-title {
        font-size: 1.5rem;
    }

    .product-description,
    .service-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    /* Typography */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .section-subtitle {
        font-size: 1.0625rem;
    }

    /* Buttons */
    .btn {
        padding: 1.125rem 1.75rem;
        font-size: 1.0625rem;
    }

    /* Section Spacing */
    section,
    .section-container {
        padding: 4rem 1.75rem;
    }

    /* Centered Content */
    .products-grid-centered,
    .services-grid-modern {
        gap: 2.25rem;
        padding: 0 0.5rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 2.25rem 1.75rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* iPhone 14 Pro Max Specific - 430px */
@media (width: 430px) {
    .banner-container {
        max-width: 430px;
        padding: 0 1.5rem;
    }

    .banner-title {
        font-size: 2.25rem;
    }

    .products-grid-centered,
    .services-grid-modern,
    .testimonials-carousel {
        width: 100%;
        padding: 0 1rem;
    }

    .product-card-modern,
    .service-card-modern,
    .testimonial-card {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* Tablets (Portrait) - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
    /* Banner - Two column on larger tablets */
    .banner {
        padding: 100px 2rem 60px;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .banner-title {
        font-size: 2.25rem;
    }

    .banner-description {
        font-size: 1.0625rem;
    }

    .banner-visual {
        height: 400px;
    }

    /* Products & Services - 2 columns */
    .products-grid-centered,
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-card-modern,
    .service-card-modern {
        padding: 2.25rem 1.75rem;
    }

    /* Testimonials - 2 columns */
    .testimonials-carousel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonial-card {
        min-width: auto;
    }

    /* Typography */
    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.0625rem;
    }

    /* Section Padding */
    section,
    .section-container {
        padding: 4rem 2rem;
    }
}

/* Tablets (Landscape) & Small Desktops - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Banner - Two columns */
    .banner {
        padding: 120px 2.5rem 80px;
    }

    .banner-container {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        max-width: 900px;
        text-align: left;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-description {
        font-size: 1.0625rem;
    }

    .banner-buttons {
        flex-direction: row;
        gap: 1.25rem;
    }

    .btn {
        width: auto;
        padding: 0.875rem 1.75rem;
    }

    /* Products & Services - 2 columns */
    .products-grid-centered,
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    /* Testimonials - 3 columns */
    .testimonials-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Contact - Two columns */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

}

/* Medium Desktops - 1024px to 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .banner-container {
        max-width: 1100px;
        gap: 4rem;
    }

    .banner-title {
        font-size: 3rem;
    }

    .banner-description {
        font-size: 1.125rem;
    }

    /* Products & Services - 3 columns */
    .products-grid-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

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

    /* Testimonials - 4 columns */
    .testimonials-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    section,
    .section-container {
        padding: 5rem 3rem;
    }
}

/* Large Desktops - 1440px and above */
@media (min-width: 1440px) {
    .banner-container {
        max-width: 1200px;
    }

    .banner-title {
        font-size: 3.5rem;
    }

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

    .testimonials-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    section,
    .section-container {
        padding: 6rem 3rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== MODERN CLEAN BANNER (SPARK ADVISORS INSPIRED) ==================== */

.modern-banner {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.modern-banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* ==================== LEFT CONTENT ==================== */

.modern-banner-content {
    position: relative;
    z-index: 2;
}

/* Label/Badge */
.banner-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.banner-label:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.25);
    transform: translateY(-2px);
}

.label-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Modern Title */
.modern-banner-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #1a202c;
    margin-bottom: 1.75rem;
    max-width: 650px;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #de5e09 0%, #de5e09 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
}

/* Description */
.modern-banner-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #718096;
    margin-bottom: 2.5rem;
    max-width: 580px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Modern Buttons */
.modern-banner-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #de5e09 0%, #de5e09 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
}

.modern-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.modern-btn-primary .btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.modern-btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.modern-btn-secondary {
    background: #ffffff;
    color: #1a202c;
    border: 2px solid #e2e8f0;
}

.modern-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.btn-play {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #718096;
    font-weight: 500;
}

.badge-check {
    width: 20px;
    height: 20px;
    color: #48bb78;
}

/* ==================== RIGHT VISUAL/ILLUSTRATION ==================== */

.modern-banner-visual {
    position: relative;
    height: 600px;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Dashboard Mockup */
.dashboard-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 500px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08),
                0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.mockup-header {
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
}

.mockup-dots span:nth-child(1) {
    background: #fc8181;
}

.mockup-dots span:nth-child(2) {
    background: #f6e05e;
}

.mockup-dots span:nth-child(3) {
    background: #68d391;
}

.mockup-content {
    padding: 2rem;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.calendar-cell {
    aspect-ratio: 1;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: cellPulse 3s ease-in-out infinite;
}

.calendar-cell:nth-child(2n) {
    animation-delay: 0.5s;
}

.calendar-cell:nth-child(3n) {
    animation-delay: 1s;
}

.calendar-cell.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

@keyframes cellPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.9;
    }
}

/* Floating Stat Cards */
.floating-stat-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    animation: floatCard 6s ease-in-out infinite;
}

.card-top {
    top: 50px;
    right: -30px;
    animation-delay: 0s;
}

.card-bottom {
    bottom: 80px;
    left: -40px;
    animation-delay: 3s;
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: #de5e09;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: #718096;
    font-weight: 500;
}

.success-icon {
    width: 40px;
    height: 40px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    color: #48bb78;
}

.success-text span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a202c;
}

/* Decorative Circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    top: -100px;
    right: -50px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    bottom: -50px;
    left: -30px;
    animation: rotate 15s linear infinite reverse;
}

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

/* New Timetable Plus Sections */

/* Banner Section - New Design */
.banner {
    padding: 90px 2rem 80px;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* ==================== ANIMATED BANNER BACKGROUND ==================== */
.banner-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    top: -200px;
    left: -100px;
    animation: floatOrb1 25s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #de5e09, #FFC857);
    bottom: -150px;
    right: -100px;
    animation: floatOrb2 20s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #E67E22, #de5e09);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb3 30s ease-in-out infinite;
}

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

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-80px, -80px) scale(1.15);
    }
}

@keyframes floatOrb3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-45%, -55%) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-55%, -45%) scale(0.95) rotate(240deg);
    }
}

/* ==================== FLOATING PARTICLES ==================== */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation: particleFloat1 15s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    left: 80%;
    width: 12px;
    height: 12px;
    animation: particleFloat2 12s ease-in-out infinite;
}

.particle-3 {
    top: 40%;
    left: 25%;
    width: 6px;
    height: 6px;
    animation: particleFloat3 18s ease-in-out infinite;
}

.particle-4 {
    top: 75%;
    left: 60%;
    animation: particleFloat1 20s ease-in-out infinite reverse;
}

.particle-5 {
    top: 30%;
    left: 70%;
    width: 10px;
    height: 10px;
    animation: particleFloat2 16s ease-in-out infinite;
}

.particle-6 {
    top: 85%;
    left: 30%;
    width: 7px;
    height: 7px;
    animation: particleFloat3 14s ease-in-out infinite;
}

@keyframes particleFloat1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.2;
    }
    50% {
        transform: translate(30px, -50px);
        opacity: 0.6;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-40px, 40px) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes particleFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.25;
    }
    33% {
        transform: translate(25px, -30px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-25px, 20px) rotate(240deg);
        opacity: 0.7;
    }
}

/* ==================== ENHANCED BANNER CONTENT ANIMATIONS ==================== */
.banner-container {
    position: relative;
    z-index: 2;
}

.banner-content {
    animation: slideInFromLeft 1s ease-out;
}

.banner-visual {
    animation: slideInFromRight 1s ease-out;
}

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

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

.banner-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.banner-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.banner-badge {
    animation: bounceIn 0.8s ease-out;
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Company Introduction Section */
.intro-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text .section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #de5e0915;
    color: #de5e09;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.intro-stat-item {
    text-align: left;
}

.intro-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #de5e09;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.intro-stat-item:hover .intro-stat-number {
    transform: scale(1.1);
    text-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.intro-stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.intro-image {
    position: relative;
}

.intro-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.intro-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Placeholder styles (kept for backward compatibility) */
.intro-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #de5e0915, #de5e0915);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.intro-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.intro-image-placeholder .placeholder-icon {
    font-size: 5rem;
    line-height: 1;
}

.intro-image-placeholder .placeholder-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #de5e09;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Banner Images Grid */
.banner-images {
    animation: fadeInLeft 0.8s ease-out;
}

.banner-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1rem;
}

.banner-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.banner-img.img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.banner-img.img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.banner-img.img-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #de5e0920, #FFC85720);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.img-icon {
    font-size: 3rem;
}

.img-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Banner Content */
.banner-content {
    animation: fadeInLeft 0.8s ease-out;
}

/* Banner Badge */
.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #de5e0910, #de5e0910);
    border: 2px solid #de5e0930;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
    color: #de5e09;
}

.badge-icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    stroke: currentColor;
}

.banner-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #de5e09;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-icon {
    width: 20px !important;
    height: 20px !important;
    margin-right: 0.5rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-primary:hover .btn-icon {
    transform: translateX(3px);
}

.btn-secondary:hover .btn-icon {
    transform: scale(1.2);
}

/* Trust Indicators */
.banner-trust {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 20px !important;
    height: 20px !important;
    color: #10b981;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Banner Visual Area */
.banner-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease-out;
}

.center-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    animation: rotate 20s linear infinite;
}

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

/* Floating Visual Cards */
.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    border: 2px solid #f0f0f0;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.card-icon.orange {
    background: linear-gradient(135deg, #de5e09, #de5e09);
}

.card-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.card-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.card-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

/* Positioning for each card with enhanced animations */
.visual-card.card-1 {
    top: 10%;
    left: 5%;
    animation: floatCard1 8s ease-in-out infinite;
    max-width: 280px;
}

.visual-card.card-2 {
    top: 15%;
    right: 0;
    animation: floatCard2 7s ease-in-out infinite;
    max-width: 250px;
}

.visual-card.card-3 {
    bottom: 20%;
    left: 0;
    animation: floatCard3 9s ease-in-out infinite;
    max-width: 260px;
}

.visual-card.card-4 {
    bottom: 10%;
    right: 5%;
    animation: floatCard4 6s ease-in-out infinite;
    max-width: 270px;
}

@keyframes floatCard1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(1deg);
    }
    50% {
        transform: translate(-5px, -25px) rotate(-1deg);
    }
    75% {
        transform: translate(15px, -10px) rotate(0.5deg);
    }
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-12px, 18px) rotate(-1deg);
    }
    66% {
        transform: translate(8px, 25px) rotate(1deg);
    }
}

@keyframes floatCard3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    30% {
        transform: translate(15px, 12px) rotate(0.5deg);
    }
    60% {
        transform: translate(-10px, 20px) rotate(-0.5deg);
    }
}

@keyframes floatCard4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    40% {
        transform: translate(-15px, -12px) rotate(-1deg);
    }
    80% {
        transform: translate(10px, -20px) rotate(1deg);
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: var(--white);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #d0d0d0;
}

.btn-secondary:hover {
    border-color: #de5e09;
    color: #de5e09;
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-3px) scale(1.05);
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #de5e0915;
    color: #de5e09;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-tag-center {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto 1rem;
    padding: 0.5rem 1.25rem;
    background: #de5e0915;
    color: #de5e09;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #de5e0920, #FFC85720);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
}

.placeholder-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #de5e09;
}

/* Trusted By Section */
.trusted-by-section {
    background: #f8f9fa;
    padding: 4rem 0;
    overflow: hidden;
}

.logo-scroll-container {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.logo-scroll-container::before,
.logo-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.logo-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

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

.logo-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.client-logo:hover::before {
    left: 100%;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: var(--transition);
}

.client-logo:hover .logo-placeholder svg {
    opacity: 1;
}

/* Products Section */
.products-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

/* Products Header - Centered */
.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title-centered {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-centered {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Grid - Centered with Max Width */
.products-grid-centered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Product Cards */
.product-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card-modern:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: #de5e0950;
}

/* Highlighted Middle Card */
.product-card-modern.highlighted-modern {
    background: linear-gradient(135deg, #de5e0905, #de5e0905);
    border: 3px solid #de5e09;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    transform: scale(1.05);
}

.product-card-modern.highlighted-modern:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
}

/* Product Icon Large */
.product-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #de5e0910, #de5e0910);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.product-icon-large svg {
    width: 40px;
    height: 40px;
    color: #de5e09;
}

.product-icon-large.premium-icon {
    background: linear-gradient(135deg, #de5e09, #de5e09);
}

.product-icon-large.premium-icon svg {
    color: white;
}

.product-card-modern:hover .product-icon-large {
    transform: rotateY(360deg) scale(1.1);
}

/* Modern Badges */
.product-badge-modern {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge-modern.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.product-badge-modern.premium {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: white;
}

.product-badge-modern.new {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

/* Modern Product Title */
.product-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Modern Product Description */
.product-description-modern {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Modern Features List */
.product-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    width: 100%;
}

.product-features-modern li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-check-icon {
    width: 22px !important;
    height: 22px !important;
    color: #10b981;
    flex-shrink: 0;
}

.product-features-modern li span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Modern Product Button */
.product-btn-modern {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid #de5e09;
    background: transparent;
    color: #de5e09;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.product-btn-modern:hover {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.product-btn-modern.primary-btn {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: white;
    border: none;
}

.product-btn-modern.primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-arrow {
    width: 20px !important;
    height: 20px !important;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

/* 3-Product Card Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
    border-color: #de5e0940;
}

/* Highlighted middle card */
.product-card.highlighted {
    background: linear-gradient(135deg, #de5e0908, #de5e0908);
    border-color: #de5e0930;
    transform: scale(1.02);
}

.product-card.highlighted:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

/* Product Card Header */
.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-icon {
    font-size: 3rem;
    line-height: 1;
}

/* Product Icon Images */
.product-icon-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Lighten E-Campus logo */
.product-card:nth-child(3) .product-icon-img img {
    filter: brightness(1.4) saturate(1.1);
}

.ecampus-logo {
    width: 80px;
    height: 80px;
}

/* Product Badges */
.product-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
}

.product-badge.premium {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: var(--white);
}

.product-badge.new {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: var(--white);
}

/* Product Card Content */
.product-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-card-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Product Features List */
.product-card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.check {
    color: #de5e09;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Product Button */
.product-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    background: transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.product-btn:hover {
    border-color: #de5e09;
    color: #de5e09;
    transform: translateY(-2px);
}

.product-btn.primary {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: var(--white);
    border: none;
}

.product-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

/* Old product showcase styles (kept for backward compatibility) */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse > * {
    direction: ltr;
}

.product-mockup {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #de5e0920, #FFC85720);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.product-mockup:hover {
    transform: scale(1.05);
}

.mockup-icon {
    font-size: 4rem;
}

.mockup-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #de5e09;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feature-check {
    color: #de5e09;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

/* Services Header - Centered */
.services-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Services Grid - Modern Centered */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Service Cards */
.service-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

/* Featured Service Card */
.service-card-modern.featured-service {
    background: linear-gradient(135deg, #de5e0905, #de5e0905);
    border: 3px solid #de5e09;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.15);
    transform: scale(1.05);
}

.service-card-modern.featured-service:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.25);
}

/* Service Badge Top */
.service-badge-top {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Icon Modern */
.service-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-icon-modern svg {
    width: 40px;
    height: 40px;
    color: white;
}

.service-icon-modern.blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-icon-modern.orange {
    background: linear-gradient(135deg, #de5e09, #de5e09);
}

.service-icon-modern.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

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

/* Service Title Modern */
.service-title-modern {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Service Description Modern */
.service-description-modern {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Service Features Modern */
.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    width: 100%;
}

.service-features-modern li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.service-check-icon {
    width: 22px !important;
    height: 22px !important;
    color: #10b981;
    flex-shrink: 0;
}

.service-features-modern li span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Service Button Modern */
.service-btn-modern {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid #de5e09;
    background: transparent;
    color: #de5e09;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.service-btn-modern:hover {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.service-btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

.service-btn-modern.primary {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: white;
    border: none;
}

.service-btn-modern.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* New Services Showcase Design */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-large {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #de5e09, #de5e09);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card-large:hover::before {
    transform: scaleX(1);
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #de5e0915;
}

/* Featured Service Card */
.service-card-large.featured {
    background: linear-gradient(135deg, #de5e0908, #de5e0908);
    border: 2px solid #de5e0920;
}

.service-card-large.featured::before {
    height: 6px;
}

/* Service Number */
.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: #de5e0910;
    line-height: 1;
}

/* Service Icon */
.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-card-large:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Service Content */
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.service-check {
    color: #de5e09;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Service Link */
.service-link {
    color: #de5e09;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
    color: #de5e09;
}

/* Old services grid styles (kept for backward compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

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

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #FFF5F0 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #de5e0910, #de5e0910);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #de5e0908, #de5e0908);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Testimonials Progress Bar */
.testimonials-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #de5e09, #de5e09);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

/* Testimonials Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Testimonials Dots */
.testimonials-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

.testimonial-dot:hover {
    background: rgba(255, 107, 53, 0.5);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    width: 32px;
    border-radius: 6px;
}

/* Play/Pause Button */
.testimonials-play-pause {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.testimonials-play-pause:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.testimonials-play-pause svg {
    width: 20px;
    height: 20px;
}

.testimonials-play-pause.paused {
    background: #718096;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #de5e09;
    color: #de5e09;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: var(--transition);
}

.indicator:hover {
    background: #de5e0950;
    transform: scale(1.2);
}

.indicator.active {
    background: linear-gradient(135deg, #de5e09, #de5e09);
    width: 30px;
    border-radius: 6px;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.testimonials-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.testimonials-scroll-container:active {
    cursor: grabbing;
}

.testimonials-scroll-container::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

.testimonials-section .testimonial-card {
    flex: 0 0 360px;
    background: linear-gradient(135deg, #de5e09, #de5e09);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 1;
    transform: none;
    scroll-snap-align: start;
    animation: none;
    overflow: hidden;
}

.testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.35);
}

.testimonials-section .testimonial-card:hover::before {
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
}

/* Quote Mark */
.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    z-index: 0;
}

/* Star Rating */
.stars-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.star {
    color: #FFD700;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: starPulse 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.1s; }
.star:nth-child(3) { animation-delay: 0.2s; }
.star:nth-child(4) { animation-delay: 0.3s; }
.star:nth-child(5) { animation-delay: 0.4s; }

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

.testimonials-section .testimonial-text {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.author-avatar-large svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.author-info {
    text-align: left;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.quote-icon {
    font-size: 3rem;
    color: #de5e09;
    opacity: 0.3;
    line-height: 1;
}

/* ==================== TESTIMONIAL CAROUSEL - FADE BASED ==================== */
.testimonial-carousel {
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 320px; /* Minimum for shortest testimonials */
    transition: height 0.5s ease; /* Smooth height transitions between slides */
}

/* Fade-based slide transitions */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Removed height: 100% - let content dictate height naturally */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative; /* Relative positioning allows natural height */
}

/* Inner content box with dynamic height and smart centering */
.testimonial-slide > div {
    /* Removed height: 100% */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center short content */
    min-height: 300px; /* Minimum for short testimonials */
    max-height: none; /* No maximum - let long testimonials expand naturally */
}

/* Navigation Arrows */
.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: #de5e09;
    color: white;
}

/* Desktop: absolute side positioning */
@media (min-width: 769px) {
    .testimonial-nav-btn {
        position: absolute;
        top: 220px;
        transform: none;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next {
        right: 0;
    }
}

/* Carousel Dots */
.testimonial-dots {
    margin-top: 0;
}

.carousel-dot {
    cursor: pointer;
    border: none;
    outline: none;
}

.carousel-dot:hover {
    transform: scale(1.2);
}

.carousel-dot:focus {
    outline: 2px solid #de5e09;
    outline-offset: 2px;
}

/* Responsive Carousel Adjustments */
@media (max-width: 768px) {
    .testimonial-nav-btn {
        position: static;
        width: 36px;
        height: 36px;
    }

    .testimonial-slides {
        min-height: auto;
    }

    .testimonial-slide > div {
        min-height: auto;
        max-height: none;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-nav-btn {
        width: 32px;
        height: 32px;
    }

    .testimonial-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: #de5e0930;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.faq-item.active {
    border-color: #de5e09;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: #de5e09;
}

.faq-icon {
    font-size: 1.5rem;
    color: #de5e09;
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}


/* ==================== BANNER CAROUSEL STYLES ==================== */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Carousel Navigation Dots */
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .banner-carousel {
        height: 75vh;
    }

    .carousel-slide h1 {
        font-size: 3.5rem !important;
    }

    .carousel-slide p {
        font-size: 1.25rem !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-carousel {
        height: 70vh;
    }

    .carousel-slide h1 {
        font-size: 2.5rem !important;
    }

    .carousel-slide p {
        font-size: 1.125rem !important;
    }

    .carousel-slide .max-w-7xl {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .banner-carousel {
        height: 65vh;
    }

    .carousel-slide h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .carousel-slide p {
        font-size: 1rem !important;
    }
}

/* ==================== UNIVERSITIES CAROUSEL ==================== */
@keyframes scroll-horizontal {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* 14 cards × (280px width + 24px gap) = 4256px */
        transform: translate3d(-4256px, 0, 0);
    }
}

#universities-carousel-container {
    position: relative;
    overflow: hidden;
}

#universities-carousel {
    display: flex;
    gap: 1.5rem;
    animation: scroll-horizontal 32s linear infinite;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Pause animation on hover */
#universities-carousel-container:hover #universities-carousel {
    animation-play-state: paused;
}

/* University card min-width for consistent sizing */
.university-card {
    min-width: 280px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .university-card {
        min-width: 200px;
    }

    @keyframes scroll-horizontal {
        0% { transform: translate3d(0, 0, 0); }
        100% { transform: translate3d(-3136px, 0, 0); } /* 14 × (200px + 24px) */
    }

    #universities-carousel {
        animation-duration: 22s;
    }
}

@media (max-width: 480px) {
    .university-card {
        min-width: 180px;
    }

    @keyframes scroll-horizontal {
        0% { transform: translate3d(0, 0, 0); }
        100% { transform: translate3d(-2856px, 0, 0); } /* 14 × (180px + 24px) */
    }

    #universities-carousel {
        animation-duration: 18s;
    }
}

