/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #ffffff;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* Modern CSS Variables for consistent theming */
:root {
    --primary-blue: #2491f8;
    --secondary-blue: #047fe4;
    --accent-blue: #3182ce;
    --light-blue: #63b3ed;
    --purple-accent: #764ba2;
    --teal-accent: #38b2ac;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --border-light: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 1px;
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all var(--transition-normal);
    list-style: none;
    padding: 1rem 0;
    margin-top: 16px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #3182ce;
    transform: translateX(4px);
}

.dropdown-toggle i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: videoZoom 20s ease-in-out infinite alternate;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: imageZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes imageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 102, 168, 0.01), 
        rgba(118, 75, 162, 0.01),
        rgba(23, 128, 214, 0.01),
        rgba(129, 140, 248, 0.01)
    );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    text-align: center;
    color: rgb(210, 255, 214);
    z-index: 10;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: heroTitleSlide 1.2s ease-out;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #38b2ac, #667eea, #764ba2);
    border-radius: 2px;
    animation: titleUnderline 1.5s ease-out 0.5s forwards;
}

@keyframes titleUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroSubtitleFade 1s ease-out 0.3s forwards;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

@keyframes heroSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroButtonsSlide 1s ease-out 0.6s forwards;
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 1s ease-in-out;
    z-index: 2;
}

/* Hide slider initially only when there's a video (index page) */
.hero-bg-video + .hero-slider {
    opacity: 0;
    visibility: hidden;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 2s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(209, 225, 240, 0.1) 0%,
        rgba(86, 112, 134, 0.05) 50%,
        rgba(49, 130, 206, 0.1) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.5s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    outline: none;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Hero Slider Navigation for Academy */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.slider-dot:hover,
.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    font-size: 1.2rem;
    outline: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Slide Content Animation - Enhanced for smoother transitions */

/* Enhanced slider visual effects */
.hero-slider {
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

/* Smooth slide transitions with staggered animations */
.slide {
    will-change: opacity, transform;
}

.slide.active {
    animation: slideZoomIn 2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes slideZoomIn {
    0% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Improved slide badge animation */
.slide-badge {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.8s;
}

.slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide title animation */
.slide-title {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.3s cubic-bezier(0.4, 0.0, 0.2, 1) 1s;
}

.slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide description animation */
.slide-description {
    transform: translateY(25px);
    opacity: 0;
    transition: all 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 1.2s;
}

.slide.active .slide-description {
    transform: translateY(0);
    opacity: 0.95;
}

/* Enhanced button animation */
.slide .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 1.4s;
}

.slide.active .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 14px rgba(36, 145, 248, 0.4);
    animation: gradientPulse 4s ease infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.6);
    animation-play-state: paused;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.btn-secondary:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: modernBounce 2s ease-in-out infinite;
    opacity: 0;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes modernBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 0.7;
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 0.9;
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: relative;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: arrowShimmer 2s ease-in-out infinite;
}

@keyframes arrowShimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(50px);
}

.animate-on-scroll.animate-from-left.animate-in,
.animate-on-scroll.animate-from-right.animate-in {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animate-in {
    transform: scale(1);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Modern Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, white 0%, var(--bg-lighter) 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

/* Modern Card Hover Effects */
.modern-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.modern-card:hover::before {
    left: 100%;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.service-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Healthcare Services - Red Icon */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    box-shadow: 0 8px 16px rgba(229, 62, 62, 0.3);
}

/* EcoContinuum Recycling - Green Icon */
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #38a169, #2f855a);
    box-shadow: 0 8px 16px rgba(56, 161, 105, 0.3);
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: #5a67d8;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

/* About Preview */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    color: #718096;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.about-features i {
    color: #38b2ac;
    font-size: 1.25rem;
    width: 20px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(36, 145, 248, 0.3);
    transition: transform var(--transition-normal);
}

/* Quality Assurance - Purple */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    box-shadow: 0 8px 16px rgba(128, 90, 213, 0.3);
}

/* 24/7 Support - Orange */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 8px 16px rgba(237, 137, 54, 0.3);
}

/* Innovation - Yellow */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #ecc94b, #d69e2e);
    box-shadow: 0 8px 16px rgba(236, 201, 75, 0.3);
}

/* Partnership - Teal */
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #38b2ac, #319795);
    box-shadow: 0 8px 16px rgba(56, 178, 172, 0.3);
}

/* Sustainability - Green */
.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 8px 16px rgba(72, 187, 120, 0.3);
}

/* Expertise - Red */
.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    box-shadow: 0 8px 16px rgba(245, 101, 101, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(36, 145, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(4, 127, 228, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.03), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(36, 145, 248, 0.3);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-accent), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group-inline input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-inline input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group-inline .btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    white-space: nowrap;
}

.form-group-inline .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.9);
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-date {
    color: #718096;
}

.blog-category {
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.blog-link:hover {
    color: #5a67d8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #2491f8 25%, 
        #047fe4 50%, 
        #0ea5e9 75%, 
        #38bdf8 100%
    );
    background-size: 300% 300%;
    animation: ctaGradientFlow 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaOverlayShift 12s ease infinite;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: ctaShimmer 6s ease infinite;
    pointer-events: none;
}

/* Animated Icons */
.cta-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.cta-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

.cta-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-name: floatIcon1;
    animation-delay: 0s;
}

.cta-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-name: floatIcon2;
    animation-delay: 1s;
}

.cta-icon:nth-child(3) {
    bottom: 20%;
    left: 8%;
    animation-name: floatIcon3;
    animation-delay: 2s;
}

.cta-icon:nth-child(4) {
    bottom: 30%;
    right: 12%;
    animation-name: floatIcon4;
    animation-delay: 3s;
}

.cta-icon:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-name: floatIcon5;
    animation-delay: 4s;
}

.cta-icon:nth-child(6) {
    top: 60%;
    right: 8%;
    animation-name: floatIcon6;
    animation-delay: 5s;
}

@keyframes floatIcon1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(-25px) rotate(-90deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes floatIcon3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(15px) rotate(270deg) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes floatIcon4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(25px) rotate(90deg) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes floatIcon5 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.4;
    }
    50% {
        transform: translateX(20px) translateY(-15px) rotate(-180deg) scale(1.25);
        opacity: 0.6;
    }
}

@keyframes floatIcon6 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-35px) translateX(-10px) rotate(45deg) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .contact-cta {
        padding: 3rem 0;
        min-height: 280px;
    }
    
    .cta-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-icon {
        font-size: 1.5rem;
    }
    
    .cta-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }
    
    .cta-icon:nth-child(2) {
        top: 15%;
        right: 8%;
    }
    
    .cta-icon:nth-child(3) {
        bottom: 15%;
        left: 3%;
    }
    
    .cta-icon:nth-child(4) {
        bottom: 25%;
        right: 6%;
    }
    
    .cta-icon:nth-child(5) {
        top: 35%;
        left: 2%;
    }
    
    .cta-icon:nth-child(6) {
        top: 55%;
        right: 4%;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 2.5rem 0;
        min-height: 240px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@keyframes ctaGradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ctaOverlayShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-20px);
    }
    66% {
        transform: translateX(-20px) translateY(30px);
    }
}

@keyframes ctaShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #e0f2fe, #bae6fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTitleGlow 3s ease infinite alternate;
}

@keyframes ctaTitleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content .btn {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: #1e3a8a;
}

.cta-content .btn:hover::before {
    width: 100%;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%
    );
    background-size: 400% 400%;
    animation: footerGradientShift 15s ease infinite;
    color: white;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes footerGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    border-radius: 16px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.4));
}

