/* FortuneCoder Website Styles */
/* Color Scheme: White, Black, Primary Blue (#2563eb, #1d4ed8) */

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

html {
    scroll-behavior: smooth;
}

/* Touch-friendly interactions for mobile devices */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .program-card, .testimonial-card, .nav-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn:hover, .nav-link:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Remove hover effects on touch devices */
    .program-preview-card:hover,
    .program-card:hover,
    .differentiator-card:hover {
        transform: none;
        box-shadow: inherit;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Responsive Typography Scale */
:root {
    --font-size-sm: clamp(0.8rem, 2.5vw, 0.875rem);
    --font-size-base: clamp(0.9rem, 2.5vw, 1rem);
    --font-size-lg: clamp(1rem, 3vw, 1.125rem);
    --font-size-xl: clamp(1.1rem, 3.5vw, 1.25rem);
    --font-size-2xl: clamp(1.25rem, 4vw, 1.5rem);
    --font-size-3xl: clamp(1.5rem, 5vw, 1.875rem);
    --font-size-4xl: clamp(1.875rem, 6vw, 2.25rem);
    --font-size-5xl: clamp(2.25rem, 8vw, 3rem);
    --font-size-6xl: clamp(2.5rem, 10vw, 3.75rem);
}

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

@keyframes slideInFade {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

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

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

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 0 30px rgba(37, 99, 235, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

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

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #2563eb;
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #111827;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.highlight {
    color: #2563eb;
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    background-size: 200% 200%;
    color: white;
    position: relative;
    overflow: hidden;
    animation: gradientShift 4s ease infinite;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline:hover {
    background-color: #f9fafb;
    border-color: #2563eb;
    color: #2563eb;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 999;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* ADCC Logo */
.adcc-logo {
    margin-right: 1rem;
}

.adcc-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.adcc-logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .adcc-logo {
        margin-right: 0.5rem;
    }
    
    .adcc-logo img {
        height: 35px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.logo i {
    color: #2563eb;
    font-size: 1.75rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.nav-link:hover {
    color: #2563eb;
    background-color: rgba(37, 99, 235, 0.1);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.nav-link.active:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.nav-toggle.active {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .nav-toggle .bar {
        background-color: #1f2937;
    }
    
    .nav-toggle.active .bar {
        background-color: #2563eb;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-graphic {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.hero-graphic i {
    font-size: 4rem;
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #111827;
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.programs h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.program-image-placeholder,
.program-image-container {
    height: 180px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem 1rem 0 0;
    position: relative;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.program-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.program-image-placeholder i {
    font-size: 3rem;
    color: white;
    z-index: 1;
}

/* SVG Image Styling */
.program-svg-image,
.program-svg-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.program-image-container .program-svg-image {
    width: 130px;
    height: 130px;
}

/* Different program image styles */
.program-image-placeholder[data-program="fullstack"] {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.program-image-placeholder[data-program="datascience"] {
    background: linear-gradient(135deg, #059669, #047857);
}

.program-image-placeholder[data-program="cloud"] {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.program-image-placeholder[data-program="cybersecurity"] {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.program-image-placeholder[data-program="mobile"] {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.program-image-placeholder[data-program="marketing"] {
    background: linear-gradient(135deg, #db2777, #be185d);
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-icon {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.program-card h3 {
    margin-bottom: 1rem;
}

.program-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.skill-tag {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Placements Section */
.placements {
    padding: 5rem 0;
    background-color: #ffffff;
}

.placements h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.stat-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

.placement-companies {
    margin-bottom: 4rem;
    text-align: center;
}

.placement-companies h3 {
    margin-bottom: 2rem;
    color: #111827;
}

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

.company-logo {
    background-color: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.company-logo:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.company-logo span {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.placement-support h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.support-item {
    text-align: center;
    padding: 1.5rem;
}

.support-item i {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.support-item h4 {
    margin-bottom: 0.75rem;
    color: #111827;
}

.support-item p {
    color: #6b7280;
    margin: 0;
}

/* Learning Journey Section */
.learning-journey {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.learning-journey h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #111827;
}

.author-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: white;
    color: #2563eb;
}

.cta-section .btn-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
}

.contact-method p {
    margin: 0;
    color: #6b7280;
}

/* Contact Form */
.contact-form-container {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.error {
    border-color: #ef4444;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #374151;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #2563eb;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: #2563eb;
}

/* Homepage Specific Styles */
/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.5) 50%, rgba(51, 65, 85, 0.6) 100%),
        url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: rgba(15, 23, 42, 0.2);
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.4) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-text {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.feature-item i {
    color: #60a5fa;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.btn-secondary.btn-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-large:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

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

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Laptop Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-mockup {
    position: relative;
    width: 500px;
    height: 320px;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.laptop-mockup::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -40px;
    right: -40px;
    height: 20px;
    background: linear-gradient(145deg, #374151, #1f2937);
    border-radius: 0 0 30px 30px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #0d1117;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #21262d;
}

.code-editor {
    height: 100%;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
}

.editor-header {
    background: #21262d;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #30363d;
}

.editor-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.25rem 0.75rem;
    background: #30363d;
    border-radius: 4px 4px 0 0;
    font-size: 11px;
    color: #8b949e;
}

.tab.active {
    background: #0d1117;
    color: #f0f6fc;
}

.code-content {
    padding: 1rem;
    line-height: 1.5;
}

.code-line {
    margin-bottom: 0.25rem;
    color: #f0f6fc;
}

.keyword { color: #ff7b72; }
.string { color: #a5d6ff; }
.function { color: #d2a8ff; }
.variable { color: #79c0ff; }
.boolean { color: #79c0ff; }
.tag { color: #7ee787; }
.attribute { color: #79c0ff; }

/* Floating Tech Badges */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-badge {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.tech-badge.react {
    top: 10%;
    right: -10%;
    background: linear-gradient(135deg, #61dafb, #21d4fd);
    color: #003d4f;
    animation-delay: 0s;
}

.tech-badge.node {
    top: 30%;
    left: -15%;
    background: linear-gradient(135deg, #68a063, #8cc84b);
    color: white;
    animation-delay: 0.5s;
}

.tech-badge.python {
    bottom: 30%;
    right: -5%;
    background: linear-gradient(135deg, #3776ab, #ffd43b);
    color: white;
    animation-delay: 1s;
}

.tech-badge.aws {
    bottom: 10%;
    left: -10%;
    background: linear-gradient(135deg, #ff9900, #232f3e);
    color: white;
    animation-delay: 1.5s;
}

.tech-badge.mongo {
    top: 50%;
    right: -20%;
    background: linear-gradient(135deg, #47a248, #4db33d);
    color: white;
    animation-delay: 2s;
}

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

/* Modern Placement Hero */
.modern-placement-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.placement-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(30, 41, 59, 0.1) 100%);
    z-index: 1;
}

.placement-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.placement-hero-text {
    color: white;
}

.placement-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-card.primary {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(37, 99, 235, 0.1);
}

.stat-card.success {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
}

.stat-card.warning {
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.1);
}

.stat-card.info {
    border-color: rgba(14, 165, 233, 0.5);
    background: rgba(14, 165, 233, 0.1);
}

.stat-card.purple {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.1);
}

.stat-card.orange {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-card.primary .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.stat-card.success .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-card.warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.stat-card.info .stat-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.stat-card.purple .stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.stat-card.orange .stat-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.2;
}

/* Modern Why Us Hero */
.modern-why-us-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(30, 41, 59, 0.15) 50%, rgba(51, 65, 85, 0.2) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80'),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.why-us-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(30, 41, 59, 0.1) 100%);
    z-index: 1;
}

.why-us-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.why-us-hero-text {
    color: white;
}

.why-us-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Comparison Cards */
.why-us-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-cards {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 200px;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.traditional {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
}

.comparison-card.fortunecoder {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
}

.traditional-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.fortunecoder-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.comparison-item.negative {
    color: #fca5a5;
}

.comparison-item.positive {
    color: #86efac;
}

.comparison-item i {
    width: 16px;
    flex-shrink: 0;
}

.vs-divider {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.achievement-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-content {
    flex: 1;
}

.badge-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-top: 0.25rem;
}

/* Our Success in Numbers Section - Simple Clean Design */
.success-numbers-simple {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    position: relative;
    overflow: hidden;
}

.success-content-simple {
    text-align: center;
    position: relative;
    z-index: 2;
}

.success-content-simple h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: left;
    padding-left: 2rem;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.stat-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
    font-style: italic;
}

/* Responsive Design for Simple Success Numbers */
@media (max-width: 1024px) {
    .stats-row {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 2.5rem 1.5rem;
    }
    
    .success-content-simple h2 {
        font-size: 2.2rem;
        text-align: center;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .success-content-simple h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .success-numbers-simple {
        padding: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .success-content-simple h2 {
        font-size: 1.8rem;
    }
}

.featured-programs-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.programs-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.program-preview-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.program-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.program-preview-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.program-preview-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-quick-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.program-quick-info .duration {
    color: #6b7280;
}

.program-quick-info .salary {
    color: #2563eb;
    font-weight: 600;
}

.program-highlights {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.highlight-tag {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.15rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
}

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

/* Why FortuneCoder Stands Apart Section */
.why-stands-apart {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.why-stands-apart .container {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

.highlight-gradient {
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.why-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

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

.differentiator-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.differentiator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.card-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.differentiator-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.differentiator-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    gap: 1.5rem;
}

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

.card-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.card-stats .stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-showcase {
    position: sticky;
    top: 2rem;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-stat-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.stat-card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.success-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

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

.main-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.main-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399, #059669);
    border-radius: 3px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
    border-radius: 3px;
}

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

.progress-bar.animate {
    animation: progressGlow 3s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { 
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    100% { 
        box-shadow: 0 2px 15px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.2);
    }
}

.progress-bar[data-progress="95"] { width: 95%; }
.progress-bar[data-progress="88"] { width: 88%; }
.progress-bar[data-progress="92"] { width: 92%; }

.mini-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mini-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
}

.mini-card i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.mini-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.mini-label {
    font-size: 0.8rem;
    color: #6b7280;
    display: block;
}

.section-footer {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2rem;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2563eb;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.key-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.key-point i {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.success-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.success-stories-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.story-preview-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.story-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    border: 3px solid white;
    margin: 0 auto 1rem;
}

.story-role {
    color: #6b7280;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.salary-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 1rem;
    border: 1px solid #bbf7d0;
}

.salary-change .before {
    color: #6b7280;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.salary-change .after {
    color: #059669;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.salary-change i {
    color: #059669;
    font-size: 1.2rem;
}

.quick-contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-20px) translateY(20px); }
    66% { transform: translateX(20px) translateY(-20px); }
}

.quick-contact-section .container {
    position: relative;
    z-index: 2;
}

.quick-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    color: #1f2937;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-shadow: none;
}

@keyframes titleGlow {
    0% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1); }
    100% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.2); }
}

.contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.contact-method:hover {
    background: rgba(248, 250, 252, 1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-method div {
    color: #1f2937;
}

.contact-method strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-method span {
    font-size: 1rem;
    color: #6b7280;
}

.quick-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.quick-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.quick-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.quick-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.mini-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mini-contact-form .form-row:last-of-type {
    margin-bottom: 2rem;
}

.mini-contact-form input,
.mini-contact-form select {
    padding: 1rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.mini-contact-form input:focus,
.mini-contact-form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.mini-contact-form input::placeholder {
    color: #9ca3af;
    transition: all 0.3s ease;
}

.mini-contact-form input:focus::placeholder {
    color: transparent;
}

.mini-contact-form button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    width: 100%;
}

.mini-contact-form button::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.6s ease;
}

.mini-contact-form button:hover::before {
    left: 100%;
}

.mini-contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.mini-contact-form button:active {
    transform: translateY(-1px);
}

/* Page-specific styles for all pages */

/* Programs Page Styles */
.programs-hero {
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.15) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: white;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.programs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(29, 78, 216, 0.1) 100%);
    z-index: 1;
}

.programs-hero .container {
    position: relative;
    z-index: 2;
}

.programs-hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
    font-weight: 700;
}

.programs-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 1.25rem;
    font-weight: 500;
}

.programs-hero .hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.programs-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.programs-hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.programs-hero .feature-item i {
    font-size: 1.2rem;
    color: #60a5fa;
}

.programs-hero .feature-item span {
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Programs Hero */
@media (max-width: 768px) {
    .programs-hero {
        min-height: 100vh;
        padding: 0;
    }
    
    .programs-hero h1 {
        font-size: 2.5rem;
    }
    
    .programs-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .programs-hero .hero-features {
        gap: 1rem;
    }
    
    .programs-hero .feature-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .programs-hero {
        min-height: 100vh;
        padding: 0;
    }
    
    .programs-hero h1 {
        font-size: 2rem;
    }
    
    .programs-hero .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .programs-hero .feature-item {
        padding: 0.5rem 1rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
}

.feature-item i {
    color: white;
}

.programs-filter {
    padding: 2rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    color: white;
}

.programs-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card-enhanced {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.program-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.featured-program {
    border: 2px solid #2563eb;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.program-rating {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 0.75rem;
}

.rating-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.program-content-enhanced {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.program-content-enhanced h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-duration {
    margin-bottom: 1rem;
}

.program-duration .duration {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Ensure buttons are always visible */
.program-preview-content .btn,
.program-content-enhanced .btn {
    margin-top: auto;
    flex-shrink: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-meta-enhanced {
    margin-bottom: 1rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-item i {
    color: #2563eb;
}

.program-stats-mini {
    margin: 1rem 0;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.stat-mini i {
    color: #2563eb;
}

.program-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.program-comparison {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.comparison-table {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
}

.comparison-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.program-name {
    font-weight: 500;
}

/* Enhanced Why Us Sections */
.unique-approach {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.approach-point {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.point-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.point-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.point-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.why-us-hero h1,
.why-us-hero .hero-subtitle {
    color: white;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 150px;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.unique-approach {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.approach-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 1.25rem;
}

.point-content h3 {
    margin-bottom: 0.5rem;
}

.comparison-chart {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.comparison-label {
    font-weight: 600;
    color: #374151;
}

.comparison-traditional {
    color: #6b7280;
    text-align: center;
}

.comparison-fortunecoder {
    color: #2563eb;
    font-weight: 500;
    text-align: center;
}

.key-differentiators {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.differentiator-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
}

.card-highlight {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.learning-journey-detailed {
    padding: 5rem 0;
    background-color: #ffffff;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    z-index: 1;
}

.marker-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.timeline-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.timeline-features .feature {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}


.metric-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
    height: 100%;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.metric-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.metric-icon i {
    font-size: 1.8rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.metric-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Enhanced Placement Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header h2 .highlight {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Placement Process Timeline */
.placement-process-enhanced {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.placement-process-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #e5e7eb, #d1d5db, #e5e7eb);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
    border-radius: 2px;
    animation: progressGrow 3s ease-out forwards;
}

@keyframes progressGrow {
    from { height: 0%; }
    to { height: 100%; }
}

.process-step-enhanced {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.process-step-enhanced:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-enhanced:nth-child(even) .step-content-wrapper {
    padding-right: 3rem;
    padding-left: 0;
}

.process-step-enhanced:nth-child(odd) .step-content-wrapper {
    padding-left: 3rem;
    padding-right: 0;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #3b82f6;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.step-icon-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    margin-top: -20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.step-icon.primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step-icon.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.step-icon.info {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.step-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.step-content-wrapper {
    flex: 1;
    max-width: calc(50% - 100px);
}

.step-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.process-step-enhanced:nth-child(odd) .step-content::before {
    left: -15px;
    transform: translateY(-50%);
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
}

.process-step-enhanced:nth-child(even) .step-content::before {
    right: -15px;
    transform: translateY(-50%);
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent white;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

.step-duration i {
    color: #3b82f6;
}

.step-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 2rem;
}

.step-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-group h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.detail-group h4 i {
    color: #3b82f6;
    font-size: 1rem;
}

.detail-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-group li {
    padding: 0.5rem 0;
    color: #6b7280;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.detail-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #10b981;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-outcome {
    margin-top: 2rem;
}

.outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    color: #0369a1;
    font-size: 0.95rem;
}

.outcome-badge.success {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #bbf7d0;
    color: #166534;
}

.outcome-badge i {
    font-size: 1rem;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.process-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-line {
        left: 30px;
    }
    
    .process-step-enhanced {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .process-step-enhanced:nth-child(even) .step-content-wrapper,
    .process-step-enhanced:nth-child(odd) .step-content-wrapper {
        padding-left: 2rem;
        padding-right: 0;
        max-width: none;
    }
    
    .step-number {
        left: 30px;
    }
    
    .step-icon-wrapper {
        left: 30px;
    }
    
    .step-content::before {
        display: none;
    }
    
    .step-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .placement-process-enhanced {
        padding: 4rem 0;
    }
    
    .step-header {
        flex-direction: column;
        gap: 1rem;
    align-items: flex-start;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Step Content States */
.step-content.expanded {
    border-left: 4px solid #3b82f6;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

.step-content.expanded::before {
    border-color: transparent #3b82f6 transparent transparent;
}

.process-step-enhanced:nth-child(even) .step-content.expanded::before {
    border-color: transparent transparent transparent #3b82f6;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.notification-content i {
    font-size: 1.25rem;
}

.notification-success .notification-content i {
    color: #10b981;
}

.notification-error .notification-content i {
    color: #ef4444;
}

.notification-info .notification-content i {
    color: #3b82f6;
}

.notification-content span {
    flex: 1;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: #6b7280;
}

/* Tooltip System */
.tooltip {
    position: absolute;
    background: #1f2937;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1f2937;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Career Transformation Impact Section */
.transformation-impact-enhanced {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.transformation-impact-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Impact Metrics Grid */
.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.impact-metric {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-metric:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.impact-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.impact-metric.success::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.impact-metric.warning::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.impact-metric.info::before {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.impact-metric.success .metric-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.impact-metric.warning .metric-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.impact-metric.info .metric-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.metric-content {
    margin-bottom: 1.5rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    display: inline-block;
}

.metric-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    margin-left: 0.25rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.metric-trend i {
    color: #10b981;
}

.metric-trend i.fa-arrow-down {
    color: #10b981;
}

.metric-trend span {
    color: #6b7280;
}

/* Impact Analysis */
.impact-analysis {
    margin: 6rem 0;
}

.analysis-section {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.analysis-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.analysis-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.analysis-header h3 i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.analysis-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Salary Distribution */
.salary-distribution {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.salary-range {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.range-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.range-percentage {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
}

.range-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.range-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease;
    width: 0;
}

.range-fill.primary {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.range-fill.success {
    background: linear-gradient(90deg, #10b981, #059669);
}

.range-fill.warning {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.range-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.range-count {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.range-example {
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

/* Career Progression */
.progression-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.progression-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    position: relative;
}

.step-circle.entry {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step-circle.mid {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-circle.senior {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.step-circle.leadership {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.step-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.progression-arrow {
    font-size: 1.5rem;
    color: #9ca3af;
    font-weight: bold;
    flex-shrink: 0;
}

/* Timeline Success */
.timeline-success {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-milestone {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.milestone-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.milestone-content {
    flex: 1;
}

.milestone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.milestone-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.milestone-percentage {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
}

.milestone-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.milestone-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 4px;
    transition: width 1.5s ease;
    width: 0;
}

.milestone-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* Industry Impact */
.industry-impact {
    margin-top: 4rem;
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.impact-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.industry-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.industry-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.industry-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.industry-stats .stat {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.industry-stats .growth {
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

.industry-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .progression-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .progression-arrow {
        transform: rotate(90deg);
    }
    
    .timeline-milestone {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .transformation-impact-enhanced {
        padding: 4rem 0;
    }
    
    .impact-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .analysis-section {
        padding: 2rem;
    }
    
    .milestone-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .range-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/* Clean Featured Success Stories Section */
.featured-stories {
    padding: 6rem 0;
    background: #f8fafc;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-story-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.story-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.story-info {
    flex: 1;
}

.story-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.current-position {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.location i {
    color: #3b82f6;
}

.salary-growth {
    text-align: center;
    flex-shrink: 0;
}

.growth-percentage {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.growth-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.transformation {
    margin-bottom: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.before, .after {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.role {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
}

.arrow {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.success-story-card blockquote {
    font-style: italic;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
}

.story-highlights {
    margin-bottom: 1.5rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.highlight i {
    color: #10b981;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.program-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.program-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.program-name {
    font-weight: 600;
    color: #374151;
    margin-right: auto;
}

.program-duration {
    font-size: 0.85rem;
    color: #6b7280;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-stories {
        padding: 4rem 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .success-story-card {
        padding: 1.5rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .program-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Modern Hero Section Redesign */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.highlight-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-gradient::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 2px;
    opacity: 0.7;
}

/* Modern Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge i {
    font-size: 1rem;
}

/* Modern Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Modern Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

/* Modern Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Modern Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
    font-weight: 500;
}

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

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

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

/* Unified Glass Container for Placement Page */
.unified-glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4rem;
    margin: 2rem auto;
    max-width: 1400px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.unified-glass-container::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) 50%,
        rgba(59, 130, 246, 0.05) 100%
    );
    border-radius: 32px;
    pointer-events: none;
    z-index: -1;
}

.unified-glass-container .placement-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.unified-glass-container .placement-hero-left {
    position: relative;
    z-index: 2;
}

.unified-glass-container h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.unified-glass-container .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.unified-glass-container .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.placement-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.feature-pill i {
    color: #60a5fa;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glass.btn-primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(29, 78, 216, 0.3));
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-glass.btn-primary:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(29, 78, 216, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-glass.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-glass.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Simple Stats Grid inside Unified Glass Container */
.unified-glass-container .placement-hero-right {
    position: relative;
    z-index: 2;
}

.unified-glass-container .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.simple-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 100%
    );
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.simple-stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.simple-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.simple-stat-card.primary .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.simple-stat-card.success .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.simple-stat-card.warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.simple-stat-card.info .stat-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.simple-stat-card.purple .stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.simple-stat-card.orange .stat-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.simple-stat-card .stat-content {
    position: relative;
    z-index: 1;
}

.simple-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline-block;
}

.simple-stat-card .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    display: inline-block;
    margin-left: 0.2rem;
}

.simple-stat-card .stat-label {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Responsive Design for Modern Hero */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: 100vh;
        padding: 4rem 0 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1rem;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        max-width: none;
    }
    
    .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 2rem;
        align-self: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2.5rem;
    }
    
    .feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats .stat-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem 1rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .laptop-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        min-height: 100vh;
        padding: 3rem 0 1rem;
    }
    
    .hero-content {
        padding: 0.5rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        max-width: 260px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .feature-item .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons .btn {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        max-width: 280px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
    }
    
    .hero-stats .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .laptop-mockup {
        max-width: 250px;
    }
    
    .laptop-screen {
        border-radius: 4px;
    }
    
    .code-editor {
        font-size: 10px;
    }
}

/* Responsive Design for Unified Glass Container */
@media (max-width: 1024px) {
    .unified-glass-container {
        padding: 3rem;
        margin: 1.5rem auto;
        border-radius: 28px;
    }
    
    .unified-glass-container .placement-hero-content {
        gap: 3rem;
    }
    
    .unified-glass-container h1 {
        font-size: 3rem;
    }
    
    .unified-glass-container .stats-grid {
        gap: 1.5rem;
    }
    
    .simple-stat-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .unified-glass-container {
        padding: 2.5rem;
        margin: 1rem;
        border-radius: 24px;
    }
    
    .unified-glass-container .placement-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .unified-glass-container h1 {
        font-size: 2.5rem;
    }
    
    .placement-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .feature-pill {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-glass {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .unified-glass-container .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .simple-stat-card {
        padding: 1.5rem;
    }
    
    .simple-stat-card .stat-number {
        font-size: 2rem;
    }
    
    .simple-stat-card .stat-suffix {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .unified-glass-container {
        padding: 2rem;
        margin: 0.5rem;
        border-radius: 20px;
    }
    
    .unified-glass-container h1 {
        font-size: 2rem;
    }
    
    .unified-glass-container .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .placement-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .feature-pill {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .simple-stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .simple-stat-card .stat-number {
        font-size: 1.8rem;
    }
    
    .simple-stat-card {
        padding: 1.25rem;
    }
}

/* Programming Journey Section */
.programming-journey {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.programming-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.5;
    }
    33% {
        transform: translateX(20px) translateY(-10px);
        opacity: 0.7;
    }
    66% {
        transform: translateX(-15px) translateY(15px);
        opacity: 0.6;
    }
}

.journey-header {
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.journey-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.highlight-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #8b5cf6 0%, #10b981 50%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.journey-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Journey Path */
.journey-path {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.journey-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.journey-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease;
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.4),
        0 2px 8px rgba(59, 130, 246, 0.3);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(59, 130, 246, 0.4),
            0 2px 8px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(59, 130, 246, 0.6),
            0 2px 12px rgba(59, 130, 246, 0.4);
    }
}

.journey-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.journey-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.journey-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.journey-step:nth-child(even) .step-content {
    padding-right: 3rem;
    padding-left: 0;
}

.journey-step:nth-child(odd) .step-content {
    padding-left: 3rem;
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    z-index: 2;
}

.step-circle {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(59, 130, 246, 0.1);
    animation: circleFloat 4s ease-in-out infinite;
}

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

.step-circle:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: #3b82f6;
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.2),
        0 8px 25px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.step-circle:hover .step-icon {
    color: white;
    transform: scale(1.1);
}

.step-circle:hover .step-number {
    color: white;
}

.step-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s ease;
}

.step-content {
    flex: 1;
    max-width: 400px;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    animation: textSlide 0.6s ease-out;
}

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

.step-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: textSlide 0.6s ease-out 0.1s both;
}

.step-tech {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: textSlide 0.6s ease-out 0.2s both;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px solid #cbd5e1;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tech-tag:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Journey Stats */
.journey-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: cardFloat 5s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 1s;
}

.stat-card:nth-child(3) {
    animation-delay: 2s;
}

.stat-card:nth-child(4) {
    animation-delay: 3s;
}

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Journey CTA */
.journey-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.journey-cta p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-journey {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid transparent;
}

.btn-journey.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-journey.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.btn-journey.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-journey.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-features span {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

/* Enhanced Hiring Partners */
.hiring-partners {
    padding: 6rem 0;
    background: white;
}

.partners-categories {
    display: grid;
    gap: 4rem;
}

.partner-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.partner-category h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 0.75rem;
    border: 2px solid #bfdbfe;
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.partner-roles {
    color: #64748b;
    font-size: 0.875rem;
}

.partner-hires {
    color: #059669;
    font-weight: 600;
    font-size: 0.875rem;
}

.placements-hero h1,
.placements-hero .hero-subtitle {
    color: white;
}

.placement-stats-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-hero {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 150px;
}

.stat-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-hero .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.placement-process {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.process-step {
    text-align: center;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-features span {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.hiring-partners {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.partners-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.partner-category h3 {
    margin-bottom: 2rem;
    color: #374151;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partner-logo {
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.partner-roles {
    color: #6b7280;
    font-size: 0.875rem;
}

.partner-hires {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.875rem;
}

.salary-insights {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.salary-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border-top: 4px solid #2563eb;
}

.salary-program {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.salary-ranges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.salary-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
}

.experience {
    font-weight: 500;
    color: #374151;
}

.range {
    font-weight: 600;
    color: #2563eb;
}

.career-support {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.25rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✓';
    color: #2563eb;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Success Stories Page Styles */
.success-hero {
    background: 
        linear-gradient(135deg, rgba(219, 39, 119, 0.1) 0%, rgba(190, 24, 93, 0.15) 100%),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
        url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.success-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.05) 0%, rgba(190, 24, 93, 0.1) 100%);
    z-index: 1;
}

.success-hero .container {
    position: relative;
    z-index: 2;
}

.success-hero h1,
.success-hero .hero-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.success-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.success-stat {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 150px;
}

.featured-stories {
    padding: 5rem 0;
    background-color: #ffffff;
}

.featured-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 1.5rem 1.5rem 0 0;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.story-card.featured {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
}

.story-card.featured::before {
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #3b82f6);
    height: 6px;
}

.story-image {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    border: 4px solid white;
    margin-bottom: 1rem;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-header {
    margin-bottom: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.story-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.story-role {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.story-meta {
    margin-top: 0.5rem;
}

.current-role {
    font-weight: 600;
    color: #374151;
    display: block;
}

.company {
    color: #6b7280;
    font-size: 0.875rem;
}

.transformation {
    margin-bottom: 1.5rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.before,
.after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.role {
    font-size: 0.875rem;
    color: #374151;
}

.salary {
    font-weight: 600;
    color: #2563eb;
}

.arrow {
    color: #2563eb;
    font-size: 1.25rem;
    font-weight: bold;
}

.story-card blockquote {
    font-style: italic;
    color: #374151;
    margin: 2rem 0;
    padding: 1.5rem;
    border: none;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 1rem;
    border-left: 4px solid #2563eb;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
}

.story-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #2563eb;
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
    opacity: 0.3;
}

.story-program {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.program-icon {
    width: 24px;
    height: 24px;
}

.stories-by-program {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.program-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.story-brief {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brief-info {
    flex: 1;
}

.brief-info h4 {
    margin-bottom: 0.25rem;
}

.brief-info .role {
    color: #6b7280;
    font-size: 0.875rem;
}

.brief-info .company {
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 500;
}

.salary-jump {
    background-color: #dcfce7;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tag {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.transformation-stats {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.stat-category h3 {
    margin-bottom: 2rem;
    color: #374151;
}

.stat-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-label {
    min-width: 120px;
    font-size: 0.875rem;
    color: #6b7280;
}

.bar {
    flex: 1;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background-color: #2563eb;
    transition: width 1s ease;
}

.stat-value {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: #374151;
}

.level-progression {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.level-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
}

.level-name {
    font-weight: 500;
    color: #374151;
}

.level-percentage {
    font-weight: 600;
    color: #2563eb;
}

.time-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.time-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.alumni-network {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.benefit-item {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
}

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

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(29, 78, 216, 0.1) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1.5rem;
    height: 350px;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

.quote-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-card.featured .testimonial-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    -webkit-line-clamp: 5;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.testimonial-card.featured .author-avatar {
    border-color: rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-card.featured .author-role {
    color: rgba(255, 255, 255, 0.8);
}

.salary-jump {
    margin-top: 0.5rem;
}

.jump-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-stats {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stats .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
}

.stat-number.highlight {
    color: #fbbf24;
    font-size: 1.4rem;
}

.testimonial-footer {
    margin-top: 3rem;
    text-align: center;
}

.testimonial-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-stats-bar .stat-item {
    text-align: center;
}

.testimonial-stats-bar .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.testimonial-stats-bar .stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Industry Partnerships */
.industry-partnerships {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.animated-code-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('https://media.giphy.com/media/qgQUggAC3Pfv687qPC/giphy.gif') center/cover,
        url('https://media.giphy.com/media/26tn33aiTi1jkl6H6/giphy.gif') center/cover;
    opacity: 0.1;
    animation: codeFlow 20s linear infinite;
    filter: hue-rotate(180deg) brightness(0.8);
}

@keyframes codeFlow {
    0% {
        transform: translateX(-100px) translateY(-50px) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateX(0px) translateY(0px) scale(1.05);
        opacity: 0.15;
    }
    50% {
        transform: translateX(50px) translateY(25px) scale(1);
        opacity: 0.1;
    }
    75% {
        transform: translateX(25px) translateY(-25px) scale(0.95);
        opacity: 0.08;
    }
    100% {
        transform: translateX(-100px) translateY(-50px) scale(1);
        opacity: 0.1;
    }
}

.industry-partnerships .container {
    position: relative;
    z-index: 2;
}

.industry-partnerships .section-header h2 {
    color: white;
}

.industry-partnerships .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.partner-tier {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.partner-tier:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.partner-tier h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.partner-tier.global-tech h3 {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-tier.indian-giants h3 {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-tier.unicorn-startups h3 {
    background: linear-gradient(45deg, #ff9ff3, #54a0ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.8rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-logo::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;
}

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

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.company-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.company-logo[src=""], 
.company-logo:not([src]) {
    display: none;
}

.partner-logo:has(.company-logo[src=""]),
.partner-logo:has(.company-logo:not([src])) {
    position: relative;
}

.partner-logo:has(.company-logo[src=""]):before,
.partner-logo:has(.company-logo:not([src])):before {
    content: attr(data-company);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.partner-logo:hover .company-logo {
    transform: scale(1.1);
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.partner-logo span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.partner-logo:hover span {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Why Stands Apart */
@media (max-width: 1024px) {
    .why-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .differentiators-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visual-showcase {
        position: static;
        order: -1;
    }
    
    .section-footer {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .why-stands-apart {
        padding: 4rem 0;
    }
    
    .differentiator-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-stat-card {
        padding: 1.5rem;
    }
    
    .main-stat-number {
        font-size: 1.5rem;
    }
    
    .section-footer {
        border-radius: 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        display: none;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonial-card {
        height: 320px;
        padding: 1.25rem;
    }
    
    .testimonial-card.featured {
        height: 320px;
        padding: 1.25rem;
    }
    
    .partners-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-stats-bar {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        height: 280px;
        padding: 1rem;
    }
    
    .testimonial-card.featured {
        height: 280px;
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
    }
    
    .testimonial-card.featured .testimonial-content p {
        -webkit-line-clamp: 4;
    }
    
    .testimonial-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .partner-logos {
        grid-template-columns: 1fr;
    }
    
    .company-logo {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-section,
    .industry-partnerships {
        padding: 3rem 0;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: 
        linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.15) 100%),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(185, 28, 28, 0.1) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1,
.contact-hero .hero-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.contact-hero .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-quick-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    color: white;
}

.quick-contact i {
    color: white;
}

.contact-methods {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.method-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.method-icon {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    font-size: 1.5rem;
}

.method-info {
    margin: 1.5rem 0;
}

.method-info strong {
    display: block;
    color: #374151;
    margin-bottom: 0.5rem;
}

.method-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.info-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-snippet {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
    border-left: 4px solid #2563eb;
}

.testimonial-snippet blockquote {
    margin: 0 0 1rem 0;
    font-style: italic;
    color: #374151;
}

.testimonial-snippet cite {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-faq {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.faq-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.faq-item h3 {
    color: #374151;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #6b7280;
    margin: 0;
}

.office-location {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.address {
    margin-bottom: 2rem;
}

.address h3 {
    color: #374151;
    margin-bottom: 1rem;
}

.address p {
    color: #6b7280;
    line-height: 1.6;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.detail-item i {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: #374151;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.map-placeholder {
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px dashed #d1d5db;
}

.map-placeholder i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: #374151;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* CTA Sections */
.programs-cta,
.why-us-cta,
.placements-cta,
.success-cta,
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.programs-cta h2,
.why-us-cta h2,
.placements-cta h2,
.success-cta h2,
.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.programs-cta p,
.why-us-cta p,
.placements-cta p,
.success-cta p,
.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.programs-cta .btn-primary,
.why-us-cta .btn-primary,
.placements-cta .btn-primary,
.success-cta .btn-primary,
.contact-cta .btn-primary {
    background-color: white;
    color: #2563eb;
}

.programs-cta .btn-primary:hover,
.why-us-cta .btn-primary:hover,
.placements-cta .btn-primary:hover,
.success-cta .btn-primary:hover,
.contact-cta .btn-primary:hover {
    background-color: #f8fafc;
}

.programs-cta .btn-secondary,
.why-us-cta .btn-secondary,
.placements-cta .btn-secondary,
.success-cta .btn-secondary,
.contact-cta .btn-secondary {
    border-color: white;
    color: white;
}

.programs-cta .btn-secondary:hover,
.why-us-cta .btn-secondary:hover,
.placements-cta .btn-secondary:hover,
.success-cta .btn-secondary:hover,
.contact-cta .btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

/* Large Tablet/Small Desktop Styles */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .success-metrics .container {
        padding: 0 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    /* Modern Hero Responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .laptop-mockup {
        width: 400px;
        height: 260px;
    }
    
    .floating-elements {
        display: none;
    }
    
    /* Placement Hero Responsive */
    .placement-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .placement-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    /* Why Us Hero Responsive */
    .why-us-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-us-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .comparison-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .achievement-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Homepage responsive */
    .programs-preview-grid,
    .success-stories-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .program-preview-card {
        height: auto;
        min-height: 300px;
    }
    
    .program-preview-content {
        padding: 1.25rem;
    }
    
    .program-preview-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .why-choose-content,
    .quick-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
        border-radius: 20px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        text-align: center;
        color: #1f2937;
    }
    
    .contact-method {
        padding: 1.25rem;
    }
    
    .quick-form {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .quick-form h3 {
        font-size: 1.5rem;
    }
    
    .success-metrics {
        padding: 4rem 0;
    }
    
    .success-metrics .container {
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
    
    .success-metrics h2 {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .metric-card {
        min-height: 260px;
    }
    
    .hero-stats,
    .hero-highlights,
    .placement-stats-hero,
    .success-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mini-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Programs page responsive */
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .programs-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .comparison-cell {
        padding: 0.5rem;
        justify-content: center;
        text-align: center;
    }
    
    /* Why Us page responsive */
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .differentiators-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .marker-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    /* Placements page responsive */
    .process-steps,
    .partners-grid,
    .salary-cards,
    .support-services {
        grid-template-columns: 1fr;
    }
    
    .partners-categories {
        gap: 2rem;
    }
    
    /* Success Stories page responsive */
    .featured-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .stories-grid,
    .network-benefits {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .time-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Contact page responsive */
    .methods-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-quick-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .quick-contact {
        width: 100%;
        justify-content: center;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Medium screens - Tablet landscape and small desktop */
@media (max-width: 1024px) {
    .navbar .container {
        gap: 1.5rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Mobile Navigation Styles */
    .nav-menu {
    transition: all 0.3s ease;
}

/* Fallback mobile navigation - simple and guaranteed to work */
@media (max-width: 768px) {
    .nav-menu.active.DISABLED_OLD_MENU {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(15, 23, 42, 0.95) !important;
        z-index: 9999 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Hide mobile drawer on desktop */
@media (min-width: 769px) {
    .mobile-nav-overlay,
    .mobile-nav-drawer,
    .drawer-cta,
    .drawer-footer {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Professional Mobile App Drawer */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    /* Professional slide-in drawer overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        /* Completely remove backdrop-filter to prevent blur issues */
    }
    
    .mobile-nav-overlay.show {
        opacity: 1;
        visibility: visible;
        /* No backdrop-filter - just dark overlay */
    }
    
    /* Ensure no blur persists when overlay is hidden */
    .mobile-nav-overlay:not(.show) {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
    }
    
    /* Professional drawer that slides from right */
    .mobile-nav-drawer {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        left: auto !important;
        width: 320px !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2) !important;
        z-index: 10000 !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-nav-drawer.show {
        right: 0 !important;
    }
    
    /* Drawer header */
    .drawer-header {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        padding: 2rem 1.5rem 1.5rem;
        color: white;
        position: relative;
    }
    
    .drawer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .drawer-logo i {
        font-size: 1.75rem;
        color: #60a5fa;
    }
    
    .drawer-subtitle {
        font-size: 0.9rem;
        opacity: 0.9;
        font-weight: 400;
    }
    
    .close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    /* Navigation menu */
    .drawer-nav {
        padding: 1.5rem 0;
    }
    
    .nav-section {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
        padding: 0 1.5rem;
    }
    
    .drawer-nav-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        position: relative;
    }
    
    .drawer-nav-link:hover {
        background: #f3f4f6;
        color: #2563eb;
        border-left-color: #2563eb;
        transform: translateX(4px);
    }
    
    .drawer-nav-link.active {
        background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
        color: #2563eb;
        border-left-color: #2563eb;
        font-weight: 600;
    }
    
    .drawer-nav-link i {
        width: 20px;
        text-align: center;
        font-size: 1.1rem;
        opacity: 0.7;
    }
    
    .drawer-nav-link:hover i,
    .drawer-nav-link.active i {
        opacity: 1;
    }
    
    /* CTA Button */
    .drawer-cta {
        margin: 2rem 1.5rem 1.5rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    .drawer-cta:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        color: white;
    }
    
    /* Drawer footer */
    .drawer-footer {
        padding: 1.5rem;
        border-top: 1px solid #e5e7eb;
        margin-top: auto;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f3f4f6;
        color: #6b7280;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .social-link:hover {
        background: #2563eb;
        color: white;
        transform: translateY(-2px);
    }
    
    .drawer-footer-text {
        text-align: center;
        font-size: 0.8rem;
        color: #9ca3af;
        line-height: 1.4;
    }

/* Programs Page Styles */
.programs-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.program-image-container {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-svg-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.program-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
}

.program-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.program-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.detail-item i {
    color: #2563eb;
    width: 16px;
}

.program-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid #dbeafe;
}

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

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

.price-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

/* Program Features Section */
.program-features {
    padding: 5rem 0;
    background: white;
}

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

.feature-card {
        text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Programs CTA */
.programs-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.programs-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.programs-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Programs */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .program-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .nav-menu.active .nav-item {
        display: block;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-menu.active .nav-link {
        color: white;
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: block;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        margin: 0.5rem 0;
    }
    
    .nav-menu.active .nav-link:hover {
        background: rgba(37, 99, 235, 0.3);
        border-color: rgba(37, 99, 235, 0.5);
        transform: translateY(-2px);
    }
    
    .nav-menu.active .btn-primary {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        font-weight: 700;
        margin-top: 1rem;
    }
    
    .nav-menu.active .nav-link.active {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        border-color: rgba(59, 130, 246, 0.5);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    .hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .programs-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
    }
}

/* Very small screens (phones) */
@media (max-width: 480px) {
    .programs-preview-grid,
    .programs-grid,
    .programs-grid-enhanced,
    .success-stories-preview,
    .featured-stories-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .metric-card {
        min-height: 240px;
    }
    
    .success-metrics {
        padding: 3rem 0;
    }
    
    .success-metrics .container {
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .success-metrics h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .metric-card {
        padding: 2rem 1.5rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    /* Better mobile spacing for Popular Training Programs */
    .featured-programs-preview {
        padding: 3rem 0;
    }
    
    .featured-programs-preview h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .featured-programs-preview .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .program-image-placeholder,
    .program-image-container {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
        margin-bottom: 1rem;
    }
    
    .program-svg-image {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
    
    .program-svg-image,
    .program-svg-icon {
        width: 80px;
        height: 80px;
    }
    
    /* Mobile-friendly cards */
    .program-preview-card,
    .program-card,
    .differentiator-card,
    .testimonial-card {
        margin: 0;
        border-radius: 16px;
        touch-action: manipulation;
    }
    
    .program-preview-card {
        padding: 0;
        height: auto;
        min-height: 280px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .program-preview-content {
        padding: 1.25rem;
    }
    
    .program-preview-content h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .program-quick-info {
        margin-bottom: 1rem;
    }
    
    .program-quick-info .duration {
        font-size: 0.9rem;
        color: #6b7280;
        font-weight: 500;
    }
    
    .program-preview-card .btn-small {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }
    
    /* Better button spacing for mobile */
    .btn {
        min-height: 48px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-large {
        min-height: 52px;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Improve text readability */
    h1, h2, h3 {
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
    
    p, .hero-subtitle, .section-subtitle {
        line-height: 1.6;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    
    .program-preview-card,
    .program-card,
    .program-card-enhanced {
        height: 320px;
    }
    
    .story-preview-card,
    .story-card {
        height: 380px;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .story-avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    /* Mobile Hero */
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .laptop-mockup {
        width: 300px;
        height: 200px;
    }
    
    .code-editor {
        font-size: 10px;
    }
}

/* ===== MIND-BLOWING FORTUNECODER DIFFERENCE SECTION ===== */

/* Enhanced Why Us Sections - Mind-blowing Design */
.unique-approach-enhanced {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    overflow: hidden;
    min-height: auto;
}

.unique-approach-enhanced .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animated Background Elements */
.approach-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(79, 70, 229, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(245, 158, 11, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particlesFloat 20s linear infinite;
    opacity: 0.4;
}

.gradient-waves {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(79, 70, 229, 0.05) 50%,
        transparent 70%
    );
    animation: waveMove 15s ease-in-out infinite;
}

.geometric-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pattern-circle,
.pattern-hexagon,
.pattern-triangle {
    position: absolute;
    opacity: 0.08;
    animation: geometricFloat 12s ease-in-out infinite;
}

.pattern-circle {
    border-radius: 50%;
    border: 2px solid #4f46e5;
}

.pattern-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pattern-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.pattern-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: -4s;
}

.pattern-hexagon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #7c3aed;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.pattern-4 {
    top: 30%;
    right: 25%;
    animation-delay: -1s;
}

.pattern-5 {
    top: 70%;
    left: 60%;
    animation-delay: -3s;
}

.pattern-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(16, 185, 129, 0.3);
}

.pattern-6 {
    top: 40%;
    left: 80%;
    animation-delay: -5s;
}

/* Section Header Enhanced */
.section-header-enhanced {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: #4f46e5;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.header-badge i {
    color: #4f46e5;
    animation: iconSpin 4s linear infinite;
}

.section-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.highlight-gradient {
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

.difference-text {
    position: relative;
    display: inline-block;
}

.difference-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

.section-subtitle-enhanced {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Content Layout */
.approach-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(79, 70, 229, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Approach Cards */
.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.approach-card {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: translateY(0);
}

.approach-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.5s ease;
}

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

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.approach-card:hover .card-glow {
    opacity: 0.7;
    animation: glowPulse 2s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 15px;
    opacity: 0.2;
    animation: iconBgPulse 3s ease-in-out infinite;
}

.icon-container i {
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.icon-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #4f46e5;
    border-radius: 50%;
    animation: particleOrbit 4s linear infinite;
}

.icon-particles span:nth-child(1) {
    top: 10px;
    left: 50%;
    animation-delay: 0s;
}

.icon-particles span:nth-child(2) {
    top: 50%;
    right: 10px;
    animation-delay: -1.33s;
}

.icon-particles span:nth-child(3) {
    bottom: 10px;
    left: 50%;
    animation-delay: -2.66s;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #06b6d4);
    border-radius: 3px;
    width: 0%;
    animation: progressFill 2s ease-out forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: progressShine 2s ease-out infinite;
}

.progress-fill[data-width="95"] { --progress-width: 95%; }
.progress-fill[data-width="100"] { --progress-width: 100%; }
.progress-fill[data-width="90"] { --progress-width: 90%; }

.progress-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.approach-card:hover .card-shine {
    left: 100%;
}

/* Comparison Visual */
.comparison-visual {
    position: sticky;
    top: 2rem;
    width: 100%;
}

.comparison-container {
    padding: 2.5rem;
    position: relative;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.comparison-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vs-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    animation: vsBadgePulse 2s ease-in-out infinite;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comparison-row {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.comparison-row.animated {
    opacity: 1;
    transform: translateY(0);
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.comparison-label i {
    color: #4f46e5;
}

.comparison-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.traditional-side,
.fortunecoder-side {
    text-align: center;
}

.side-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-value {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-value.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.comparison-value.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    animation: positiveGlow 3s ease-in-out infinite;
}

.comparison-value:hover {
    transform: scale(1.05);
}

/* Interactive Stats */
.interactive-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 80px;
    max-height: 80px;
}

.circle-bg {
    fill: none;
    stroke: rgba(79, 70, 229, 0.1);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: circleProgress 2s ease-out forwards;
    stroke: #4f46e5;
}

.percentage {
    fill: #1e293b;
    font-family: inherit;
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: 700;
}

.stat-label {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Mind-blowing Animations */
@keyframes particlesFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-60px) rotate(240deg); }
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(180deg); }
}

@keyframes geometricFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
        transform: scale(1.05);
    }
}

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

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

@keyframes underlineGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(79, 70, 229, 0.5);
        transform: scaleX(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(79, 70, 229, 0.8);
        transform: scaleX(1.1);
    }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; filter: blur(10px); }
    50% { opacity: 1; filter: blur(15px); }
}

@keyframes iconBgPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

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

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(25px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(25px) rotate(-360deg); }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: var(--progress-width, 95%); }
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes vsBadgePulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes positiveGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
}

@keyframes circleProgress {
    0% { stroke-dasharray: 0 100; }
    100% { stroke-dasharray: var(--progress, 95) 100; }
}

/* Responsive Design for Enhanced Section */
@media (max-width: 1024px) {
    .approach-content-enhanced {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .comparison-visual {
        position: static;
        margin-top: 2rem;
    }
    
    .section-title-enhanced {
        font-size: 2.5rem;
    }
    
    .unique-approach-enhanced .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .unique-approach-enhanced {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .unique-approach-enhanced .container {
        padding: 0 1rem;
    }
    
    .section-title-enhanced {
        font-size: 2rem;
    }
    
    .section-subtitle-enhanced {
        font-size: 1rem;
    }
    
    .approach-content-enhanced {
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .approach-cards {
        gap: 1.5rem;
    }
    
    .approach-card {
        padding: 1.5rem;
    }
    
    .comparison-container {
        padding: 1.5rem;
    }
    
    .comparison-sides {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .interactive-stats {
        gap: 1rem;
    }
    
    .stat-circle {
        width: 60px;
        height: 60px;
    }
    
    .circular-chart {
        max-width: 60px;
        max-height: 60px;
    }
}
}