/* Comprehensive Medical Laboratory Technology Program Hero Section Styles */


/* Hero Section */
.program-hero {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 30%, #f44336 60%, #ef5350 100%);
    z-index: 1; /* Lower than navigation menu */
}

.mlt-hero {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #c62828 0%, #d32f2f 30%, #f44336 60%, #ef5350 100%);
    z-index: 1; /* Lower than navigation menu */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(244, 67, 54, 0.1) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 250px 250px, 180px 180px;
    animation: float 25s ease-in-out infinite;
    z-index: 2;
}

/* Medical Elements Background */
.medical-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.medical-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    animation: medicalFloat 18s ease-in-out infinite;
}

.element-1 { top: 15%; left: 10%; animation-delay: 0s; }
.element-2 { top: 25%; right: 15%; animation-delay: 3s; }
.element-3 { top: 60%; left: 5%; animation-delay: 6s; }
.element-4 { top: 70%; right: 10%; animation-delay: 9s; }
.element-5 { top: 40%; left: 20%; animation-delay: 12s; }
.element-6 { top: 80%; right: 25%; animation-delay: 15s; }

/* Lab Patterns */
.lab-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.lab-pattern {
    position: absolute;
    background: rgba(244, 67, 54, 0.2);
    animation: labPulse 8s ease-in-out infinite;
}

.pattern-1 {
    width: 100px;
    height: 2px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pattern-2 {
    width: 2px;
    height: 80px;
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.pattern-3 {
    width: 120px;
    height: 2px;
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.pattern-4 {
    width: 2px;
    height: 60px;
    bottom: 15%;
    right: 15%;
    animation-delay: 4.5s;
}

.pattern-5 {
    width: 80px;
    height: 2px;
    top: 50%;
    left: 25%;
    animation-delay: 6s;
}

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

@keyframes medicalFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-20px) translateX(10px) rotate(5deg); opacity: 0.25; }
}

@keyframes labPulse {
    0%, 100% { opacity: 0.2; box-shadow: 0 0 0 rgba(244, 67, 54, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 20px rgba(244, 67, 54, 0.8); }
}

.hero-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: 85vh;
    margin-bottom: 3rem;
    margin-right: 250px;

}

.hero-text {
    color: white;
}