.footer-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 
        0 12px 24px rgba(96, 165, 250, 0.3),
        0 0 0 4px rgba(96, 165, 250, 0.1);
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.contact-info i {
    color: #60a5fa;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    margin: 0 -2rem -2rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Form Styles */
.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Enhanced Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }
    
    .nav-menu.active li {
        animation: slideInMobile 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(49, 130, 206, 0.1);
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.9);
        margin-top: 0.5rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 6px;
        margin: 0.25rem 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: translateX(5px);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .academy-hero .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
        min-height: 80vh !important;
    }
    
    .academy-hero .hero-slider .hero-slide[style*="background-image"] {
        background-size: cover !important;
        background-position: center center !important;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1.5rem;
    }

    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Testimonials Section Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    /* Newsletter Section Mobile */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-group-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group-inline input,
    .form-group-inline .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Contact CTA Mobile */
    .contact-cta {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo img {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 16px 20px;
    }

    /* Hero Slider Mobile */
    .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .academy-hero .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
        min-height: 70vh !important;
    }
    
    .academy-hero .hero-slider .hero-slide[style*="background-image"] {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    .slider-nav {
        bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }

    /* Stats Section Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Features Section Small Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* Testimonials Section Small Mobile */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: none;
        border-radius: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .close {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        margin-bottom: 0.75rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Hero Slider Small Mobile */
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .modal-content {
        padding: 1.25rem;
    }
}

/* Animation for mobile menu items */
@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:active {
        background: rgba(49, 130, 206, 0.1);
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Mobile device specific optimizations */
.mobile-device .hero-bg-video {
    transform: none !important;
    animation: none !important;
}

.mobile-device .particles {
    display: none;
}

.mobile-device .hero-content::before {
    display: none;
}

/* Reduced motion support */
.reduce-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

.reduce-motion .hero-bg-video {
    animation: none !important;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .nav-menu {
        height: -webkit-fill-available;
    }
    
    /* Fix iOS input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .hero-bg-video {
        object-position: center center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    /* Improve button spacing and sizing */
    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Better service card layout */
    .service-card {
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    /* Improve blog card mobile layout */
    .blog-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .blog-image {
        height: 200px;
        overflow: hidden;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Better footer mobile layout */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 1rem;
    }
    
    /* Improve contact info display */
    .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-info p:last-child {
        border-bottom: none;
    }
    
    .contact-info i {
        width: 20px;
        text-align: center;
        color: #667eea;
    }
    
    /* Mobile-specific animations */
    .animate-on-scroll {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.animate {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Improve scroll indicator */
    .scroll-indicator {
        bottom: 30px;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .modal {
        padding: 0;
    }
    
    .modal-content {
        border-radius: 20px 20px 0 0;
        margin: auto 0 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        color: #333;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 12px;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0.25rem;
        transform: scale(1.2);
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    height: 60vh;
    min-height: 400px;
}

.blog-filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-medium);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.main-blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--border-light);
}

.featured-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 2.5rem;
}

.featured-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.featured-post-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    transition: all var(--transition-normal);
    opacity: 1;
    transform: translateY(0);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 145, 248, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.read-more-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.post-excerpt {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-blue);
}

.post-excerpt p {
    margin: 0;
    font-style: italic;
    color: var(--text-medium);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.blog-author {
    color: var(--text-medium);
}

.blog-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.blog-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.blog-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.blog-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.page-link:hover:not(.disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-blue);
}

/* Search Widget */
.search-widget {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(36, 145, 248, 0.1);
}

.search-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.recent-post-content h4 a:hover {
    color: var(--primary-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.category-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.post-count {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-medium);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link:hover .post-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
    background: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design for Blog Page */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .featured-post-content {
        padding: 2rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-blog-section {
        padding: 2rem 0;
    }
    
    .featured-post-content {
        padding: 1.5rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.25rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .recent-post {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
    }
}

/* Blog Post Page Styles */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--secondary-blue);
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--text-medium);
    font-weight: 500;
}

.blog-post-content {
    padding: 4rem 0;
    background: white;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.post-main {
    max-width: none;
}

.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.post-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.post-date {
    color: var(--text-light);
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.post-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.post-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.post-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

.post-author {
    color: var(--text-medium);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.post-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background: #006ba1;
    transform: translateY(-2px);
}

.share-btn.email {
    background: var(--text-medium);
    color: white;
}

.share-btn.email:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    gap: 1rem;
}

.post-navigation .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.post-navigation .nav-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.post-navigation .nav-link.back-to-blog {
    background: var(--primary-blue);
    color: white;
}

.post-navigation .nav-link.back-to-blog:hover {
    background: var(--secondary-blue);
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 2rem;
}

.author-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.author-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.author-widget .widget-title::after {
    background: white;
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.author-avatar {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.author-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.related-posts-widget .related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.related-post-content h4 a:hover {
    color: var(--primary-blue);
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive Design for Blog Post */
@media (max-width: 1024px) {
    .post-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb-current {
        flex-basis: 100%;
        margin-top: 0.5rem;
    }
    
    .blog-post-content {
        padding: 2rem 0;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post {
        flex-direction: column;
    }
    
    .related-post-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-featured-image img {
        height: 200px;
    }
    
    .post-content h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .post-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ACADEMY OVERVIEW SECTION STYLES
   =================================== */

.academy-overview {
    padding: 10rem 0 2rem 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%),
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1s ease-out;
    min-height: 100vh;
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0;
    z-index: 1;
    animation: gridFadeIn 2s ease-out 0.5s forwards;
}

@keyframes gridFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.academy-overview .container {
    position: relative;
    z-index: 2;
}

/* Floating Animation Elements */
.academy-overview::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Additional floating elements */
.overview-text::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15), transparent);
    border-radius: 50%;
    animation: floatReverse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(15px) rotate(-180deg) scale(1.1);
        opacity: 0.8;
    }
}

.academy-overview .section-header {
    margin-bottom: 8rem;
    opacity: 0;
    animation: headerSlideUp 1.2s ease-out 0.3s forwards;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Hero Introduction Card */
.overview-hero-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 40px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    margin-bottom: 8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    position: relative;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-content {
    display: flex;
    align-items: center;
    padding: 5rem;
    gap: 4rem;
    position: relative;
}

.hero-card-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 24px 48px rgba(36, 145, 248, 0.3),
        0 12px 24px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.hero-card-icon i {
    font-size: 3.5rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-card-text h3 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-card-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
}

/* Main Grid Layout */
.overview-main-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Enhanced Card Styles */
.overview-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 32px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.overview-card:hover::before {
    opacity: 1;
}

/* Enhanced Card Headers */
.card-header {
    background: 
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    padding: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.3),
        0 8px 16px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.header-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Enhanced Card Content */
.card-content {
    padding: 3.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Tutorial Grid */
.tutorial-grid {
    display: grid;
    gap: 1.75rem;
}

.tutorial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(36, 145, 248, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.tutorial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(36, 145, 248, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tutorial-item:hover::before {
    opacity: 1;
}

.tutorial-item:hover {
    transform: translateY(-4px) translateX(8px);
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.12),
        0 8px 16px rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.15);
}

.tutorial-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 16px rgba(36, 145, 248, 0.2),
        0 4px 8px rgba(36, 145, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.tutorial-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.tutorial-icon i {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.tutorial-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.tutorial-info strong {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.tutorial-info span {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    border-radius: 16px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.125rem;
    color: white;
}

.feature-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-info strong {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-info span {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.academy-overview .section-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.8;
    margin-top: 2rem;
}

@keyframes headerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview .section-title {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(36, 145, 248, 0.3);
    }
    100% {
        filter: brightness(1.1);
        text-shadow: 0 0 30px rgba(36, 145, 248, 0.5);
    }
}

.academy-overview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    opacity: 0;
    animation: contentSlideIn 1.5s ease-out 0.6s forwards;
    min-height: 600px;
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateX(-30px);
    animation: textCardSlide 1.8s ease-out 0.9s forwards;
    height: fit-content;
}

@keyframes textCardSlide {
    0% {
        transform: translateX(-30px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.overview-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: topBarExpand 1.2s ease-out 1.2s forwards;
}

@keyframes topBarExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.overview-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.overview-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.overview-text h3 i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(36, 145, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tutorial-list li {
    background: rgba(36, 145, 248, 0.05);
    border: 1px solid rgba(36, 145, 248, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlideIn 0.8s ease-out forwards;
}

.tutorial-list li:nth-child(1) { animation-delay: 1.5s; }
.tutorial-list li:nth-child(2) { animation-delay: 1.7s; }
.tutorial-list li:nth-child(3) { animation-delay: 1.9s; }
.tutorial-list li:nth-child(4) { animation-delay: 2.1s; }
.tutorial-list li:nth-child(5) { animation-delay: 2.3s; }
.tutorial-list li:nth-child(6) { animation-delay: 2.5s; }
.tutorial-list li:nth-child(7) { animation-delay: 2.7s; }

@keyframes listItemSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tutorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.tutorial-list li:hover {
    background: rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.2);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.15);
}

.tutorial-list li:hover::before {
    transform: scaleY(1);
}

.tutorial-list li:hover strong {
    animation: textGlow 0.3s ease-out;
}

@keyframes textGlow {
    0% {
        text-shadow: none;
    }
    100% {
        text-shadow: 0 0 8px rgba(36, 145, 248, 0.4);
    }
}

.tutorial-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.academy-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.academy-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideUp 0.6s ease-out forwards;
}

.academy-features li:nth-child(1) { animation-delay: 2.9s; }
.academy-features li:nth-child(2) { animation-delay: 3.1s; }
.academy-features li:nth-child(3) { animation-delay: 3.3s; }
.academy-features li:nth-child(4) { animation-delay: 3.5s; }
.academy-features li:nth-child(5) { animation-delay: 3.7s; }
.academy-features li:nth-child(6) { animation-delay: 3.9s; }

@keyframes featureSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-features li:last-child {
    border-bottom: none;
}

.academy-features li:hover {
    background: rgba(56, 178, 172, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin: 0 -1rem;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.1);
}

.academy-features li:hover i {
    animation: iconBounce 0.6s ease-out;
    color: var(--primary-blue);
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.academy-features li i {
    color: var(--teal-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.academy-features li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Academy Content Professional Styling */
.academy-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 20px 48px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.academy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.academy-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.03) 0%, transparent 70%);
    z-index: 0;
    animation: contentGlow 8s ease-in-out infinite;
}

@keyframes contentGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 0.6; 
    }
}

.academy-content > * {
    position: relative;
    z-index: 1;
}

.academy-content h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    position: relative;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.academy-content h3:first-child {
    margin-top: 0;
}

.academy-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--teal-accent));
    border-radius: 2px;
}

.academy-content h3 i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
    vertical-align: middle;
}

.academy-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.tutorials-list,
.features-list,
.get-started-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.tutorials-list li,
.features-list li,
.get-started-list li {
    background: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.tutorials-list li::before,
.features-list li::before,
.get-started-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.02) 0%, rgba(56, 178, 172, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.tutorials-list li:hover::before,
.features-list li:hover::before,
.get-started-list li:hover::before {
    opacity: 1;
}

.tutorials-list li:hover,
.features-list li:hover,
.get-started-list li:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(36, 145, 248, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.08);
    border-left-color: var(--teal-accent);
}

.tutorials-list li strong,
.features-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.tutorials-list li i,
.features-list li i,
.get-started-list li i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
    min-width: 20px;
    display: inline-block;
    transition: all var(--transition-normal);
}

.tutorials-list li:hover i,
.features-list li:hover i,
.get-started-list li:hover i {
    color: var(--teal-accent);
    transform: scale(1.1);
}

.tutorials-list li,
.features-list li {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features-list li {
    border-left-color: var(--teal-accent);
}

.features-list li:hover {
    border-left-color: var(--purple-accent);
}

.get-started-list li {
    border-left-color: var(--purple-accent);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.get-started-list li:hover {
    border-left-color: var(--primary-blue);
}

/* Special styling for the guarantee statement */
.academy-content p:last-child {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border: 2px solid rgba(36, 145, 248, 0.2);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.academy-content p:last-child::before {
    content: '🎯';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: white;
    padding: 0 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .academy-content {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .academy-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorials-list li,
    .features-list li,
    .get-started-list li {
        padding: 1rem 1.25rem;
        margin: 0.75rem 0;
    }
    
    .tutorials-list li:hover,
    .features-list li:hover,
    .get-started-list li:hover {
        transform: translateX(4px) translateY(-1px);
    }
}

@media (max-width: 480px) {
    .academy-content {
        padding: 1.5rem 1rem;
        border-radius: var(--border-radius-md);
    }
    
    .academy-content h3 {
        font-size: 1.3rem;
    }
    
    .academy-content p {
        font-size: 1rem;
    }
    
    .tutorials-list li,
    .features-list li,
    .get-started-list li {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(36, 145, 248, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    animation: ctaZoomIn 1s ease-out 4.1s forwards;
}

@keyframes ctaZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.overview-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsSlideUp 0.8s ease-out 4.5s forwards;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-buttons .btn {
    position: relative;
    overflow: hidden;
}

.overview-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.overview-buttons .btn:hover::before {
    left: 100%;
}

.overview-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 1rem;
    opacity: 0;
    transform: translateX(30px) scale(0.9);
    animation: imageSlideIn 1.5s ease-out 1.2s forwards;
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
    border-radius: var(--border-radius-lg);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 2;
}

.overview-image:hover img {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) saturate(1.1);
}

.overview-image:hover::before {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.15), rgba(118, 75, 162, 0.15));
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Desktop Optimizations for Academy Overview */
@media (min-width: 1200px) {
    .academy-overview {
        padding: 10rem 0;
    }
    
    .academy-overview .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 6rem;
        max-width: 1000px;
    }
    
    .academy-overview .section-title {
        font-size: 4rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 2.2fr 1fr;
        gap: 6rem;
        min-height: 700px;
    }
    
    .overview-text {
        padding: 4rem;
        font-size: 1.1rem;
    }
    
    .overview-text > p {
        font-size: 1.2rem;
        line-height: 1.9;
    }
    
    .overview-text h3 {
        font-size: 1.75rem;
        margin: 3rem 0 2rem 0;
    }
    
    .tutorial-list li {
        padding: 1.5rem;
        font-size: 1.05rem;
    }
    
    .academy-features li {
        padding: 1.25rem 0;
        font-size: 1.05rem;
    }
    
    .cta-section {
        padding: 3.5rem;
        margin-top: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
    }
    
    .overview-image {
        min-height: 500px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1440px) {
    .academy-overview {
        padding: 12rem 0;
    }
    
    .academy-overview .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 8rem;
        max-width: 1200px;
    }
    
    .academy-overview .section-title {
        font-size: 4.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.625rem;
        margin-top: 3rem;
    }
    
    .overview-content {
        gap: 8rem;
        min-height: 800px;
    }
    
    .overview-text {
        padding: 5rem;
    }
    
    .overview-text > p {
        font-size: 1.25rem;
        line-height: 2;
    }
    
    .overview-text h3 {
        font-size: 2rem;
    }
    
    .tutorial-list li {
        padding: 2rem;
        font-size: 1.1rem;
    }
    
    .academy-features li {
        padding: 1.5rem 0;
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 4rem;
    }
}

/* Responsive Design for Academy Overview */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .overview-text {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .overview-text {
        padding: 2rem;
    }
    
    .overview-text h3 {
        font-size: 1.3rem;
    }
    
    .tutorial-list li,
    .academy-features li {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .overview-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .academy-overview {
        padding: 3rem 0;
    }
    
    .overview-text {
        padding: 1.5rem;
    }
    
    .overview-text > p {
        font-size: 1rem;
    }
    
    .overview-text h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorial-list li {
        padding: 1rem 0.75rem;
    }
    
    .academy-features li {
        padding: 0.75rem 0;
    }
    
    .academy-features li:hover {
        margin: 0 -0.75rem;
        padding: 0.75rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}

/* Performance optimizations */
.academy-overview * {
    will-change: auto;
}

.academy-overview .overview-text,
.academy-overview .overview-image,
.academy-overview .tutorial-list li,
.academy-overview .academy-features li {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .academy-overview,
    .academy-overview *,
    .academy-overview *::before,
    .academy-overview *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .academy-overview::after,
    .overview-text::after {
        animation: none !important;
    }
    
    .tutorial-list li:hover,
    .academy-features li:hover,
    .overview-image:hover img {
        transform: none !important;
    }
}

/* Enhanced focus states for accessibility */
.overview-buttons .btn:focus {
    outline: 3px solid rgba(36, 145, 248, 0.5);
    outline-offset: 2px;
    animation: focusPulse 1s ease-in-out infinite alternate;
}

@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 145, 248, 0.4);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(36, 145, 248, 0.1);
    }
}

/* Academy Overview Grid Styles */
.overview-content {
    margin-top: 3rem;
}

.overview-intro-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.overview-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.intro-content i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.card-content > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tutorials Card Styles */
.tutorial-items {
    display: grid;
    gap: 1rem;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(36, 145, 248, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-fast);
}

.tutorial-item:hover {
    background: rgba(36, 145, 248, 0.1);
    transform: translateX(5px);
}

.tutorial-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    min-width: 20px;
}

.tutorial-item div {
    display: flex;
    flex-direction: column;
}

.tutorial-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.tutorial-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Features Card Styles */
.feature-items {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid #22c55e;
    transition: all var(--transition-fast);
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #22c55e;
    min-width: 20px;
    margin-top: 0.125rem;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #ffffff;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* Modern CSS Variables for consistent theming */
:root {
    --primary-blue: #2491f8;
    --secondary-blue: #047fe4;
    --accent-blue: #3182ce;
    --light-blue: #63b3ed;
    --purple-accent: #764ba2;
    --teal-accent: #38b2ac;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --border-light: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 1px;
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all var(--transition-normal);
    list-style: none;
    padding: 1rem 0;
    margin-top: 16px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #3182ce;
    transform: translateX(4px);
}

.dropdown-toggle i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: videoZoom 20s ease-in-out infinite alternate;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: imageZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes imageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 102, 168, 0.01), 
        rgba(118, 75, 162, 0.01),
        rgba(23, 128, 214, 0.01),
        rgba(129, 140, 248, 0.01)
    );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    text-align: center;
    color: rgb(210, 255, 214);
    z-index: 10;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: heroTitleSlide 1.2s ease-out;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #38b2ac, #667eea, #764ba2);
    border-radius: 2px;
    animation: titleUnderline 1.5s ease-out 0.5s forwards;
}

@keyframes titleUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroSubtitleFade 1s ease-out 0.3s forwards;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

@keyframes heroSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroButtonsSlide 1s ease-out 0.6s forwards;
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 1s ease-in-out;
    z-index: 2;
}

/* Hide slider initially only when there's a video (index page) */
.hero-bg-video + .hero-slider {
    opacity: 0;
    visibility: hidden;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 2s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(209, 225, 240, 0.1) 0%,
        rgba(86, 112, 134, 0.05) 50%,
        rgba(49, 130, 206, 0.1) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.5s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    outline: none;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Hero Slider Navigation for Academy */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.slider-dot:hover,
.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    font-size: 1.2rem;
    outline: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Slide Content Animation - Enhanced for smoother transitions */

/* Enhanced slider visual effects */
.hero-slider {
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

/* Smooth slide transitions with staggered animations */
.slide {
    will-change: opacity, transform;
}

.slide.active {
    animation: slideZoomIn 2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes slideZoomIn {
    0% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Improved slide badge animation */
.slide-badge {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.8s;
}

.slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide title animation */
.slide-title {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.3s cubic-bezier(0.4, 0.0, 0.2, 1) 1s;
}

.slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide description animation */
.slide-description {
    transform: translateY(25px);
    opacity: 0;
    transition: all 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 1.2s;
}

.slide.active .slide-description {
    transform: translateY(0);
    opacity: 0.95;
}

/* Enhanced button animation */
.slide .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 1.4s;
}

.slide.active .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 14px rgba(36, 145, 248, 0.4);
    animation: gradientPulse 4s ease infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.6);
    animation-play-state: paused;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.btn-secondary:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: modernBounce 2s ease-in-out infinite;
    opacity: 0;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes modernBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 0.7;
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 0.9;
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: relative;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: arrowShimmer 2s ease-in-out infinite;
}

@keyframes arrowShimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(50px);
}

.animate-on-scroll.animate-from-left.animate-in,
.animate-on-scroll.animate-from-right.animate-in {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animate-in {
    transform: scale(1);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Modern Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, white 0%, var(--bg-lighter) 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

/* Modern Card Hover Effects */
.modern-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.modern-card:hover::before {
    left: 100%;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.service-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Healthcare Services - Red Icon */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    box-shadow: 0 8px 16px rgba(229, 62, 62, 0.3);
}

/* EcoContinuum Recycling - Green Icon */
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #38a169, #2f855a);
    box-shadow: 0 8px 16px rgba(56, 161, 105, 0.3);
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: #5a67d8;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

/* About Preview */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    color: #718096;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.about-features i {
    color: #38b2ac;
    font-size: 1.25rem;
    width: 20px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(36, 145, 248, 0.3);
    transition: transform var(--transition-normal);
}

/* Quality Assurance - Purple */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    box-shadow: 0 8px 16px rgba(128, 90, 213, 0.3);
}

/* 24/7 Support - Orange */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 8px 16px rgba(237, 137, 54, 0.3);
}

/* Innovation - Yellow */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #ecc94b, #d69e2e);
    box-shadow: 0 8px 16px rgba(236, 201, 75, 0.3);
}

/* Partnership - Teal */
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #38b2ac, #319795);
    box-shadow: 0 8px 16px rgba(56, 178, 172, 0.3);
}

/* Sustainability - Green */
.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 8px 16px rgba(72, 187, 120, 0.3);
}

/* Expertise - Red */
.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    box-shadow: 0 8px 16px rgba(245, 101, 101, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(36, 145, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(4, 127, 228, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.03), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(36, 145, 248, 0.3);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-accent), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group-inline input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-inline input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group-inline .btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    white-space: nowrap;
}

.form-group-inline .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.9);
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-date {
    color: #718096;
}

.blog-category {
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.blog-link:hover {
    color: #5a67d8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #2491f8 25%, 
        #047fe4 50%, 
        #0ea5e9 75%, 
        #38bdf8 100%
    );
    background-size: 300% 300%;
    animation: ctaGradientFlow 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaOverlayShift 12s ease infinite;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: ctaShimmer 6s ease infinite;
    pointer-events: none;
}

/* Animated Icons */
.cta-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.cta-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

.cta-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-name: floatIcon1;
    animation-delay: 0s;
}

.cta-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-name: floatIcon2;
    animation-delay: 1s;
}

.cta-icon:nth-child(3) {
    bottom: 20%;
    left: 8%;
    animation-name: floatIcon3;
    animation-delay: 2s;
}

.cta-icon:nth-child(4) {
    bottom: 30%;
    right: 12%;
    animation-name: floatIcon4;
    animation-delay: 3s;
}

.cta-icon:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-name: floatIcon5;
    animation-delay: 4s;
}

.cta-icon:nth-child(6) {
    top: 60%;
    right: 8%;
    animation-name: floatIcon6;
    animation-delay: 5s;
}

@keyframes floatIcon1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(-25px) rotate(-90deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes floatIcon3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(15px) rotate(270deg) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes floatIcon4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(25px) rotate(90deg) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes floatIcon5 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.4;
    }
    50% {
        transform: translateX(20px) translateY(-15px) rotate(-180deg) scale(1.25);
        opacity: 0.6;
    }
}

@keyframes floatIcon6 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-35px) translateX(-10px) rotate(45deg) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .contact-cta {
        padding: 3rem 0;
        min-height: 280px;
    }
    
    .cta-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-icon {
        font-size: 1.5rem;
    }
    
    .cta-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }
    
    .cta-icon:nth-child(2) {
        top: 15%;
        right: 8%;
    }
    
    .cta-icon:nth-child(3) {
        bottom: 15%;
        left: 3%;
    }
    
    .cta-icon:nth-child(4) {
        bottom: 25%;
        right: 6%;
    }
    
    .cta-icon:nth-child(5) {
        top: 35%;
        left: 2%;
    }
    
    .cta-icon:nth-child(6) {
        top: 55%;
        right: 4%;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 2.5rem 0;
        min-height: 240px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@keyframes ctaGradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ctaOverlayShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-20px);
    }
    66% {
        transform: translateX(-20px) translateY(30px);
    }
}

@keyframes ctaShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #e0f2fe, #bae6fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTitleGlow 3s ease infinite alternate;
}

@keyframes ctaTitleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content .btn {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: #1e3a8a;
}

.cta-content .btn:hover::before {
    width: 100%;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%
    );
    background-size: 400% 400%;
    animation: footerGradientShift 15s ease infinite;
    color: white;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes footerGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    border-radius: 16px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.4));
}

.footer-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 
        0 12px 24px rgba(96, 165, 250, 0.3),
        0 0 0 4px rgba(96, 165, 250, 0.1);
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.contact-info i {
    color: #60a5fa;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    margin: 0 -2rem -2rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Form Styles */
.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Enhanced Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }
    
    .nav-menu.active li {
        animation: slideInMobile 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(49, 130, 206, 0.1);
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.9);
        margin-top: 0.5rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 6px;
        margin: 0.25rem 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: translateX(5px);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1.5rem;
    }

    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Testimonials Section Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    /* Newsletter Section Mobile */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-group-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group-inline input,
    .form-group-inline .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Contact CTA Mobile */
    .contact-cta {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo img {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 16px 20px;
    }

    /* Hero Slider Mobile */
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    .slider-nav {
        bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }

    /* Stats Section Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Features Section Small Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* Testimonials Section Small Mobile */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: none;
        border-radius: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .close {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        margin-bottom: 0.75rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Hero Slider Small Mobile */
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .modal-content {
        padding: 1.25rem;
    }
}

/* Animation for mobile menu items */
@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:active {
        background: rgba(49, 130, 206, 0.1);
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Mobile device specific optimizations */
.mobile-device .hero-bg-video {
    transform: none !important;
    animation: none !important;
}

.mobile-device .particles {
    display: none;
}

.mobile-device .hero-content::before {
    display: none;
}

/* Reduced motion support */
.reduce-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

.reduce-motion .hero-bg-video {
    animation: none !important;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .nav-menu {
        height: -webkit-fill-available;
    }
    
    /* Fix iOS input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .hero-bg-video {
        object-position: center center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    /* Improve button spacing and sizing */
    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Better service card layout */
    .service-card {
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    /* Improve blog card mobile layout */
    .blog-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .blog-image {
        height: 200px;
        overflow: hidden;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Better footer mobile layout */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 1rem;
    }
    
    /* Improve contact info display */
    .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-info p:last-child {
        border-bottom: none;
    }
    
    .contact-info i {
        width: 20px;
        text-align: center;
        color: #667eea;
    }
    
    /* Mobile-specific animations */
    .animate-on-scroll {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.animate {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Improve scroll indicator */
    .scroll-indicator {
        bottom: 30px;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .modal {
        padding: 0;
    }
    
    .modal-content {
        border-radius: 20px 20px 0 0;
        margin: auto 0 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        color: #333;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 12px;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0.25rem;
        transform: scale(1.2);
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    height: 60vh;
    min-height: 400px;
}

.blog-filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-medium);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.main-blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--border-light);
}

.featured-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 2.5rem;
}

.featured-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.featured-post-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    transition: all var(--transition-normal);
    opacity: 1;
    transform: translateY(0);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 145, 248, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.read-more-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.post-excerpt {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-blue);
}

.post-excerpt p {
    margin: 0;
    font-style: italic;
    color: var(--text-medium);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.blog-author {
    color: var(--text-medium);
}

.blog-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.blog-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.blog-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.blog-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.page-link:hover:not(.disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-blue);
}

/* Search Widget */
.search-widget {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(36, 145, 248, 0.1);
}

.search-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.recent-post-content h4 a:hover {
    color: var(--primary-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.category-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.post-count {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-medium);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link:hover .post-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
    background: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design for Blog Page */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .featured-post-content {
        padding: 2rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-blog-section {
        padding: 2rem 0;
    }
    
    .featured-post-content {
        padding: 1.5rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.25rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .recent-post {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
    }
}

/* Blog Post Page Styles */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--secondary-blue);
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--text-medium);
    font-weight: 500;
}

.blog-post-content {
    padding: 4rem 0;
    background: white;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.post-main {
    max-width: none;
}

.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.post-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.post-date {
    color: var(--text-light);
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.post-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.post-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.post-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

.post-author {
    color: var(--text-medium);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.post-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background: #006ba1;
    transform: translateY(-2px);
}

.share-btn.email {
    background: var(--text-medium);
    color: white;
}

.share-btn.email:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    gap: 1rem;
}

.post-navigation .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.post-navigation .nav-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.post-navigation .nav-link.back-to-blog {
    background: var(--primary-blue);
    color: white;
}

.post-navigation .nav-link.back-to-blog:hover {
    background: var(--secondary-blue);
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 2rem;
}

.author-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.author-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.author-widget .widget-title::after {
    background: white;
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.author-avatar {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.author-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.related-posts-widget .related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.related-post-content h4 a:hover {
    color: var(--primary-blue);
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive Design for Blog Post */
@media (max-width: 1024px) {
    .post-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb-current {
        flex-basis: 100%;
        margin-top: 0.5rem;
    }
    
    .blog-post-content {
        padding: 2rem 0;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post {
        flex-direction: column;
    }
    
    .related-post-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-featured-image img {
        height: 200px;
    }
    
    .post-content h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .post-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ACADEMY OVERVIEW SECTION STYLES
   =================================== */

.academy-overview {
    padding: 10rem 0 2rem 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%),
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1s ease-out;
    min-height: 100vh;
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0;
    z-index: 1;
    animation: gridFadeIn 2s ease-out 0.5s forwards;
}

@keyframes gridFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.academy-overview .container {
    position: relative;
    z-index: 2;
}

/* Floating Animation Elements */
.academy-overview::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Additional floating elements */
.overview-text::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15), transparent);
    border-radius: 50%;
    animation: floatReverse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(15px) rotate(-180deg) scale(1.1);
        opacity: 0.8;
    }
}

.academy-overview .section-header {
    margin-bottom: 8rem;
    opacity: 0;
    animation: headerSlideUp 1.2s ease-out 0.3s forwards;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Hero Introduction Card */
.overview-hero-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 40px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    margin-bottom: 8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    position: relative;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-content {
    display: flex;
    align-items: center;
    padding: 5rem;
    gap: 4rem;
    position: relative;
}

.hero-card-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 24px 48px rgba(36, 145, 248, 0.3),
        0 12px 24px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.hero-card-icon i {
    font-size: 3.5rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-card-text h3 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-card-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
}

/* Main Grid Layout */
.overview-main-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Enhanced Card Styles */
.overview-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 32px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.overview-card:hover::before {
    opacity: 1;
}

/* Enhanced Card Headers */
.card-header {
    background: 
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    padding: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.3),
        0 8px 16px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.header-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Enhanced Card Content */
.card-content {
    padding: 3.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Tutorial Grid */
.tutorial-grid {
    display: grid;
    gap: 1.75rem;
}

.tutorial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(36, 145, 248, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.tutorial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(36, 145, 248, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tutorial-item:hover::before {
    opacity: 1;
}

.tutorial-item:hover {
    transform: translateY(-4px) translateX(8px);
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.12),
        0 8px 16px rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.15);
}

.tutorial-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 16px rgba(36, 145, 248, 0.2),
        0 4px 8px rgba(36, 145, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.tutorial-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.tutorial-icon i {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.tutorial-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.tutorial-info strong {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.tutorial-info span {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    border-radius: 16px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.125rem;
    color: white;
}

.feature-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-info strong {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-info span {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.academy-overview .section-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.8;
    margin-top: 2rem;
}

@keyframes headerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview .section-title {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(36, 145, 248, 0.3);
    }
    100% {
        filter: brightness(1.1);
        text-shadow: 0 0 30px rgba(36, 145, 248, 0.5);
    }
}

.academy-overview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    opacity: 0;
    animation: contentSlideIn 1.5s ease-out 0.6s forwards;
    min-height: 600px;
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateX(-30px);
    animation: textCardSlide 1.8s ease-out 0.9s forwards;
    height: fit-content;
}

@keyframes textCardSlide {
    0% {
        transform: translateX(-30px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.overview-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: topBarExpand 1.2s ease-out 1.2s forwards;
}

@keyframes topBarExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.overview-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.overview-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.overview-text h3 i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(36, 145, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tutorial-list li {
    background: rgba(36, 145, 248, 0.05);
    border: 1px solid rgba(36, 145, 248, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlideIn 0.8s ease-out forwards;
}

.tutorial-list li:nth-child(1) { animation-delay: 1.5s; }
.tutorial-list li:nth-child(2) { animation-delay: 1.7s; }
.tutorial-list li:nth-child(3) { animation-delay: 1.9s; }
.tutorial-list li:nth-child(4) { animation-delay: 2.1s; }
.tutorial-list li:nth-child(5) { animation-delay: 2.3s; }
.tutorial-list li:nth-child(6) { animation-delay: 2.5s; }
.tutorial-list li:nth-child(7) { animation-delay: 2.7s; }

@keyframes listItemSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tutorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.tutorial-list li:hover {
    background: rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.2);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.15);
}

.tutorial-list li:hover::before {
    transform: scaleY(1);
}

.tutorial-list li:hover strong {
    animation: textGlow 0.3s ease-out;
}

@keyframes textGlow {
    0% {
        text-shadow: none;
    }
    100% {
        text-shadow: 0 0 8px rgba(36, 145, 248, 0.4);
    }
}

.tutorial-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.academy-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.academy-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideUp 0.6s ease-out forwards;
}

.academy-features li:nth-child(1) { animation-delay: 2.9s; }
.academy-features li:nth-child(2) { animation-delay: 3.1s; }
.academy-features li:nth-child(3) { animation-delay: 3.3s; }
.academy-features li:nth-child(4) { animation-delay: 3.5s; }
.academy-features li:nth-child(5) { animation-delay: 3.7s; }
.academy-features li:nth-child(6) { animation-delay: 3.9s; }

@keyframes featureSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-features li:last-child {
    border-bottom: none;
}

.academy-features li:hover {
    background: rgba(56, 178, 172, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin: 0 -1rem;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.1);
}

.academy-features li:hover i {
    animation: iconBounce 0.6s ease-out;
    color: var(--primary-blue);
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.academy-features li i {
    color: var(--teal-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.academy-features li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Academy Content Professional Styling */
.academy-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 20px 48px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.academy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.academy-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.03) 0%, transparent 70%);
    z-index: 0;
    animation: contentGlow 8s ease-in-out infinite;
}

@keyframes contentGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 0.6; 
    }
}

.academy-content > * {
    position: relative;
    z-index: 1;
}

.academy-content h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    position: relative;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.academy-content h3:first-child {
    margin-top: 0;
}

.academy-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--teal-accent));
    border-radius: 2px;
}

.academy-content h3 i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
    vertical-align: middle;
}

.academy-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.tutorials-list,
.features-list,
.get-started-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.tutorials-list li,
.features-list li,
.get-started-list li {
    background: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.tutorials-list li::before,
.features-list li::before,
.get-started-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.02) 0%, rgba(56, 178, 172, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.tutorials-list li:hover::before,
.features-list li:hover::before,
.get-started-list li:hover::before {
    opacity: 1;
}

.tutorials-list li:hover,
.features-list li:hover,
.get-started-list li:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(36, 145, 248, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.08);
    border-left-color: var(--teal-accent);
}

.tutorials-list li strong,
.features-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.tutorials-list li i,
.features-list li i,
.get-started-list li i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
    min-width: 20px;
    display: inline-block;
    transition: all var(--transition-normal);
}

.tutorials-list li:hover i,
.features-list li:hover i,
.get-started-list li:hover i {
    color: var(--teal-accent);
    transform: scale(1.1);
}

.tutorials-list li,
.features-list li {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features-list li {
    border-left-color: var(--teal-accent);
}

.features-list li:hover {
    border-left-color: var(--purple-accent);
}

.get-started-list li {
    border-left-color: var(--purple-accent);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.get-started-list li:hover {
    border-left-color: var(--primary-blue);
}

/* Special styling for the guarantee statement */
.academy-content p:last-child {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border: 2px solid rgba(36, 145, 248, 0.2);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.academy-content p:last-child::before {
    content: '🎯';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: white;
    padding: 0 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .academy-content {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .academy-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorials-list li,
    .features-list li,
    .get-started-list li {
        padding: 1rem 1.25rem;
        margin: 0.75rem 0;
    }
    
    .tutorials-list li:hover,
    .features-list li:hover,
    .get-started-list li:hover {
        transform: translateX(4px) translateY(-1px);
    }
}

@media (max-width: 480px) {
    .academy-content {
        padding: 1.5rem 1rem;
        border-radius: var(--border-radius-md);
    }
    
    .academy-content h3 {
        font-size: 1.3rem;
    }
    
    .academy-content p {
        font-size: 1rem;
    }
    
    .tutorials-list li,
    .features-list li,
    .get-started-list li {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(36, 145, 248, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    animation: ctaZoomIn 1s ease-out 4.1s forwards;
}

@keyframes ctaZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.overview-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsSlideUp 0.8s ease-out 4.5s forwards;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-buttons .btn {
    position: relative;
    overflow: hidden;
}

.overview-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.overview-buttons .btn:hover::before {
    left: 100%;
}

.overview-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 1rem;
    opacity: 0;
    transform: translateX(30px) scale(0.9);
    animation: imageSlideIn 1.5s ease-out 1.2s forwards;
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
    border-radius: var(--border-radius-lg);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 2;
}

.overview-image:hover img {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) saturate(1.1);
}

.overview-image:hover::before {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.15), rgba(118, 75, 162, 0.15));
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Desktop Optimizations for Academy Overview */
@media (min-width: 1200px) {
    .academy-overview {
        padding: 10rem 0;
    }
    
    .academy-overview .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 6rem;
        max-width: 1000px;
    }
    
    .academy-overview .section-title {
        font-size: 4rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 2.2fr 1fr;
        gap: 6rem;
        min-height: 700px;
    }
    
    .overview-text {
        padding: 4rem;
        font-size: 1.1rem;
    }
    
    .overview-text > p {
        font-size: 1.2rem;
        line-height: 1.9;
    }
    
    .overview-text h3 {
        font-size: 1.75rem;
        margin: 3rem 0 2rem 0;
    }
    
    .tutorial-list li {
        padding: 1.5rem;
        font-size: 1.05rem;
    }
    
    .academy-features li {
        padding: 1.25rem 0;
        font-size: 1.05rem;
    }
    
    .cta-section {
        padding: 3.5rem;
        margin-top: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
    }
    
    .overview-image {
        min-height: 500px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1440px) {
    .academy-overview {
        padding: 12rem 0;
    }
    
    .academy-overview .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 8rem;
        max-width: 1200px;
    }
    
    .academy-overview .section-title {
        font-size: 4.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.625rem;
        margin-top: 3rem;
    }
    
    .overview-content {
        gap: 8rem;
        min-height: 800px;
    }
    
    .overview-text {
        padding: 5rem;
    }
    
    .overview-text > p {
        font-size: 1.25rem;
        line-height: 2;
    }
    
    .overview-text h3 {
        font-size: 2rem;
    }
    
    .tutorial-list li {
        padding: 2rem;
        font-size: 1.1rem;
    }
    
    .academy-features li {
        padding: 1.5rem 0;
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 4rem;
    }
}

/* Responsive Design for Academy Overview */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .overview-text {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .overview-text {
        padding: 2rem;
    }
    
    .overview-text h3 {
        font-size: 1.3rem;
    }
    
    .tutorial-list li,
    .academy-features li {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .overview-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .academy-overview {
        padding: 3rem 0;
    }
    
    .overview-text {
        padding: 1.5rem;
    }
    
    .overview-text > p {
        font-size: 1rem;
    }
    
    .overview-text h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorial-list li {
        padding: 1rem 0.75rem;
    }
    
    .academy-features li {
        padding: 0.75rem 0;
    }
    
    .academy-features li:hover {
        margin: 0 -0.75rem;
        padding: 0.75rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}

/* Performance optimizations */
.academy-overview * {
    will-change: auto;
}

.academy-overview .overview-text,
.academy-overview .overview-image,
.academy-overview .tutorial-list li,
.academy-overview .academy-features li {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .academy-overview,
    .academy-overview *,
    .academy-overview *::before,
    .academy-overview *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .academy-overview::after,
    .overview-text::after {
        animation: none !important;
    }
    
    .tutorial-list li:hover,
    .academy-features li:hover,
    .overview-image:hover img {
        transform: none !important;
    }
}

/* Enhanced focus states for accessibility */
.overview-buttons .btn:focus {
    outline: 3px solid rgba(36, 145, 248, 0.5);
    outline-offset: 2px;
    animation: focusPulse 1s ease-in-out infinite alternate;
}

@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 145, 248, 0.4);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(36, 145, 248, 0.1);
    }
}

/* Academy Overview Grid Styles */
.overview-content {
    margin-top: 3rem;
}

.overview-intro-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.overview-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.intro-content i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.card-content > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tutorials Card Styles */
.tutorial-items {
    display: grid;
    gap: 1rem;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(36, 145, 248, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-fast);
}

.tutorial-item:hover {
    background: rgba(36, 145, 248, 0.1);
    transform: translateX(5px);
}

.tutorial-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    min-width: 20px;
}

.tutorial-item div {
    display: flex;
    flex-direction: column;
}

.tutorial-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.tutorial-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Features Card Styles */
.feature-items {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid #22c55e;
    transition: all var(--transition-fast);
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #22c55e;
    min-width: 20px;
    margin-top: 0.125rem;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

/* Academy spacing adjustments - Reduce gap between Overview and Gallery */
.academy-overview {
    padding-bottom: 1rem !important;
}

.academy-gallery-section {
    margin-top: -3rem;
    padding-top: 1rem;
}

.academy-gallery {
    margin-top: 0 !important;
    padding-top: 1.5rem !important;
}

/* Academy spacing adjustments */
.academy-gallery-section {
    margin-top: -2rem;
}

.academy-gallery {
    margin-top: 0.5rem !important;
    padding: 2rem 0 !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #ffffff;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* Modern CSS Variables for consistent theming */
:root {
    --primary-blue: #2491f8;
    --secondary-blue: #047fe4;
    --accent-blue: #3182ce;
    --light-blue: #63b3ed;
    --purple-accent: #764ba2;
    --teal-accent: #38b2ac;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --border-light: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 1px;
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all var(--transition-normal);
    list-style: none;
    padding: 1rem 0;
    margin-top: 16px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #3182ce;
    transform: translateX(4px);
}

.dropdown-toggle i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: videoZoom 20s ease-in-out infinite alternate;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: imageZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes imageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 102, 168, 0.01), 
        rgba(118, 75, 162, 0.01),
        rgba(23, 128, 214, 0.01),
        rgba(129, 140, 248, 0.01)
    );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    text-align: center;
    color: rgb(210, 255, 214);
    z-index: 10;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: heroTitleSlide 1.2s ease-out;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #38b2ac, #667eea, #764ba2);
    border-radius: 2px;
    animation: titleUnderline 1.5s ease-out 0.5s forwards;
}