/* Enhanced Program Badge */
.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(244, 67, 54, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 50%;
    opacity: 0.3;
    animation: iconGlow 2s ease-in-out infinite;
    z-index: -1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge-category {
    font-size: 1rem;
    font-weight: 600;
    color: #f44336;
}

.badge-level {
    font-size: 0.85rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes iconGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.title-line-1 {
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    animation: titleSlideIn 1s ease-out;
}

.title-line-2 {
    display: block;
    position: relative;
    animation: titleSlideIn 1s ease-out 0.3s both;
}

.hero-title .highlight {
    color: #f44336;
    position: relative;
    background: linear-gradient(135deg, #f44336, #ef5350);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-decoration {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
}

.decoration-line {
    height: 4px;
    background: linear-gradient(90deg, #f44336, #d32f2f, transparent);
    border-radius: 2px;
    animation: lineExpand 1.5s ease-out 0.8s both;
}

.decoration-dots {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    animation: dotsAppear 1s ease-out 1.2s both;
}

.decoration-dots span {
    width: 8px;
    height: 8px;
    background: #f44336;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.decoration-dots span:nth-child(2) { animation-delay: 0.3s; }
.decoration-dots span:nth-child(3) { animation-delay: 0.6s; }

/* Enhanced Subtitle */
.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    animation: subtitleFadeIn 1s ease-out 0.6s both;
}

.subtitle-highlight {
    color: #ef5350;
    font-weight: 600;
}

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

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

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

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes subtitleFadeIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 0.95; }
}

/* Enhanced Program Highlights */
.program-highlights {
    margin-bottom: 3rem;
    animation: highlightsFadeIn 1s ease-out 0.9s both;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: highlightSlideIn 0.6s ease-out both;
}

.highlight-item:nth-child(1) { animation-delay: 1s; }
.highlight-item:nth-child(2) { animation-delay: 1.1s; }
.highlight-item:nth-child(3) { animation-delay: 1.2s; }
.highlight-item:nth-child(4) { animation-delay: 1.3s; }
.highlight-item:nth-child(5) { animation-delay: 1.4s; }
.highlight-item:nth-child(6) { animation-delay: 1.5s; }

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-title {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ef5350;
    font-weight: 500;
}

.highlight-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

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

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

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: buttonsFadeIn 1s ease-out 1.2s both;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 1;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.hero-btn.primary:hover .btn-glow {
    opacity: 0.7;
    animation: glowPulse 1.5s ease-in-out infinite;
}

.hero-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(244, 67, 54, 0.5);
    color: white;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-btn.tertiary {
    background: rgba(239, 83, 80, 0.2);
    color: #ef5350;
    border-color: rgba(239, 83, 80, 0.4);
    backdrop-filter: blur(15px);
}

.hero-btn.tertiary:hover {
    background: rgba(239, 83, 80, 0.3);
    border-color: #ef5350;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 83, 80, 0.3);
    color: #ef5350;
}

/* Additional Info */
.hero-additional-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    animation: infoFadeIn 1s ease-out 1.5s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item i {
    color: #ef5350;
    font-size: 1rem;
    width: 20px;
}

.info-item strong {
    color: #f44336;
}

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

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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

/* Enhanced Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    animation: visualFadeIn 1s ease-out 0.8s both;
}

/* Medical Laboratory Animation */
.medical-lab {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    overflow: hidden;
}

/* Laboratory Equipment Setup */
.lab-equipment {
    position: relative;
    width: 100%;
    height: 100%;
}

.microscope-setup {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 150px;
}

.microscope {
    position: relative;
    width: 80px;
    height: 120px;
    animation: microscopeFloat 6s ease-in-out infinite;
}

.microscope-head {
    width: 60px;
    height: 30px;
    background: #333;
    border-radius: 15px 15px 0 0;
    position: absolute;
    top: 0;
    left: 10px;
}

.microscope-body {
    width: 40px;
    height: 60px;
    background: #555;
    position: absolute;
    top: 25px;
    left: 20px;
    border-radius: 5px;
}

.microscope-base {
    width: 80px;
    height: 20px;
    background: #333;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.specimen-slide {
    width: 20px;
    height: 3px;
    background: #f44336;
    position: absolute;
    bottom: 15px;
    left: 30px;
    animation: slideGlow 3s ease-in-out infinite;
}

.lab-samples {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.sample {
    width: 25px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    position: relative;
    animation: sampleBubble 4s ease-in-out infinite;
}

.sample-1 { animation-delay: 0s; }
.sample-2 { animation-delay: 1s; }
.sample-3 { animation-delay: 2s; }

.sample-liquid {
    position: absolute;
    bottom: 0;
    left: 2px;
    right: 2px;
    border-radius: 0 0 10px 10px;
    animation: liquidLevel 5s ease-in-out infinite;
}

.sample-liquid.red {
    background: linear-gradient(to top, #d32f2f, #f44336);
    height: 70%;
}

.sample-liquid.blue {
    background: linear-gradient(to top, #1976d2, #2196f3);
    height: 60%;
}

.sample-liquid.green {
    background: linear-gradient(to top, #388e3c, #4caf50);
    height: 80%;
}

/* Test Tubes */
.test-tubes {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 150px;
    height: 80px;
}

.tube-rack {
    display: flex;
    gap: 15px;
    align-items: end;
}

.test-tube {
    width: 20px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 10px 10px;
    position: relative;
    animation: tubeFloat 8s ease-in-out infinite;
}

.tube-1 { animation-delay: 0s; }
.tube-2 { animation-delay: 2s; }
.tube-3 { animation-delay: 4s; }

.tube-content {
    position: absolute;
    bottom: 0;
    left: 2px;
    right: 2px;
    border-radius: 0 0 8px 8px;
}

.tube-content.blood {
    background: linear-gradient(to top, #b71c1c, #d32f2f);
    height: 70%;
}

.tube-content.urine {
    background: linear-gradient(to top, #f57f17, #ffeb3b);
    height: 50%;
}

.tube-content.serum {
    background: linear-gradient(to top, #ffc107, #fff59d);
    height: 60%;
}

.tube-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

/* DNA Helix */
.dna-helix {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 100px;
    animation: helixRotate 10s linear infinite;
}

.helix-strand {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #f44336, transparent, #f44336);
    border-radius: 1px;
}

.strand-1 {
    left: 20px;
    animation: strandWave 4s ease-in-out infinite;
}

.strand-2 {
    right: 20px;
    animation: strandWave 4s ease-in-out infinite 2s;
}

.helix-bases {
    position: absolute;
    width: 100%;
    height: 100%;
}

.base {
    position: absolute;
    width: 40px;
    height: 2px;
    background: rgba(244, 67, 54, 0.6);
    border-radius: 1px;
    left: 10px;
    animation: baseFloat 6s ease-in-out infinite;
}

.base-1 { top: 20%; animation-delay: 0s; }
.base-2 { top: 40%; animation-delay: 1.5s; }
.base-3 { top: 60%; animation-delay: 3s; }
.base-4 { top: 80%; animation-delay: 4.5s; }

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

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

@keyframes slideGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; box-shadow: 0 0 10px #f44336; }
}

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

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

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

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

@keyframes strandWave {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(5px); }
}

@keyframes baseFloat {
    0%, 100% { opacity: 0.6; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(-2px); }
}

/* Enhanced Statistics Dashboard */
.stats-dashboard {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f44336, #ef5350, #f44336);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.dashboard-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f44336, #d32f2f);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.4);
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    transition: height 0.3s ease;
}

.stat-card:hover::before {
    height: 6px;
}

.stat-card.primary::before {
    background: linear-gradient(90deg, #f44336, #d32f2f);
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.4);
}
.stat-card.secondary::before {
    background: linear-gradient(90deg, #ef5350, #f44336);
    box-shadow: 0 2px 8px rgba(239, 83, 80, 0.4);
}
.stat-card.tertiary::before {
    background: linear-gradient(90deg, #e57373, #ef5350);
    box-shadow: 0 2px 8px rgba(229, 115, 115, 0.4);
}
.stat-card.quaternary::before {
    background: linear-gradient(90deg, #d32f2f, #c62828);
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
}
.stat-card.special::before {
    background: linear-gradient(90deg, #c62828, #b71c1c);
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.4);
}
.stat-card.highlight::before {
    background: linear-gradient(90deg, #ffc107, #ff9800);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.3), rgba(244, 67, 54, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #f44336;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(244, 67, 54, 0.3);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.2);
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.5), rgba(244, 67, 54, 0.3));
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(244, 67, 54, 0.5);
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 1.8rem;
    color: #ef5350;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin: 0.8rem 0 0.4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
    font-weight: 400;
}

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

/* Hero Features */
.hero-features {
    margin-top: 4rem;
    animation: featuresFadeIn 1s ease-out 1.8s both;
}

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

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

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(244, 67, 54, 0.4);
}

.feature-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #f44336;
    color: #f44336;
}

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

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

/* Quick Info Section */
.program-quick-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f44336;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

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

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .medical-lab {
        width: 100%;
        max-width: 400px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .medical-lab {
        height: 300px;
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

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

    .stats-dashboard {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* ======================================================================
   NAVIGATION Z-INDEX FIXES FOR MLT PAGE
   ====================================================================== */

/* Ensure navigation always stays on top of hero section */
.header-main {
    z-index: 10000 !important;
    position: relative !important;
}

.header-nav {
    z-index: 10001 !important;
    position: relative !important;
}

.header-menu {
    z-index: 10002 !important;
    position: relative !important;
}

.header-main .header-menu .sub-menu {
    z-index: 10003 !important;
    position: absolute !important;
}

.header-main.sticky {
    z-index: 10000 !important;
}

.header-main.sticky .header-menu .sub-menu {
    z-index: 10003 !important;
}

/* Reduce hero content z-index to ensure header stays on top */
.hero-content {
    z-index: 5 !important;
}

/* Ensure all hero elements stay below navigation */
.mlt-hero,
.program-hero {
    z-index: 1 !important;
}

.hero-background,
.hero-overlay,
.hero-particles,
.medical-elements {
    z-index: 2 !important;
}