@keyframes titleUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroSubtitleFade 1s ease-out 0.3s forwards;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

@keyframes heroSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroButtonsSlide 1s ease-out 0.6s forwards;
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 1s ease-in-out;
    z-index: 2;
}

/* Hide slider initially only when there's a video (index page) */
.hero-bg-video + .hero-slider {
    opacity: 0;
    visibility: hidden;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 2s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(209, 225, 240, 0.1) 0%,
        rgba(86, 112, 134, 0.05) 50%,
        rgba(49, 130, 206, 0.1) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.5s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    outline: none;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Hero Slider Navigation for Academy */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.slider-dot:hover,
.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    font-size: 1.2rem;
    outline: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Slide Content Animation - Enhanced for smoother transitions */

/* Enhanced slider visual effects */
.hero-slider {
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

/* Smooth slide transitions with staggered animations */
.slide {
    will-change: opacity, transform;
}

.slide.active {
    animation: slideZoomIn 2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes slideZoomIn {
    0% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Improved slide badge animation */
.slide-badge {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.8s;
}

.slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide title animation */
.slide-title {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.3s cubic-bezier(0.4, 0.0, 0.2, 1) 1s;
}

.slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide description animation */
.slide-description {
    transform: translateY(25px);
    opacity: 0;
    transition: all 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 1.2s;
}

.slide.active .slide-description {
    transform: translateY(0);
    opacity: 0.95;
}

/* Enhanced button animation */
.slide .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 1.4s;
}

.slide.active .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 14px rgba(36, 145, 248, 0.4);
    animation: gradientPulse 4s ease infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.6);
    animation-play-state: paused;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.btn-secondary:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: modernBounce 2s ease-in-out infinite;
    opacity: 0;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes modernBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 0.7;
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 0.9;
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: relative;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: arrowShimmer 2s ease-in-out infinite;
}

@keyframes arrowShimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(50px);
}

.animate-on-scroll.animate-from-left.animate-in,
.animate-on-scroll.animate-from-right.animate-in {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animate-in {
    transform: scale(1);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Modern Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, white 0%, var(--bg-lighter) 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

/* Modern Card Hover Effects */
.modern-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.modern-card:hover::before {
    left: 100%;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.service-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Healthcare Services - Red Icon */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    box-shadow: 0 8px 16px rgba(229, 62, 62, 0.3);
}

/* EcoContinuum Recycling - Green Icon */
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #38a169, #2f855a);
    box-shadow: 0 8px 16px rgba(56, 161, 105, 0.3);
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: #5a67d8;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

/* About Preview */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    color: #718096;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.about-features i {
    color: #38b2ac;
    font-size: 1.25rem;
    width: 20px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(36, 145, 248, 0.3);
    transition: transform var(--transition-normal);
}

/* Quality Assurance - Purple */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    box-shadow: 0 8px 16px rgba(128, 90, 213, 0.3);
}

/* 24/7 Support - Orange */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 8px 16px rgba(237, 137, 54, 0.3);
}

/* Innovation - Yellow */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #ecc94b, #d69e2e);
    box-shadow: 0 8px 16px rgba(236, 201, 75, 0.3);
}

/* Partnership - Teal */
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #38b2ac, #319795);
    box-shadow: 0 8px 16px rgba(56, 178, 172, 0.3);
}

/* Sustainability - Green */
.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 8px 16px rgba(72, 187, 120, 0.3);
}

/* Expertise - Red */
.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    box-shadow: 0 8px 16px rgba(245, 101, 101, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(36, 145, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(4, 127, 228, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.03), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(36, 145, 248, 0.3);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-accent), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group-inline input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-inline input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group-inline .btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    white-space: nowrap;
}

.form-group-inline .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.9);
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-date {
    color: #718096;
}

.blog-category {
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.blog-link:hover {
    color: #5a67d8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #2491f8 25%, 
        #047fe4 50%, 
        #0ea5e9 75%, 
        #38bdf8 100%
    );
    background-size: 300% 300%;
    animation: ctaGradientFlow 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaOverlayShift 12s ease infinite;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: ctaShimmer 6s ease infinite;
    pointer-events: none;
}

/* Animated Icons */
.cta-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.cta-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

.cta-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-name: floatIcon1;
    animation-delay: 0s;
}

.cta-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-name: floatIcon2;
    animation-delay: 1s;
}

.cta-icon:nth-child(3) {
    bottom: 20%;
    left: 8%;
    animation-name: floatIcon3;
    animation-delay: 2s;
}

.cta-icon:nth-child(4) {
    bottom: 30%;
    right: 12%;
    animation-name: floatIcon4;
    animation-delay: 3s;
}

.cta-icon:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-name: floatIcon5;
    animation-delay: 4s;
}

.cta-icon:nth-child(6) {
    top: 60%;
    right: 8%;
    animation-name: floatIcon6;
    animation-delay: 5s;
}

@keyframes floatIcon1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(-25px) rotate(-90deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes floatIcon3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(15px) rotate(270deg) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes floatIcon4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(25px) rotate(90deg) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes floatIcon5 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.4;
    }
    50% {
        transform: translateX(20px) translateY(-15px) rotate(-180deg) scale(1.25);
        opacity: 0.6;
    }
}

@keyframes floatIcon6 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-35px) translateX(-10px) rotate(45deg) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .contact-cta {
        padding: 3rem 0;
        min-height: 280px;
    }
    
    .cta-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-icon {
        font-size: 1.5rem;
    }
    
    .cta-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }
    
    .cta-icon:nth-child(2) {
        top: 15%;
        right: 8%;
    }
    
    .cta-icon:nth-child(3) {
        bottom: 15%;
        left: 3%;
    }
    
    .cta-icon:nth-child(4) {
        bottom: 25%;
        right: 6%;
    }
    
    .cta-icon:nth-child(5) {
        top: 35%;
        left: 2%;
    }
    
    .cta-icon:nth-child(6) {
        top: 55%;
        right: 4%;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 2.5rem 0;
        min-height: 240px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@keyframes ctaGradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ctaOverlayShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-20px);
    }
    66% {
        transform: translateX(-20px) translateY(30px);
    }
}

@keyframes ctaShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #e0f2fe, #bae6fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTitleGlow 3s ease infinite alternate;
}

@keyframes ctaTitleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content .btn {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: #1e3a8a;
}

.cta-content .btn:hover::before {
    width: 100%;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%
    );
    background-size: 400% 400%;
    animation: footerGradientShift 15s ease infinite;
    color: white;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes footerGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    border-radius: 16px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.4));
}

.footer-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 
        0 12px 24px rgba(96, 165, 250, 0.3),
        0 0 0 4px rgba(96, 165, 250, 0.1);
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.contact-info i {
    color: #60a5fa;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    margin: 0 -2rem -2rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Form Styles */
.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Enhanced Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }
    
    .nav-menu.active li {
        animation: slideInMobile 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(49, 130, 206, 0.1);
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.9);
        margin-top: 0.5rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 6px;
        margin: 0.25rem 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: translateX(5px);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1.5rem;
    }

    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Testimonials Section Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    /* Newsletter Section Mobile */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-group-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group-inline input,
    .form-group-inline .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Contact CTA Mobile */
    .contact-cta {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo img {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 16px 20px;
    }

    /* Hero Slider Mobile */
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    .slider-nav {
        bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }

    /* Stats Section Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Features Section Small Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* Testimonials Section Small Mobile */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: none;
        border-radius: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .close {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        margin-bottom: 0.75rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Hero Slider Small Mobile */
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .modal-content {
        padding: 1.25rem;
    }
}

/* Animation for mobile menu items */
@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:active {
        background: rgba(49, 130, 206, 0.1);
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Mobile device specific optimizations */
.mobile-device .hero-bg-video {
    transform: none !important;
    animation: none !important;
}

.mobile-device .particles {
    display: none;
}

.mobile-device .hero-content::before {
    display: none;
}

/* Reduced motion support */
.reduce-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

.reduce-motion .hero-bg-video {
    animation: none !important;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .nav-menu {
        height: -webkit-fill-available;
    }
    
    /* Fix iOS input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .hero-bg-video {
        object-position: center center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    /* Improve button spacing and sizing */
    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Better service card layout */
    .service-card {
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    /* Improve blog card mobile layout */
    .blog-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .blog-image {
        height: 200px;
        overflow: hidden;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Better footer mobile layout */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 1rem;
    }
    
    /* Improve contact info display */
    .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-info p:last-child {
        border-bottom: none;
    }
    
    .contact-info i {
        width: 20px;
        text-align: center;
        color: #667eea;
    }
    
    /* Mobile-specific animations */
    .animate-on-scroll {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.animate {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Improve scroll indicator */
    .scroll-indicator {
        bottom: 30px;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .modal {
        padding: 0;
    }
    
    .modal-content {
        border-radius: 20px 20px 0 0;
        margin: auto 0 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        color: #333;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 12px;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0.25rem;
        transform: scale(1.2);
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    height: 60vh;
    min-height: 400px;
}

.blog-filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-medium);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.main-blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--border-light);
}

.featured-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 2.5rem;
}

.featured-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.featured-post-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    transition: all var(--transition-normal);
    opacity: 1;
    transform: translateY(0);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 145, 248, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.read-more-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.post-excerpt {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-blue);
}

.post-excerpt p {
    margin: 0;
    font-style: italic;
    color: var(--text-medium);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.blog-author {
    color: var(--text-medium);
}

.blog-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.blog-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.blog-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.blog-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.page-link:hover:not(.disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-blue);
}

/* Search Widget */
.search-widget {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(36, 145, 248, 0.1);
}

.search-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.recent-post-content h4 a:hover {
    color: var(--primary-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.category-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.post-count {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-medium);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link:hover .post-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
    background: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design for Blog Page */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .featured-post-content {
        padding: 2rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-blog-section {
        padding: 2rem 0;
    }
    
    .featured-post-content {
        padding: 1.5rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.25rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .recent-post {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
    }
}

/* Blog Post Page Styles */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--secondary-blue);
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--text-medium);
    font-weight: 500;
}

.blog-post-content {
    padding: 4rem 0;
    background: white;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.post-main {
    max-width: none;
}

.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.post-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.post-date {
    color: var(--text-light);
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.post-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.post-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.post-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

.post-author {
    color: var(--text-medium);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.post-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background: #006ba1;
    transform: translateY(-2px);
}

.share-btn.email {
    background: var(--text-medium);
    color: white;
}

.share-btn.email:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    gap: 1rem;
}

.post-navigation .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.post-navigation .nav-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.post-navigation .nav-link.back-to-blog {
    background: var(--primary-blue);
    color: white;
}

.post-navigation .nav-link.back-to-blog:hover {
    background: var(--secondary-blue);
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 2rem;
}

.author-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.author-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.author-widget .widget-title::after {
    background: white;
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.author-avatar {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.author-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.related-posts-widget .related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.related-post-content h4 a:hover {
    color: var(--primary-blue);
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive Design for Blog Post */
@media (max-width: 1024px) {
    .post-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb-current {
        flex-basis: 100%;
        margin-top: 0.5rem;
    }
    
    .blog-post-content {
        padding: 2rem 0;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post {
        flex-direction: column;
    }
    
    .related-post-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-featured-image img {
        height: 200px;
    }
    
    .post-content h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .post-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ACADEMY OVERVIEW SECTION STYLES
   =================================== */

.academy-overview {
    padding: 10rem 0 4rem 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%),
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1s ease-out;
    min-height: 100vh;
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0;
    z-index: 1;
    animation: gridFadeIn 2s ease-out 0.5s forwards;
}

@keyframes gridFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.academy-overview .container {
    position: relative;
    z-index: 2;
}

/* Floating Animation Elements */
.academy-overview::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Additional floating elements */
.overview-text::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15), transparent);
    border-radius: 50%;
    animation: floatReverse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(15px) rotate(-180deg) scale(1.1);
        opacity: 0.8;
    }
}

.academy-overview .section-header {
    margin-bottom: 8rem;
    opacity: 0;
    animation: headerSlideUp 1.2s ease-out 0.3s forwards;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Hero Introduction Card */
.overview-hero-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 40px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    margin-bottom: 8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    position: relative;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-content {
    display: flex;
    align-items: center;
    padding: 5rem;
    gap: 4rem;
    position: relative;
}

.hero-card-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 24px 48px rgba(36, 145, 248, 0.3),
        0 12px 24px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.hero-card-icon i {
    font-size: 3.5rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-card-text h3 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-card-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
}

/* Main Grid Layout */
.overview-main-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Enhanced Card Styles */
.overview-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 32px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.overview-card:hover::before {
    opacity: 1;
}

/* Enhanced Card Headers */
.card-header {
    background: 
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    padding: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.3),
        0 8px 16px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.header-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Enhanced Card Content */
.card-content {
    padding: 3.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Tutorial Grid */
.tutorial-grid {
    display: grid;
    gap: 1.75rem;
}

.tutorial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(36, 145, 248, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.tutorial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(36, 145, 248, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tutorial-item:hover::before {
    opacity: 1;
}

.tutorial-item:hover {
    transform: translateY(-4px) translateX(8px);
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.12),
        0 8px 16px rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.15);
}

.tutorial-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 16px rgba(36, 145, 248, 0.2),
        0 4px 8px rgba(36, 145, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.tutorial-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.tutorial-icon i {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.tutorial-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.tutorial-info strong {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.tutorial-info span {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    border-radius: 16px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.125rem;
    color: white;
}

.feature-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-info strong {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-info span {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.academy-overview .section-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.8;
    margin-top: 2rem;
}

@keyframes headerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview .section-title {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(36, 145, 248, 0.3);
    }
    100% {
        filter: brightness(1.1);
        text-shadow: 0 0 30px rgba(36, 145, 248, 0.5);
    }
}

.academy-overview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    opacity: 0;
    animation: contentSlideIn 1.5s ease-out 0.6s forwards;
    min-height: 600px;
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateX(-30px);
    animation: textCardSlide 1.8s ease-out 0.9s forwards;
    height: fit-content;
}

@keyframes textCardSlide {
    0% {
        transform: translateX(-30px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.overview-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: topBarExpand 1.2s ease-out 1.2s forwards;
}

@keyframes topBarExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.overview-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.overview-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.overview-text h3 i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(36, 145, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tutorial-list li {
    background: rgba(36, 145, 248, 0.05);
    border: 1px solid rgba(36, 145, 248, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlideIn 0.8s ease-out forwards;
}

.tutorial-list li:nth-child(1) { animation-delay: 1.5s; }
.tutorial-list li:nth-child(2) { animation-delay: 1.7s; }
.tutorial-list li:nth-child(3) { animation-delay: 1.9s; }
.tutorial-list li:nth-child(4) { animation-delay: 2.1s; }
.tutorial-list li:nth-child(5) { animation-delay: 2.3s; }
.tutorial-list li:nth-child(6) { animation-delay: 2.5s; }
.tutorial-list li:nth-child(7) { animation-delay: 2.7s; }

@keyframes listItemSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tutorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.tutorial-list li:hover {
    background: rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.2);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.15);
}

.tutorial-list li:hover::before {
    transform: scaleY(1);
}

.tutorial-list li:hover strong {
    animation: textGlow 0.3s ease-out;
}

@keyframes textGlow {
    0% {
        text-shadow: none;
    }
    100% {
        text-shadow: 0 0 8px rgba(36, 145, 248, 0.4);
    }
}

.tutorial-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.academy-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.academy-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideUp 0.6s ease-out forwards;
}

.academy-features li:nth-child(1) { animation-delay: 2.9s; }
.academy-features li:nth-child(2) { animation-delay: 3.1s; }
.academy-features li:nth-child(3) { animation-delay: 3.3s; }
.academy-features li:nth-child(4) { animation-delay: 3.5s; }
.academy-features li:nth-child(5) { animation-delay: 3.7s; }
.academy-features li:nth-child(6) { animation-delay: 3.9s; }

@keyframes featureSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-features li:last-child {
    border-bottom: none;
}

.academy-features li:hover {
    background: rgba(56, 178, 172, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin: 0 -1rem;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.1);
}

.academy-features li:hover i {
    animation: iconBounce 0.6s ease-out;
    color: var(--primary-blue);
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.academy-features li i {
    color: var(--teal-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.academy-features li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Academy Content Professional Styling */
.academy-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 20px 48px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.academy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.academy-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.03) 0%, transparent 70%);
    z-index: 0;
    animation: contentGlow 8s ease-in-out infinite;
}

@keyframes contentGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.1) rotate(180deg); 
        opacity: 0.6; 
    }
}

.academy-content > * {
    position: relative;
    z-index: 1;
}

.academy-content h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    position: relative;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.academy-content h3:first-child {
    margin-top: 0;
}

.academy-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--teal-accent));
    border-radius: 2px;
}

.academy-content h3 i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
    vertical-align: middle;
}

.academy-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.tutorials-list,
.features-list,
.get-started-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.tutorials-list li,
.features-list li,
.get-started-list li {
    background: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.tutorials-list li::before,
.features-list li::before,
.get-started-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.02) 0%, rgba(56, 178, 172, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.tutorials-list li:hover::before,
.features-list li:hover::before,
.get-started-list li:hover::before {
    opacity: 1;
}

.tutorials-list li:hover,
.features-list li:hover,
.get-started-list li:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(36, 145, 248, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.08);
    border-left-color: var(--teal-accent);
}

.tutorials-list li strong,
.features-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.tutorials-list li i,
.features-list li i,
.get-started-list li i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
    min-width: 20px;
    display: inline-block;
    transition: all var(--transition-normal);
}

.tutorials-list li:hover i,
.features-list li:hover i,
.get-started-list li:hover i {
    color: var(--teal-accent);
    transform: scale(1.1);
}

.tutorials-list li,
.features-list li {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features-list li {
    border-left-color: var(--teal-accent);
}

.features-list li:hover {
    border-left-color: var(--purple-accent);
}

.get-started-list li {
    border-left-color: var(--purple-accent);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.get-started-list li:hover {
    border-left-color: var(--primary-blue);
}

/* Special styling for the guarantee statement */
.academy-content p:last-child {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border: 2px solid rgba(36, 145, 248, 0.2);
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.academy-content p:last-child::before {
    content: '🎯';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: white;
    padding: 0 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .academy-content {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .academy-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorials-list li,
    .features-list li,
    .get-started-list li {
        padding: 1rem 1.25rem;
        margin: 0.75rem 0;
    }
    
    .tutorials-list li:hover,
    .features-list li:hover,
    .get-started-list li:hover {
        transform: translateX(4px) translateY(-1px);
    }
}

@media (max-width: 480px) {
    .academy-content {
        padding: 1.5rem 1rem;
        border-radius: var(--border-radius-md);
    }
    
    .academy-content h3 {
        font-size: 1.3rem;
    }
    
    .academy-content p {
        font-size: 1rem;
    }
    
    .tutorials-list li,
    .features-list li,
    .get-started-list li {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(36, 145, 248, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    animation: ctaZoomIn 1s ease-out 4.1s forwards;
}

@keyframes ctaZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.overview-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsSlideUp 0.8s ease-out 4.5s forwards;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-buttons .btn {
    position: relative;
    overflow: hidden;
}

.overview-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.overview-buttons .btn:hover::before {
    left: 100%;
}

.overview-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 1rem;
    opacity: 0;
    transform: translateX(30px) scale(0.9);
    animation: imageSlideIn 1.5s ease-out 1.2s forwards;
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
    border-radius: var(--border-radius-lg);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 2;
}

.overview-image:hover img {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) saturate(1.1);
}

.overview-image:hover::before {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.15), rgba(118, 75, 162, 0.15));
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Desktop Optimizations for Academy Overview */
@media (min-width: 1200px) {
    .academy-overview {
        padding: 10rem 0;
    }
    
    .academy-overview .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 6rem;
        max-width: 1000px;
    }
    
    .academy-overview .section-title {
        font-size: 4rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 2.2fr 1fr;
        gap: 6rem;
        min-height: 700px;
    }
    
    .overview-text {
        padding: 4rem;
        font-size: 1.1rem;
    }
    
    .overview-text > p {
        font-size: 1.2rem;
        line-height: 1.9;
    }
    
    .overview-text h3 {
        font-size: 1.75rem;
        margin: 3rem 0 2rem 0;
    }
    
    .tutorial-list li {
        padding: 1.5rem;
        font-size: 1.05rem;
    }
    
    .academy-features li {
        padding: 1.25rem 0;
        font-size: 1.05rem;
    }
    
    .cta-section {
        padding: 3.5rem;
        margin-top: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
    }
    
    .overview-image {
        min-height: 500px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1440px) {
    .academy-overview {
        padding: 12rem 0;
    }
    
    .academy-overview .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 8rem;
        max-width: 1200px;
    }
    
    .academy-overview .section-title {
        font-size: 4.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.625rem;
        margin-top: 3rem;
    }
    
    .overview-content {
        gap: 8rem;
        min-height: 800px;
    }
    
    .overview-text {
        padding: 5rem;
    }
    
    .overview-text > p {
        font-size: 1.25rem;
        line-height: 2;
    }
    
    .overview-text h3 {
        font-size: 2rem;
    }
    
    .tutorial-list li {
        padding: 2rem;
        font-size: 1.1rem;
    }
    
    .academy-features li {
        padding: 1.5rem 0;
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 4rem;
    }
}

/* Responsive Design for Academy Overview */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .overview-text {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .overview-text {
        padding: 2rem;
    }
    
    .overview-text h3 {
        font-size: 1.3rem;
    }
    
    .tutorial-list li,
    .academy-features li {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .overview-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .academy-overview {
        padding: 3rem 0;
    }
    
    .overview-text {
        padding: 1.5rem;
    }
    
    .overview-text > p {
        font-size: 1rem;
    }
    
    .overview-text h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorial-list li {
        padding: 1rem 0.75rem;
    }
    
    .academy-features li {
        padding: 0.75rem 0;
    }
    
    .academy-features li:hover {
        margin: 0 -0.75rem;
        padding: 0.75rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}

/* Performance optimizations */
.academy-overview * {
    will-change: auto;
}

.academy-overview .overview-text,
.academy-overview .overview-image,
.academy-overview .tutorial-list li,
.academy-overview .academy-features li {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .academy-overview,
    .academy-overview *,
    .academy-overview *::before,
    .academy-overview *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .academy-overview::after,
    .overview-text::after {
        animation: none !important;
    }
    
    .tutorial-list li:hover,
    .academy-features li:hover,
    .overview-image:hover img {
        transform: none !important;
    }
}

/* Enhanced focus states for accessibility */
.overview-buttons .btn:focus {
    outline: 3px solid rgba(36, 145, 248, 0.5);
    outline-offset: 2px;
    animation: focusPulse 1s ease-in-out infinite alternate;
}

@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 145, 248, 0.4);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(36, 145, 248, 0.1);
    }
}

/* Academy Overview Grid Styles */
.overview-content {
    margin-top: 3rem;
}

.overview-intro-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.overview-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.intro-content i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.card-content > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tutorials Card Styles */
.tutorial-items {
    display: grid;
    gap: 1rem;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(36, 145, 248, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-fast);
}

.tutorial-item:hover {
    background: rgba(36, 145, 248, 0.1);
    transform: translateX(5px);
}

.tutorial-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    min-width: 20px;
}

.tutorial-item div {
    display: flex;
    flex-direction: column;
}

.tutorial-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.tutorial-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Features Card Styles */
.feature-items {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid #22c55e;
    transition: all var(--transition-fast);
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #22c55e;
    min-width: 20px;
    margin-top: 0.125rem;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Enhanced Success Card Styles */
.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(36, 145, 248, 0.1);
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(251, 191, 36, 0.02) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Card Styles */
.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card .card-header {
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-card .header-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .header-icon i,
.cta-card .card-header h3 {
    color: white;
}

.cta-card .card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.guarantee-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guarantee-highlight i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-highlight strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 180px;
    transition: all 0.3s ease;
}

.btn-large i {
    font-size: 1.25rem;
}

.cta-buttons .btn {
    flex: 1;
    text-align: center;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: var(--primary-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    .container-fluid {
        padding: 0 1.5rem;
    }
    
    .overview-row {
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .academy-overview {
        padding: 5rem 0;
    }
    
    .overview-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-card-content {
        padding: 2.5rem;
    }
    
    .hero-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .hero-card-icon i {
        font-size: 2rem;
    }
    
    .hero-card-text h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .container-fluid {
        padding: 0 1rem;
    }
    
    .academy-overview .section-header {
        margin-bottom: 3rem;
    }
    
    .academy-overview .section-title {
        font-size: 2.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.125rem;
    }
    
    .overview-hero-card {
        margin-bottom: 3rem;
    }
    
    .hero-card-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .hero-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-card-icon i {
        font-size: 1.75rem;
    }
    
    .hero-card-text h3 {
        font-size: 1.5rem;
    }
    
    .hero-card-text p {
        font-size: 1rem;
    }
    
    .overview-main-grid {
        gap: 2rem;
    }
    
    .card-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #ffffff;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* Modern CSS Variables for consistent theming */
:root {
    --primary-blue: #2491f8;
    --secondary-blue: #047fe4;
    --accent-blue: #3182ce;
    --light-blue: #63b3ed;
    --purple-accent: #764ba2;
    --teal-accent: #38b2ac;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --border-light: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 1px;
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all var(--transition-normal);
    list-style: none;
    padding: 1rem 0;
    margin-top: 16px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #3182ce;
    transform: translateX(4px);
}

.dropdown-toggle i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: videoZoom 20s ease-in-out infinite alternate;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: imageZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes imageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 102, 168, 0.01), 
        rgba(118, 75, 162, 0.01),
        rgba(23, 128, 214, 0.01),
        rgba(129, 140, 248, 0.01)
    );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    text-align: center;
    color: rgb(210, 255, 214);
    z-index: 10;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: heroTitleSlide 1.2s ease-out;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #38b2ac, #667eea, #764ba2);
    border-radius: 2px;
    animation: titleUnderline 1.5s ease-out 0.5s forwards;
}

@keyframes titleUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroSubtitleFade 1s ease-out 0.3s forwards;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

@keyframes heroSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroButtonsSlide 1s ease-out 0.6s forwards;
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 1s ease-in-out;
    z-index: 2;
}

/* Hide slider initially only when there's a video (index page) */
.hero-bg-video + .hero-slider {
    opacity: 0;
    visibility: hidden;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 2s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(209, 225, 240, 0.1) 0%,
        rgba(86, 112, 134, 0.05) 50%,
        rgba(49, 130, 206, 0.1) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.5s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    outline: none;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Hero Slider Navigation for Academy */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.slider-dot:hover,
.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    font-size: 1.2rem;
    outline: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Slide Content Animation - Enhanced for smoother transitions */

/* Enhanced slider visual effects */
.hero-slider {
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

/* Smooth slide transitions with staggered animations */
.slide {
    will-change: opacity, transform;
}

.slide.active {
    animation: slideZoomIn 2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes slideZoomIn {
    0% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Improved slide badge animation */
.slide-badge {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.8s;
}

.slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide title animation */
.slide-title {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.3s cubic-bezier(0.4, 0.0, 0.2, 1) 1s;
}

.slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide description animation */
.slide-description {
    transform: translateY(25px);
    opacity: 0;
    transition: all 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 1.2s;
}

.slide.active .slide-description {
    transform: translateY(0);
    opacity: 0.95;
}

/* Enhanced button animation */
.slide .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 1.4s;
}

.slide.active .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 14px rgba(36, 145, 248, 0.4);
    animation: gradientPulse 4s ease infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.6);
    animation-play-state: paused;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.btn-secondary:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: modernBounce 2s ease-in-out infinite;
    opacity: 0;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes modernBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 0.7;
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 0.9;
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: relative;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: arrowShimmer 2s ease-in-out infinite;
}

@keyframes arrowShimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(50px);
}

.animate-on-scroll.animate-from-left.animate-in,
.animate-on-scroll.animate-from-right.animate-in {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animate-in {
    transform: scale(1);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Modern Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, white 0%, var(--bg-lighter) 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

/* Modern Card Hover Effects */
.modern-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.modern-card:hover::before {
    left: 100%;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.service-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Healthcare Services - Red Icon */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    box-shadow: 0 8px 16px rgba(229, 62, 62, 0.3);
}

/* EcoContinuum Recycling - Green Icon */
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #38a169, #2f855a);
    box-shadow: 0 8px 16px rgba(56, 161, 105, 0.3);
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: #5a67d8;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

/* About Preview */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    color: #718096;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.about-features i {
    color: #38b2ac;
    font-size: 1.25rem;
    width: 20px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(36, 145, 248, 0.3);
    transition: transform var(--transition-normal);
}

/* Quality Assurance - Purple */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    box-shadow: 0 8px 16px rgba(128, 90, 213, 0.3);
}

/* 24/7 Support - Orange */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 8px 16px rgba(237, 137, 54, 0.3);
}

/* Innovation - Yellow */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #ecc94b, #d69e2e);
    box-shadow: 0 8px 16px rgba(236, 201, 75, 0.3);
}

/* Partnership - Teal */
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #38b2ac, #319795);
    box-shadow: 0 8px 16px rgba(56, 178, 172, 0.3);
}

/* Sustainability - Green */
.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 8px 16px rgba(72, 187, 120, 0.3);
}

/* Expertise - Red */
.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    box-shadow: 0 8px 16px rgba(245, 101, 101, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(36, 145, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(4, 127, 228, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.03), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(36, 145, 248, 0.3);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-accent), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group-inline input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-inline input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group-inline .btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    white-space: nowrap;
}

.form-group-inline .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.9);
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-date {
    color: #718096;
}

.blog-category {
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.blog-link:hover {
    color: #5a67d8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #2491f8 25%, 
        #047fe4 50%, 
        #0ea5e9 75%, 
        #38bdf8 100%
    );
    background-size: 300% 300%;
    animation: ctaGradientFlow 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaOverlayShift 12s ease infinite;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: ctaShimmer 6s ease infinite;
    pointer-events: none;
}

/* Animated Icons */
.cta-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.cta-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

.cta-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-name: floatIcon1;
    animation-delay: 0s;
}

.cta-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-name: floatIcon2;
    animation-delay: 1s;
}

.cta-icon:nth-child(3) {
    bottom: 20%;
    left: 8%;
    animation-name: floatIcon3;
    animation-delay: 2s;
}

.cta-icon:nth-child(4) {
    bottom: 30%;
    right: 12%;
    animation-name: floatIcon4;
    animation-delay: 3s;
}

.cta-icon:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-name: floatIcon5;
    animation-delay: 4s;
}

.cta-icon:nth-child(6) {
    top: 60%;
    right: 8%;
    animation-name: floatIcon6;
    animation-delay: 5s;
}

@keyframes floatIcon1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(-25px) rotate(-90deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes floatIcon3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(15px) rotate(270deg) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes floatIcon4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(25px) rotate(90deg) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes floatIcon5 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.4;
    }
    50% {
        transform: translateX(20px) translateY(-15px) rotate(-180deg) scale(1.25);
        opacity: 0.6;
    }
}

@keyframes floatIcon6 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-35px) translateX(-10px) rotate(45deg) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .contact-cta {
        padding: 3rem 0;
        min-height: 280px;
    }
    
    .cta-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-icon {
        font-size: 1.5rem;
    }
    
    .cta-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }
    
    .cta-icon:nth-child(2) {
        top: 15%;
        right: 8%;
    }
    
    .cta-icon:nth-child(3) {
        bottom: 15%;
        left: 3%;
    }
    
    .cta-icon:nth-child(4) {
        bottom: 25%;
        right: 6%;
    }
    
    .cta-icon:nth-child(5) {
        top: 35%;
        left: 2%;
    }
    
    .cta-icon:nth-child(6) {
        top: 55%;
        right: 4%;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 2.5rem 0;
        min-height: 240px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@keyframes ctaGradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ctaOverlayShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-20px);
    }
    66% {
        transform: translateX(-20px) translateY(30px);
    }
}

@keyframes ctaShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #e0f2fe, #bae6fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTitleGlow 3s ease infinite alternate;
}

@keyframes ctaTitleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content .btn {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: #1e3a8a;
}

.cta-content .btn:hover::before {
    width: 100%;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%
    );
    background-size: 400% 400%;
    animation: footerGradientShift 15s ease infinite;
    color: white;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes footerGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    border-radius: 16px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.4));
}

.footer-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 
        0 12px 24px rgba(96, 165, 250, 0.3),
        0 0 0 4px rgba(96, 165, 250, 0.1);
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.contact-info i {
    color: #60a5fa;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    margin: 0 -2rem -2rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Form Styles */
.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Enhanced Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }
    
    .nav-menu.active li {
        animation: slideInMobile 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(49, 130, 206, 0.1);
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.9);
        margin-top: 0.5rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 6px;
        margin: 0.25rem 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: translateX(5px);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1.5rem;
    }

    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Testimonials Section Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    /* Newsletter Section Mobile */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-group-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group-inline input,
    .form-group-inline .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Contact CTA Mobile */
    .contact-cta {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo img {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 16px 20px;
    }

    /* Hero Slider Mobile */
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    .slider-nav {
        bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }

    /* Stats Section Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Features Section Small Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* Testimonials Section Small Mobile */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: none;
        border-radius: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .close {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        margin-bottom: 0.75rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Hero Slider Small Mobile */
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .modal-content {
        padding: 1.25rem;
    }
}

/* Animation for mobile menu items */
@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:active {
        background: rgba(49, 130, 206, 0.1);
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Mobile device specific optimizations */
.mobile-device .hero-bg-video {
    transform: none !important;
    animation: none !important;
}

.mobile-device .particles {
    display: none;
}

.mobile-device .hero-content::before {
    display: none;
}

/* Reduced motion support */
.reduce-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

.reduce-motion .hero-bg-video {
    animation: none !important;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .nav-menu {
        height: -webkit-fill-available;
    }
    
    /* Fix iOS input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .hero-bg-video {
        object-position: center center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    /* Improve button spacing and sizing */
    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Better service card layout */
    .service-card {
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    /* Improve blog card mobile layout */
    .blog-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .blog-image {
        height: 200px;
        overflow: hidden;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Better footer mobile layout */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 1rem;
    }
    
    /* Improve contact info display */
    .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-info p:last-child {
        border-bottom: none;
    }
    
    .contact-info i {
        width: 20px;
        text-align: center;
        color: #667eea;
    }
    
    /* Mobile-specific animations */
    .animate-on-scroll {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.animate {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Improve scroll indicator */
    .scroll-indicator {
        bottom: 30px;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .modal {
        padding: 0;
    }
    
    .modal-content {
        border-radius: 20px 20px 0 0;
        margin: auto 0 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        color: #333;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 12px;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0.25rem;
        transform: scale(1.2);
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    height: 60vh;
    min-height: 400px;
}

.blog-filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-medium);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.main-blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--border-light);
}

.featured-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 2.5rem;
}

.featured-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.featured-post-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    transition: all var(--transition-normal);
    opacity: 1;
    transform: translateY(0);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 145, 248, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.read-more-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.post-excerpt {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-blue);
}

.post-excerpt p {
    margin: 0;
    font-style: italic;
    color: var(--text-medium);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.blog-author {
    color: var(--text-medium);
}

.blog-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.blog-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.blog-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.blog-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.page-link:hover:not(.disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-blue);
}

/* Search Widget */
.search-widget {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(36, 145, 248, 0.1);
}

.search-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.recent-post-content h4 a:hover {
    color: var(--primary-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.category-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.post-count {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-medium);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link:hover .post-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
    background: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design for Blog Page */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .featured-post-content {
        padding: 2rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-blog-section {
        padding: 2rem 0;
    }
    
    .featured-post-content {
        padding: 1.5rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.25rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .recent-post {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
    }
}

/* Blog Post Page Styles */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--secondary-blue);
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--text-medium);
    font-weight: 500;
}

.blog-post-content {
    padding: 4rem 0;
    background: white;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.post-main {
    max-width: none;
}

.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.post-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.post-date {
    color: var(--text-light);
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.post-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.post-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.post-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

.post-author {
    color: var(--text-medium);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.post-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background: #006ba1;
    transform: translateY(-2px);
}

.share-btn.email {
    background: var(--text-medium);
    color: white;
}

.share-btn.email:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    gap: 1rem;
}

.post-navigation .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.post-navigation .nav-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.post-navigation .nav-link.back-to-blog {
    background: var(--primary-blue);
    color: white;
}

.post-navigation .nav-link.back-to-blog:hover {
    background: var(--secondary-blue);
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 2rem;
}

.author-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.author-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.author-widget .widget-title::after {
    background: white;
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.author-avatar {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.author-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.related-posts-widget .related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.related-post-content h4 a:hover {
    color: var(--primary-blue);
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive Design for Blog Post */
@media (max-width: 1024px) {
    .post-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb-current {
        flex-basis: 100%;
        margin-top: 0.5rem;
    }
    
    .blog-post-content {
        padding: 2rem 0;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post {
        flex-direction: column;
    }
    
    .related-post-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-featured-image img {
        height: 200px;
    }
    
    .post-content h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .post-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ACADEMY OVERVIEW SECTION STYLES
   =================================== */

.academy-overview {
    padding: 10rem 0 4rem 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%),
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1s ease-out;
    min-height: 100vh;
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0;
    z-index: 1;
    animation: gridFadeIn 2s ease-out 0.5s forwards;
}

@keyframes gridFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.academy-overview .container {
    position: relative;
    z-index: 2;
}

/* Floating Animation Elements */
.academy-overview::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Additional floating elements */
.overview-text::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15), transparent);
    border-radius: 50%;
    animation: floatReverse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(15px) rotate(-180deg) scale(1.1);
        opacity: 0.8;
    }
}

.academy-overview .section-header {
    margin-bottom: 8rem;
    opacity: 0;
    animation: headerSlideUp 1.2s ease-out 0.3s forwards;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Hero Introduction Card */
.overview-hero-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 40px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    margin-bottom: 8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    position: relative;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-content {
    display: flex;
    align-items: center;
    padding: 5rem;
    gap: 4rem;
    position: relative;
}

.hero-card-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 24px 48px rgba(36, 145, 248, 0.3),
        0 12px 24px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.hero-card-icon i {
    font-size: 3.5rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-card-text h3 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-card-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
}

/* Main Grid Layout */
.overview-main-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Enhanced Card Styles */
.overview-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 32px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.overview-card:hover::before {
    opacity: 1;
}

/* Enhanced Card Headers */
.card-header {
    background: 
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    padding: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.3),
        0 8px 16px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.header-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Enhanced Card Content */
.card-content {
    padding: 3.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Tutorial Grid */
.tutorial-grid {
    display: grid;
    gap: 1.75rem;
}

.tutorial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(36, 145, 248, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.tutorial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(36, 145, 248, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tutorial-item:hover::before {
    opacity: 1;
}

.tutorial-item:hover {
    transform: translateY(-4px) translateX(8px);
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.12),
        0 8px 16px rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.15);
}

.tutorial-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 16px rgba(36, 145, 248, 0.2),
        0 4px 8px rgba(36, 145, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.tutorial-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.tutorial-icon i {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.tutorial-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.tutorial-info strong {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.tutorial-info span {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    border-radius: 16px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.125rem;
    color: white;
}

.feature-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-info strong {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-info span {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.academy-overview .section-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.8;
    margin-top: 2rem;
}

@keyframes headerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview .section-title {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(36, 145, 248, 0.3);
    }
    100% {
        filter: brightness(1.1);
        text-shadow: 0 0 30px rgba(36, 145, 248, 0.5);
    }
}

.academy-overview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    opacity: 0;
    animation: contentSlideIn 1.5s ease-out 0.6s forwards;
    min-height: 600px;
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateX(-30px);
    animation: textCardSlide 1.8s ease-out 0.9s forwards;
    height: fit-content;
}

@keyframes textCardSlide {
    0% {
        transform: translateX(-30px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.overview-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: topBarExpand 1.2s ease-out 1.2s forwards;
}

@keyframes topBarExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.overview-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.overview-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.overview-text h3 i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(36, 145, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tutorial-list li {
    background: rgba(36, 145, 248, 0.05);
    border: 1px solid rgba(36, 145, 248, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlideIn 0.8s ease-out forwards;
}

.tutorial-list li:nth-child(1) { animation-delay: 1.5s; }
.tutorial-list li:nth-child(2) { animation-delay: 1.7s; }
.tutorial-list li:nth-child(3) { animation-delay: 1.9s; }
.tutorial-list li:nth-child(4) { animation-delay: 2.1s; }
.tutorial-list li:nth-child(5) { animation-delay: 2.3s; }
.tutorial-list li:nth-child(6) { animation-delay: 2.5s; }
.tutorial-list li:nth-child(7) { animation-delay: 2.7s; }

@keyframes listItemSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tutorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.tutorial-list li:hover {
    background: rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.2);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.15);
}

.tutorial-list li:hover::before {
    transform: scaleY(1);
}

.tutorial-list li:hover strong {
    animation: textGlow 0.3s ease-out;
}

@keyframes textGlow {
    0% {
        text-shadow: none;
    }
    100% {
        text-shadow: 0 0 8px rgba(36, 145, 248, 0.4);
    }
}

.tutorial-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.academy-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.academy-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideUp 0.6s ease-out forwards;
}

.academy-features li:nth-child(1) { animation-delay: 2.9s; }
.academy-features li:nth-child(2) { animation-delay: 3.1s; }
.academy-features li:nth-child(3) { animation-delay: 3.3s; }
.academy-features li:nth-child(4) { animation-delay: 3.5s; }
.academy-features li:nth-child(5) { animation-delay: 3.7s; }
.academy-features li:nth-child(6) { animation-delay: 3.9s; }

@keyframes featureSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-features li:last-child {
    border-bottom: none;
}

.academy-features li:hover {
    background: rgba(56, 178, 172, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin: 0 -1rem;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.1);
}

.academy-features li:hover i {
    animation: iconBounce 0.6s ease-out;
    color: var(--primary-blue);
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.academy-features li i {
    color: var(--teal-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.academy-features li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(36, 145, 248, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    animation: ctaZoomIn 1s ease-out 4.1s forwards;
}

@keyframes ctaZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.overview-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsSlideUp 0.8s ease-out 4.5s forwards;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-buttons .btn {
    position: relative;
    overflow: hidden;
}

.overview-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.overview-buttons .btn:hover::before {
    left: 100%;
}

.overview-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 1rem;
    opacity: 0;
    transform: translateX(30px) scale(0.9);
    animation: imageSlideIn 1.5s ease-out 1.2s forwards;
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
    border-radius: var(--border-radius-lg);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 2;
}

.overview-image:hover img {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) saturate(1.1);
}

.overview-image:hover::before {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.15), rgba(118, 75, 162, 0.15));
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Desktop Optimizations for Academy Overview */
@media (min-width: 1200px) {
    .academy-overview {
        padding: 10rem 0;
    }
    
    .academy-overview .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 6rem;
        max-width: 1000px;
    }
    
    .academy-overview .section-title {
        font-size: 4rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 2.2fr 1fr;
        gap: 6rem;
        min-height: 700px;
    }
    
    .overview-text {
        padding: 4rem;
        font-size: 1.1rem;
    }
    
    .overview-text > p {
        font-size: 1.2rem;
        line-height: 1.9;
    }
    
    .overview-text h3 {
        font-size: 1.75rem;
        margin: 3rem 0 2rem 0;
    }
    
    .tutorial-list li {
        padding: 1.5rem;
        font-size: 1.05rem;
    }
    
    .academy-features li {
        padding: 1.25rem 0;
        font-size: 1.05rem;
    }
    
    .cta-section {
        padding: 3.5rem;
        margin-top: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
    }
    
    .overview-image {
        min-height: 500px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1440px) {
    .academy-overview {
        padding: 12rem 0;
    }
    
    .academy-overview .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 8rem;
        max-width: 1200px;
    }
    
    .academy-overview .section-title {
        font-size: 4.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.625rem;
        margin-top: 3rem;
    }
    
    .overview-content {
        gap: 8rem;
        min-height: 800px;
    }
    
    .overview-text {
        padding: 5rem;
    }
    
    .overview-text > p {
        font-size: 1.25rem;
        line-height: 2;
    }
    
    .overview-text h3 {
        font-size: 2rem;
    }
    
    .tutorial-list li {
        padding: 2rem;
        font-size: 1.1rem;
    }
    
    .academy-features li {
        padding: 1.5rem 0;
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 4rem;
    }
}

/* Responsive Design for Academy Overview */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .overview-text {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .overview-text {
        padding: 2rem;
    }
    
    .overview-text h3 {
        font-size: 1.3rem;
    }
    
    .tutorial-list li,
    .academy-features li {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .overview-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .academy-overview {
        padding: 3rem 0;
    }
    
    .overview-text {
        padding: 1.5rem;
    }
    
    .overview-text > p {
        font-size: 1rem;
    }
    
    .overview-text h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorial-list li {
        padding: 1rem 0.75rem;
    }
    
    .academy-features li {
        padding: 0.75rem 0;
    }
    
    .academy-features li:hover {
        margin: 0 -0.75rem;
        padding: 0.75rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}

/* Performance optimizations */
.academy-overview * {
    will-change: auto;
}

.academy-overview .overview-text,
.academy-overview .overview-image,
.academy-overview .tutorial-list li,
.academy-overview .academy-features li {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .academy-overview,
    .academy-overview *,
    .academy-overview *::before,
    .academy-overview *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .academy-overview::after,
    .overview-text::after {
        animation: none !important;
    }
    
    .tutorial-list li:hover,
    .academy-features li:hover,
    .overview-image:hover img {
        transform: none !important;
    }
}

/* Enhanced focus states for accessibility */
.overview-buttons .btn:focus {
    outline: 3px solid rgba(36, 145, 248, 0.5);
    outline-offset: 2px;
    animation: focusPulse 1s ease-in-out infinite alternate;
}

@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 145, 248, 0.4);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(36, 145, 248, 0.1);
    }
}

/* Academy Overview Grid Styles */
.overview-content {
    margin-top: 3rem;
}

.overview-intro-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.overview-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.intro-content i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.card-content > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tutorials Card Styles */
.tutorial-items {
    display: grid;
    gap: 1rem;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(36, 145, 248, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-fast);
}

.tutorial-item:hover {
    background: rgba(36, 145, 248, 0.1);
    transform: translateX(5px);
}

.tutorial-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    min-width: 20px;
}

.tutorial-item div {
    display: flex;
    flex-direction: column;
}

.tutorial-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.tutorial-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Features Card Styles */
.feature-items {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid #22c55e;
    transition: all var(--transition-fast);
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #22c55e;
    min-width: 20px;
    margin-top: 0.125rem;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Enhanced Success Card Styles */
.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(36, 145, 248, 0.1);
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(251, 191, 36, 0.02) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Card Styles */
.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card .card-header {
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-card .header-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .header-icon i,
.cta-card .card-header h3 {
    color: white;
}

.cta-card .card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.guarantee-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guarantee-highlight i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-highlight strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 180px;
    transition: all 0.3s ease;
}

.btn-large i {
    font-size: 1.25rem;
}

.cta-buttons .btn {
    flex: 1;
    text-align: center;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: var(--primary-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    .container-fluid {
        padding: 0 1.5rem;
    }
    
    .overview-row {
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .academy-overview {
        padding: 5rem 0;
    }
    
    .overview-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-card-content {
        padding: 2.5rem;
    }
    
    .hero-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .hero-card-icon i {
        font-size: 2rem;
    }
    
    .hero-card-text h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .container-fluid {
        padding: 0 1rem;
    }
    
    .academy-overview .section-header {
        margin-bottom: 3rem;
    }
    
    .academy-overview .section-title {
        font-size: 2.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.125rem;
    }
    
    .overview-hero-card {
        margin-bottom: 3rem;
    }
    
    .hero-card-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .hero-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-card-icon i {
        font-size: 1.75rem;
    }
    
    .hero-card-text h3 {
        font-size: 1.5rem;
    }
    
    .hero-card-text p {
        font-size: 1rem;
    }
    
    .overview-main-grid {
        gap: 2rem;
    }
    
    .card-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
    }
}

/* Academy Gallery Styles */
.academy-gallery {
    margin-top: 2rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.gallery-title i {
    color: var(--primary-blue);
    font-size: 1.75rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    color: white;
    text-align: center;
    gap: 0.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-blue);
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .academy-gallery {
        margin-top: 1.5rem;
        padding: 2rem 0;
        border-radius: var(--border-radius-md);
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .lightbox-content {
        width: 95%;
        height: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-nav {
        padding: 0 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.2rem;
        padding: 0.75rem;
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .gallery-title {
        font-size: 2.25rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1440px) {
    .academy-gallery {
        padding: 4rem 0;
        margin-top: 3rem;
    }
    
    .gallery-grid {
        max-width: 1400px;
        gap: 2.5rem;
    }
}* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    background-color: #ffffff;
    font-weight: 400;
    scroll-behavior: smooth;
}

/* Modern CSS Variables for consistent theming */
:root {
    --primary-blue: #2491f8;
    --secondary-blue: #047fe4;
    --accent-blue: #3182ce;
    --light-blue: #63b3ed;
    --purple-accent: #764ba2;
    --teal-accent: #38b2ac;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --border-light: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    position: relative;
    letter-spacing: -0.01em;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 1px;
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all var(--transition-normal);
    list-style: none;
    padding: 1rem 0;
    margin-top: 16px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #3182ce;
    transform: translateX(4px);
}

.dropdown-toggle i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: videoZoom 20s ease-in-out infinite alternate;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    animation: imageZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes imageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 102, 168, 0.01), 
        rgba(118, 75, 162, 0.01),
        rgba(23, 128, 214, 0.01),
        rgba(129, 140, 248, 0.01)
    );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    text-align: center;
    color: rgb(210, 255, 214);
    z-index: 10;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: heroTitleSlide 1.2s ease-out;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #38b2ac, #667eea, #764ba2);
    border-radius: 2px;
    animation: titleUnderline 1.5s ease-out 0.5s forwards;
}

@keyframes titleUnderline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: heroSubtitleFade 1s ease-out 0.3s forwards;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

@keyframes heroSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroButtonsSlide 1s ease-out 0.6s forwards;
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 1s ease-in-out;
    z-index: 2;
}

/* Hide slider initially only when there's a video (index page) */
.hero-bg-video + .hero-slider {
    opacity: 0;
    visibility: hidden;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 2s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(209, 225, 240, 0.1) 0%,
        rgba(86, 112, 134, 0.05) 50%,
        rgba(49, 130, 206, 0.1) 100%
    );
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.5s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    outline: none;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Hero Slider Navigation for Academy */
.hero-slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.slider-dot:hover,
.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    font-size: 1.2rem;
    outline: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Slide Content Animation - Enhanced for smoother transitions */

/* Enhanced slider visual effects */
.hero-slider {
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slider.active {
    opacity: 1;
    visibility: visible;
}

/* Smooth slide transitions with staggered animations */
.slide {
    will-change: opacity, transform;
}

.slide.active {
    animation: slideZoomIn 2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes slideZoomIn {
    0% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Improved slide badge animation */
.slide-badge {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.8s;
}

.slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide title animation */
.slide-title {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1.3s cubic-bezier(0.4, 0.0, 0.2, 1) 1s;
}

.slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced slide description animation */
.slide-description {
    transform: translateY(25px);
    opacity: 0;
    transition: all 1.4s cubic-bezier(0.4, 0.0, 0.2, 1) 1.2s;
}

.slide.active .slide-description {
    transform: translateY(0);
    opacity: 0.95;
}

/* Enhanced button animation */
.slide .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) 1.4s;
}

.slide.active .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 14px rgba(36, 145, 248, 0.4);
    animation: gradientPulse 4s ease infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.6);
    animation-play-state: paused;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.btn-secondary:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: modernBounce 2s ease-in-out infinite;
    opacity: 0;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes modernBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 0.7;
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 0.9;
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: relative;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: arrowShimmer 2s ease-in-out infinite;
}

@keyframes arrowShimmer {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(50px);
}

.animate-on-scroll.animate-from-left.animate-in,
.animate-on-scroll.animate-from-right.animate-in {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animate-in {
    transform: scale(1);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Modern Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, white 0%, var(--bg-lighter) 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

/* Modern Card Hover Effects */
.modern-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.modern-card:hover::before {
    left: 100%;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.service-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Healthcare Services - Red Icon */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    box-shadow: 0 8px 16px rgba(229, 62, 62, 0.3);
}

/* EcoContinuum Recycling - Green Icon */
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #38a169, #2f855a);
    box-shadow: 0 8px 16px rgba(56, 161, 105, 0.3);
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 0.75rem;
    color: #5a67d8;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

/* About Preview */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    color: #718096;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.about-features i {
    color: #38b2ac;
    font-size: 1.25rem;
    width: 20px;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 16px rgba(36, 145, 248, 0.3);
    transition: transform var(--transition-normal);
}

/* Quality Assurance - Purple */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    box-shadow: 0 8px 16px rgba(128, 90, 213, 0.3);
}

/* 24/7 Support - Orange */
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    box-shadow: 0 8px 16px rgba(237, 137, 54, 0.3);
}

/* Innovation - Yellow */
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #ecc94b, #d69e2e);
    box-shadow: 0 8px 16px rgba(236, 201, 75, 0.3);
}

/* Partnership - Teal */
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #38b2ac, #319795);
    box-shadow: 0 8px 16px rgba(56, 178, 172, 0.3);
}

/* Sustainability - Green */
.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 8px 16px rgba(72, 187, 120, 0.3);
}

/* Expertise - Red */
.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    box-shadow: 0 8px 16px rgba(245, 101, 101, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(36, 145, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(4, 127, 228, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 145, 248, 0.03), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(36, 145, 248, 0.3);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-accent), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group-inline input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-inline input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group-inline .btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    white-space: nowrap;
}

.form-group-inline .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border-color: rgba(255, 255, 255, 0.9);
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(36, 145, 248, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-date {
    color: #718096;
}

.blog-category {
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.blog-link:hover {
    color: #5a67d8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, 
        #1e3a8a 0%, 
        #2491f8 25%, 
        #047fe4 50%, 
        #0ea5e9 75%, 
        #38bdf8 100%
    );
    background-size: 300% 300%;
    animation: ctaGradientFlow 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaOverlayShift 12s ease infinite;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    animation: ctaShimmer 6s ease infinite;
    pointer-events: none;
}

/* Animated Icons */
.cta-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.cta-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

.cta-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-name: floatIcon1;
    animation-delay: 0s;
}

.cta-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-name: floatIcon2;
    animation-delay: 1s;
}

.cta-icon:nth-child(3) {
    bottom: 20%;
    left: 8%;
    animation-name: floatIcon3;
    animation-delay: 2s;
}

.cta-icon:nth-child(4) {
    bottom: 30%;
    right: 12%;
    animation-name: floatIcon4;
    animation-delay: 3s;
}

.cta-icon:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-name: floatIcon5;
    animation-delay: 4s;
}

.cta-icon:nth-child(6) {
    top: 60%;
    right: 8%;
    animation-name: floatIcon6;
    animation-delay: 5s;
}

@keyframes floatIcon1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateX(-25px) rotate(-90deg) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes floatIcon3 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(15px) rotate(270deg) scale(1.3);
        opacity: 0.8;
    }
}

@keyframes floatIcon4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(25px) rotate(90deg) scale(1.15);
        opacity: 0.7;
    }
}

@keyframes floatIcon5 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.4;
    }
    50% {
        transform: translateX(20px) translateY(-15px) rotate(-180deg) scale(1.25);
        opacity: 0.6;
    }
}

@keyframes floatIcon6 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(-35px) translateX(-10px) rotate(45deg) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .contact-cta {
        padding: 3rem 0;
        min-height: 280px;
    }
    
    .cta-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-icon {
        font-size: 1.5rem;
    }
    
    .cta-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }
    
    .cta-icon:nth-child(2) {
        top: 15%;
        right: 8%;
    }
    
    .cta-icon:nth-child(3) {
        bottom: 15%;
        left: 3%;
    }
    
    .cta-icon:nth-child(4) {
        bottom: 25%;
        right: 6%;
    }
    
    .cta-icon:nth-child(5) {
        top: 35%;
        left: 2%;
    }
    
    .cta-icon:nth-child(6) {
        top: 55%;
        right: 4%;
    }
}

@media (max-width: 480px) {
    .contact-cta {
        padding: 2.5rem 0;
        min-height: 240px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@keyframes ctaGradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes ctaOverlayShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(30px) translateY(-20px);
    }
    66% {
        transform: translateX(-20px) translateY(30px);
    }
}

@keyframes ctaShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #e0f2fe, #bae6fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTitleGlow 3s ease infinite alternate;
}

@keyframes ctaTitleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content .btn {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: #1e3a8a;
}

.cta-content .btn:hover::before {
    width: 100%;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%
    );
    background-size: 400% 400%;
    animation: footerGradientShift 15s ease infinite;
    color: white;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes footerGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    border-radius: 16px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.4));
}

.footer-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 80px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 
        0 12px 24px rgba(96, 165, 250, 0.3),
        0 0 0 4px rgba(96, 165, 250, 0.1);
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.contact-info i {
    color: #60a5fa;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    margin: 0 -2rem -2rem -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* Form Styles */
.contact-form {
    margin-top: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Enhanced Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        animation: none;
    }
    
    .nav-menu.active li {
        animation: slideInMobile 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(49, 130, 206, 0.1);
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.9);
        margin-top: 0.5rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 6px;
        margin: 0.25rem 0.5rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: translateX(5px);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
        margin-left: 0.5rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1.5rem;
    }

    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Testimonials Section Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    /* Newsletter Section Mobile */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-group-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group-inline input,
    .form-group-inline .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Contact CTA Mobile */
    .contact-cta {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo img {
        height: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 16px 20px;
    }

    /* Hero Slider Mobile */
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    .slider-nav {
        bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }

    /* Stats Section Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Features Section Small Mobile */
    .feature-card {
        padding: 1.5rem 1rem;
    }

    /* Testimonials Section Small Mobile */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: none;
        border-radius: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .close {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        margin-bottom: 0.75rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    /* Hero Slider Small Mobile */
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .modal-content {
        padding: 1.25rem;
    }
}

/* Animation for mobile menu items */
@keyframes slideInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:active {
        background: rgba(49, 130, 206, 0.1);
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Mobile device specific optimizations */
.mobile-device .hero-bg-video {
    transform: none !important;
    animation: none !important;
}

.mobile-device .particles {
    display: none;
}

.mobile-device .hero-content::before {
    display: none;
}

/* Reduced motion support */
.reduce-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

.reduce-motion .hero-bg-video {
    animation: none !important;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .nav-menu {
        height: -webkit-fill-available;
    }
    
    /* Fix iOS input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .hero-bg-video {
        object-position: center center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    /* Improve button spacing and sizing */
    .hero-buttons {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Better service card layout */
    .service-card {
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    /* Improve blog card mobile layout */
    .blog-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .blog-image {
        height: 200px;
        overflow: hidden;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Better footer mobile layout */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 1rem;
    }
    
    /* Improve contact info display */
    .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-info p:last-child {
        border-bottom: none;
    }
    
    .contact-info i {
        width: 20px;
        text-align: center;
        color: #667eea;
    }
    
    /* Mobile-specific animations */
    .animate-on-scroll {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s ease;
    }
    
    .animate-on-scroll.animate {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Improve scroll indicator */
    .scroll-indicator {
        bottom: 30px;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .modal {
        padding: 0;
    }
    
    .modal-content {
        border-radius: 20px 20px 0 0;
        margin: auto 0 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUpMobile 0.3s ease;
    }
    
    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        color: #333;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 12px;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }
    
    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0.25rem;
        transform: scale(1.2);
    }
    
    .checkbox-group label {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    height: 60vh;
    min-height: 400px;
}

.blog-filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-medium);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.main-blog-section {
    padding: 4rem 0;
    background: white;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--border-light);
}

.featured-post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 2.5rem;
}

.featured-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.featured-post-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    transition: all var(--transition-normal);
    opacity: 1;
    transform: translateY(0);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 145, 248, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-overlay {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.read-more-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.post-excerpt {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-blue);
}

.post-excerpt p {
    margin: 0;
    font-style: italic;
    color: var(--text-medium);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.blog-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.blog-author {
    color: var(--text-medium);
}

.blog-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.blog-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.blog-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.blog-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.page-link:hover:not(.disabled) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-blue);
}

/* Search Widget */
.search-widget {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(36, 145, 248, 0.1);
}

.search-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.recent-post-content h4 a:hover {
    color: var(--primary-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-medium);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.category-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.post-count {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-medium);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link:hover .post-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
    background: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design for Blog Page */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .featured-post-content {
        padding: 2rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-blog-section {
        padding: 2rem 0;
    }
    
    .featured-post-content {
        padding: 1.5rem;
    }
    
    .featured-post-content h2 {
        font-size: 1.25rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .recent-post {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .recent-post-image {
        width: 100%;
        height: 120px;
    }
}

/* Blog Post Page Styles */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--secondary-blue);
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--text-medium);
    font-weight: 500;
}

.blog-post-content {
    padding: 4rem 0;
    background: white;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.post-main {
    max-width: none;
}

.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.post-meta i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.post-date {
    color: var(--text-light);
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.healthcare {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.post-category.education {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.post-category.environment {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.post-category.company {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
}

.post-author {
    color: var(--text-medium);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.post-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.linkedin:hover {
    background: #006ba1;
    transform: translateY(-2px);
}

.share-btn.email {
    background: var(--text-medium);
    color: white;
}

.share-btn.email:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    gap: 1rem;
}

.post-navigation .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.post-navigation .nav-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.post-navigation .nav-link.back-to-blog {
    background: var(--primary-blue);
    color: white;
}

.post-navigation .nav-link.back-to-blog:hover {
    background: var(--secondary-blue);
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 2rem;
}

.author-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.author-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.author-widget .widget-title::after {
    background: white;
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.author-avatar {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.author-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.related-posts-widget .related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.related-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.related-post-content h4 a:hover {
    color: var(--primary-blue);
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive Design for Blog Post */
@media (max-width: 1024px) {
    .post-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .breadcrumb-current {
        flex-basis: 100%;
        margin-top: 0.5rem;
    }
    
    .blog-post-content {
        padding: 2rem 0;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post {
        flex-direction: column;
    }
    
    .related-post-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-featured-image img {
        height: 200px;
    }
    
    .post-content h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .post-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ACADEMY OVERVIEW SECTION STYLES
   =================================== */

.academy-overview {
    padding: 10rem 0 4rem 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%),
        radial-gradient(ellipse at top, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1s ease-out;
    min-height: 100vh;
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0;
    z-index: 1;
    animation: gridFadeIn 2s ease-out 0.5s forwards;
}

@keyframes gridFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.academy-overview .container {
    position: relative;
    z-index: 2;
}

/* Floating Animation Elements */
.academy-overview::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Additional floating elements */
.overview-text::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15), transparent);
    border-radius: 50%;
    animation: floatReverse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(15px) rotate(-180deg) scale(1.1);
        opacity: 0.8;
    }
}

.academy-overview .section-header {
    margin-bottom: 8rem;
    opacity: 0;
    animation: headerSlideUp 1.2s ease-out 0.3s forwards;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Hero Introduction Card */
.overview-hero-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 40px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    margin-bottom: 8rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    position: relative;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card-content {
    display: flex;
    align-items: center;
    padding: 5rem;
    gap: 4rem;
    position: relative;
}

.hero-card-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 24px 48px rgba(36, 145, 248, 0.3),
        0 12px 24px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.hero-card-icon i {
    font-size: 3.5rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-card-text h3 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-card-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
}

/* Main Grid Layout */
.overview-main-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Enhanced Card Styles */
.overview-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 100%),
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
    border-radius: 32px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overview-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.overview-card:hover::before {
    opacity: 1;
}

/* Enhanced Card Headers */
.card-header {
    background: 
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%),
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    padding: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(135deg, var(--primary-blue), var(--purple-accent)),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.3),
        0 8px 16px rgba(36, 145, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.header-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.header-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Enhanced Card Content */
.card-content {
    padding: 3.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Tutorial Grid */
.tutorial-grid {
    display: grid;
    gap: 1.75rem;
}

.tutorial-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(36, 145, 248, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.tutorial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(36, 145, 248, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tutorial-item:hover::before {
    opacity: 1;
}

.tutorial-item:hover {
    transform: translateY(-4px) translateX(8px);
    box-shadow: 
        0 16px 32px rgba(36, 145, 248, 0.12),
        0 8px 16px rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.15);
}

.tutorial-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 8px 16px rgba(36, 145, 248, 0.2),
        0 4px 8px rgba(36, 145, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.tutorial-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
}

.tutorial-icon i {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.tutorial-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.tutorial-info strong {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.tutorial-info span {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 400;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    border-radius: 16px;
    border-left: 4px solid #22c55e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.125rem;
    color: white;
}

.feature-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-info strong {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-info span {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.academy-overview .section-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.8;
    margin-top: 2rem;
}

@keyframes headerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-overview .section-title {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 20px rgba(36, 145, 248, 0.3);
    }
    100% {
        filter: brightness(1.1);
        text-shadow: 0 0 30px rgba(36, 145, 248, 0.5);
    }
}

.academy-overview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    opacity: 0;
    animation: contentSlideIn 1.5s ease-out 0.6s forwards;
    min-height: 600px;
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-text {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateX(-30px);
    animation: textCardSlide 1.8s ease-out 0.9s forwards;
    height: fit-content;
}

@keyframes textCardSlide {
    0% {
        transform: translateX(-30px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.overview-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple-accent), var(--teal-accent));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: topBarExpand 1.2s ease-out 1.2s forwards;
}

@keyframes topBarExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.overview-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.overview-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.overview-text h3 i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(36, 145, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tutorial-list li {
    background: rgba(36, 145, 248, 0.05);
    border: 1px solid rgba(36, 145, 248, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlideIn 0.8s ease-out forwards;
}

.tutorial-list li:nth-child(1) { animation-delay: 1.5s; }
.tutorial-list li:nth-child(2) { animation-delay: 1.7s; }
.tutorial-list li:nth-child(3) { animation-delay: 1.9s; }
.tutorial-list li:nth-child(4) { animation-delay: 2.1s; }
.tutorial-list li:nth-child(5) { animation-delay: 2.3s; }
.tutorial-list li:nth-child(6) { animation-delay: 2.5s; }
.tutorial-list li:nth-child(7) { animation-delay: 2.7s; }

@keyframes listItemSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tutorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.tutorial-list li:hover {
    background: rgba(36, 145, 248, 0.08);
    border-color: rgba(36, 145, 248, 0.2);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(36, 145, 248, 0.15);
}

.tutorial-list li:hover::before {
    transform: scaleY(1);
}

.tutorial-list li:hover strong {
    animation: textGlow 0.3s ease-out;
}

@keyframes textGlow {
    0% {
        text-shadow: none;
    }
    100% {
        text-shadow: 0 0 8px rgba(36, 145, 248, 0.4);
    }
}

.tutorial-list li strong {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.academy-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.academy-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: featureSlideUp 0.6s ease-out forwards;
}

.academy-features li:nth-child(1) { animation-delay: 2.9s; }
.academy-features li:nth-child(2) { animation-delay: 3.1s; }
.academy-features li:nth-child(3) { animation-delay: 3.3s; }
.academy-features li:nth-child(4) { animation-delay: 3.5s; }
.academy-features li:nth-child(5) { animation-delay: 3.7s; }
.academy-features li:nth-child(6) { animation-delay: 3.9s; }

@keyframes featureSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.academy-features li:last-child {
    border-bottom: none;
}

.academy-features li:hover {
    background: rgba(56, 178, 172, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin: 0 -1rem;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.1);
}

.academy-features li:hover i {
    animation: iconBounce 0.6s ease-out;
    color: var(--primary-blue);
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.academy-features li i {
    color: var(--teal-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.academy-features li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(36, 145, 248, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    animation: ctaZoomIn 1s ease-out 4.1s forwards;
}

@keyframes ctaZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(36, 145, 248, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.overview-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsSlideUp 0.8s ease-out 4.5s forwards;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.overview-buttons .btn {
    position: relative;
    overflow: hidden;
}

.overview-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.overview-buttons .btn:hover::before {
    left: 100%;
}

.overview-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 1rem;
    opacity: 0;
    transform: translateX(30px) scale(0.9);
    animation: imageSlideIn 1.5s ease-out 1.2s forwards;
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
    border-radius: var(--border-radius-lg);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 2;
}

.overview-image:hover img {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) saturate(1.1);
}

.overview-image:hover::before {
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.15), rgba(118, 75, 162, 0.15));
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Desktop Optimizations for Academy Overview */
@media (min-width: 1200px) {
    .academy-overview {
        padding: 10rem 0;
    }
    
    .academy-overview .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 6rem;
        max-width: 1000px;
    }
    
    .academy-overview .section-title {
        font-size: 4rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 2.2fr 1fr;
        gap: 6rem;
        min-height: 700px;
    }
    
    .overview-text {
        padding: 4rem;
        font-size: 1.1rem;
    }
    
    .overview-text > p {
        font-size: 1.2rem;
        line-height: 1.9;
    }
    
    .overview-text h3 {
        font-size: 1.75rem;
        margin: 3rem 0 2rem 0;
    }
    
    .tutorial-list li {
        padding: 1.5rem;
        font-size: 1.05rem;
    }
    
    .academy-features li {
        padding: 1.25rem 0;
        font-size: 1.05rem;
    }
    
    .cta-section {
        padding: 3.5rem;
        margin-top: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 1.2rem;
    }
    
    .overview-image {
        min-height: 500px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1440px) {
    .academy-overview {
        padding: 12rem 0;
    }
    
    .academy-overview .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .academy-overview .section-header {
        margin-bottom: 8rem;
        max-width: 1200px;
    }
    
    .academy-overview .section-title {
        font-size: 4.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.625rem;
        margin-top: 3rem;
    }
    
    .overview-content {
        gap: 8rem;
        min-height: 800px;
    }
    
    .overview-text {
        padding: 5rem;
    }
    
    .overview-text > p {
        font-size: 1.25rem;
        line-height: 2;
    }
    
    .overview-text h3 {
        font-size: 2rem;
    }
    
    .tutorial-list li {
        padding: 2rem;
        font-size: 1.1rem;
    }
    
    .academy-features li {
        padding: 1.5rem 0;
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 4rem;
    }
}

/* Responsive Design for Academy Overview */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .overview-text {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .overview-text {
        padding: 2rem;
    }
    
    .overview-text h3 {
        font-size: 1.3rem;
    }
    
    .tutorial-list li,
    .academy-features li {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .overview-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .academy-overview {
        padding: 3rem 0;
    }
    
    .overview-text {
        padding: 1.5rem;
    }
    
    .overview-text > p {
        font-size: 1rem;
    }
    
    .overview-text h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .tutorial-list li {
        padding: 1rem 0.75rem;
    }
    
    .academy-features li {
        padding: 0.75rem 0;
    }
    
    .academy-features li:hover {
        margin: 0 -0.75rem;
        padding: 0.75rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}

/* Performance optimizations */
.academy-overview * {
    will-change: auto;
}

.academy-overview .overview-text,
.academy-overview .overview-image,
.academy-overview .tutorial-list li,
.academy-overview .academy-features li {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .academy-overview,
    .academy-overview *,
    .academy-overview *::before,
    .academy-overview *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .academy-overview::after,
    .overview-text::after {
        animation: none !important;
    }
    
    .tutorial-list li:hover,
    .academy-features li:hover,
    .overview-image:hover img {
        transform: none !important;
    }
}

/* Enhanced focus states for accessibility */
.overview-buttons .btn:focus {
    outline: 3px solid rgba(36, 145, 248, 0.5);
    outline-offset: 2px;
    animation: focusPulse 1s ease-in-out infinite alternate;
}

@keyframes focusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 145, 248, 0.4);
    }
    100% {
        box-shadow: 0 0 0 8px rgba(36, 145, 248, 0.1);
    }
}

/* Academy Overview Grid Styles */
.overview-content {
    margin-top: 3rem;
}

.overview-intro-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.overview-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.intro-content i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-content {
    padding: 2rem;
}

.card-content > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tutorials Card Styles */
.tutorial-items {
    display: grid;
    gap: 1rem;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(36, 145, 248, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-fast);
}

.tutorial-item:hover {
    background: rgba(36, 145, 248, 0.1);
    transform: translateX(5px);
}

.tutorial-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    min-width: 20px;
}

.tutorial-item div {
    display: flex;
    flex-direction: column;
}

.tutorial-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.tutorial-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Features Card Styles */
.feature-items {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 4px solid #22c55e;
    transition: all var(--transition-fast);
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #22c55e;
    min-width: 20px;
    margin-top: 0.125rem;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Enhanced Success Card Styles */
.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(36, 145, 248, 0.1);
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(251, 191, 36, 0.02) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Card Styles */
.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card .card-header {
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-card .header-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .header-icon i,
.cta-card .card-header h3 {
    color: white;
}

.cta-card .card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.guarantee-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guarantee-highlight i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-highlight strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 180px;
    transition: all 0.3s ease;
}

.btn-large i {
    font-size: 1.25rem;
}

.cta-buttons .btn {
    flex: 1;
    text-align: center;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: var(--primary-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    .container-fluid {
        padding: 0 1.5rem;
    }
    
    .overview-row {
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .academy-overview {
        padding: 5rem 0;
    }
    
    .overview-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-card-content {
        padding: 2.5rem;
    }
    
    .hero-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .hero-card-icon i {
        font-size: 2rem;
    }
    
    .hero-card-text h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .academy-overview {
        padding: 4rem 0;
    }
    
    .container-fluid {
        padding: 0 1rem;
    }
    
    .academy-overview .section-header {
        margin-bottom: 3rem;
    }
    
    .academy-overview .section-title {
        font-size: 2.5rem;
    }
    
    .academy-overview .section-subtitle {
        font-size: 1.125rem;
    }
    
    .overview-hero-card {
        margin-bottom: 3rem;
    }
    
    .hero-card-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .hero-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-card-icon i {
        font-size: 1.75rem;
    }
    
    .hero-card-text h3 {
        font-size: 1.5rem;
    }
    
    .hero-card-text p {
        font-size: 1rem;
    }
    
    .overview-main-grid {
        gap: 2rem;
    }
    
    .card-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
    }
    
    .header-icon i {
        font-size: 1.25rem;
    }
    
    .card-header h3 {
        font-size: 1.25rem;
    }
    
    .card-content {
        padding: 2rem 1.5rem;
    }
    
    .card-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tutorial-item,
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .tutorial-icon,
    .feature-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    
    .tutorial-icon i,
    .feature-icon i {
        font-size: 1rem;
    }
    
    .tutorial-info strong,
    .feature-info strong {
        font-size: 1rem;
    }
    
    .tutorial-info span,
    .feature-info span {
        font-size: 0.875rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .stat-icon i {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9375rem;
    }
    
    .guarantee-highlight {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .guarantee-highlight strong {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .academy-overview {
        padding: 3rem 0;
    }
    
    .academy-overview .section-title {
        font-size: 2rem;
    }
    
    .hero-card-content {
        padding: 1.5rem;
    }
    
    .card-header {
        padding: 1.25rem;
    }
    
    .card-content {
        padding: 1.5rem 1.25rem;
    }
    
    .success-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .overview-intro-card {
        padding: 1.5rem 1rem;
    }
    
    .intro-content h3 {
        font-size: 1.25rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .card-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .tutorial-item,
    .feature-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
    }
}

/* Academy Gallery Styles */
.academy-gallery {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.gallery-title i {
    color: var(--primary-blue);
    font-size: 1.75rem;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    background: #ffffff;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.gallery-overlay span {
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
    border-radius: var(--border-radius-md);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 145, 248, 0.1) 0%, rgba(4, 127, 228, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
    border-radius: var(--border-radius-md);
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .academy-gallery {
        margin-top: 2rem;
        padding: 2rem 0;
        border-radius: var(--border-radius-md);
    }
    
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 0 3rem;
    }
    
    .gallery-title {
        font-size: 2.25rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1440px) {
    .academy-gallery {
        padding: 4rem 0;
        margin-top: 5rem;
    }
    
    .gallery-grid {
        max-width: 1400px;
        gap: 2.5rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: lightboxFadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxSlideIn 0.4s ease-out;
}

@keyframes lightboxSlideIn {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: all var(--transition-fast);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: #ff6b6b;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-normal);
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    max-width: 600px;
}

.lightbox-caption p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: var(--primary-blue);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95);
}

/* Mobile Lightbox Styles */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 0 1rem;
    }
    
    .lightbox-close {
        top: -40px;
        right: 0;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-img {
        max-height: 70vh;
    }
    
    .lightbox-caption {
        margin-top: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .lightbox-caption p {
        font-size: 1rem;
    }
    
    .lightbox-nav {
        padding: 0 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-img {
        max-height: 65vh;
    }
    
    .lightbox-nav {
        padding: 0 0.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}