/* Comprehensive English Program Hero Section Styles */

/* Hero Section */
.program-hero {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(135deg, #1a237e 0%, #3f51b5 30%, #5c6bc0 60%, #7986cb 100%);
    z-index: 1; /* Lower than navigation menu */
}

.english-hero {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(135deg, #1a237e 0%, #3f51b5 30%, #5c6bc0 60%, #7986cb 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(121, 134, 203, 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;
}

/* Literary Quotes Background */
.literary-quotes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.quote {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    animation: quoteFloat 18s ease-in-out infinite;
}

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

/* Floating Letters */
.floating-letters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.letter {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(121, 134, 203, 0.2);
    border: 2px solid rgba(121, 134, 203, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Times New Roman', serif;
    animation: letterFloat 10s ease-in-out infinite;
}

.letter-1 { top: 20%; right: 20%; animation-delay: 0s; }
.letter-2 { top: 50%; right: 5%; animation-delay: 1.5s; }
.letter-3 { bottom: 30%; left: 15%; animation-delay: 3s; }
.letter-4 { bottom: 20%; right: 30%; animation-delay: 4.5s; }
.letter-5 { top: 35%; left: 8%; animation-delay: 6s; }
.letter-6 { top: 65%; right: 12%; animation-delay: 7.5s; }

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

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-15px) translateX(8px) rotate(2deg); opacity: 0.25; }
}

@keyframes letterFloat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

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

.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(121, 134, 203, 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, #7986cb, #5c6bc0);
    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, #7986cb, #5c6bc0);
    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: #7986cb;
}

.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: #7986cb;
    position: relative;
    background: linear-gradient(135deg, #7986cb, #9fa8da);
    -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, #7986cb, #5c6bc0, 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: #7986cb;
    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: #9fa8da;
    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, #7986cb, #5c6bc0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(121, 134, 203, 0.3);
    transition: all 0.3s ease;
}

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

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

.highlight-title {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #9fa8da;
    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, #7986cb, #5c6bc0);
    color: white;
    box-shadow: 0 8px 25px rgba(121, 134, 203, 0.4);
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #7986cb, #5c6bc0);
    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(121, 134, 203, 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(159, 168, 218, 0.2);
    color: #9fa8da;
    border-color: rgba(159, 168, 218, 0.4);
    backdrop-filter: blur(15px);
}

.hero-btn.tertiary:hover {
    background: rgba(159, 168, 218, 0.3);
    border-color: #9fa8da;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(159, 168, 218, 0.3);
    color: #9fa8da;
}

/* 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: #9fa8da;
    font-size: 1rem;
    width: 20px;
}

.info-item strong {
    color: #7986cb;
}

@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;
}

/* Literary World Animation */
.literary-world {
    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;
}

/* Book Stack Animation */
.book-stack {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 0 auto 2rem;
}

.book {
    position: absolute;
    width: 120px;
    height: 160px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: bookFloat 6s ease-in-out infinite;
}

.book-1 {
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    left: 0;
    top: 0;
    z-index: 3;
    animation-delay: 0s;
}

.book-2 {
    background: linear-gradient(135deg, #006400, #228b22);
    left: 20px;
    top: 20px;
    z-index: 2;
    animation-delay: 2s;
}

.book-3 {
    background: linear-gradient(135deg, #191970, #4169e1);
    left: 40px;
    top: 40px;
    z-index: 1;
    animation-delay: 4s;
}

.book-spine {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.book-pages {
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 8px;
    background: #f5f5f5;
    border-radius: 0 4px 4px 0;
}

.floating-words {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.word {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    animation: wordFloat 8s ease-in-out infinite;
}

.word-1 { left: 0; animation-delay: 0s; }
.word-2 { left: 50px; animation-delay: 2s; }
.word-3 { left: 100px; animation-delay: 4s; }
.word-4 { left: 150px; animation-delay: 6s; }

/* Writing Setup */
.writing-setup {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.typewriter {
    width: 100px;
    height: 60px;
    background: #2c2c2c;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.typewriter-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.paper {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: white;
    border-radius: 4px;
    padding: 5px;
}

.text-line {
    height: 2px;
    background: #333;
    margin-bottom: 3px;
    border-radius: 1px;
    animation: typingLine 4s ease-in-out infinite;
}

.line-1 { width: 80%; animation-delay: 0s; }
.line-2 { width: 90%; animation-delay: 1s; }
.line-3 { width: 70%; animation-delay: 2s; }
.line-4 { width: 60%; animation-delay: 3s; }

.typing-cursor {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 1px;
    height: 8px;
    background: #333;
    animation: cursorBlink 1s ease-in-out infinite;
}

.quill-pen {
    position: relative;
    width: 80px;
    height: 20px;
    margin-left: 20px;
}

.pen-body {
    width: 60px;
    height: 3px;
    background: #8b4513;
    border-radius: 2px;
    position: absolute;
    top: 8px;
}

.pen-tip {
    width: 15px;
    height: 8px;
    background: #c0c0c0;
    border-radius: 0 4px 4px 0;
    position: absolute;
    right: 0;
    top: 6px;
}

.ink-drop {
    width: 4px;
    height: 4px;
    background: #000080;
    border-radius: 50%;
    position: absolute;
    right: -2px;
    top: 10px;
    animation: inkDrop 3s ease-in-out infinite;
}

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

@keyframes bookFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes wordFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.8; }
    50% { transform: translateY(-15px); opacity: 1; }
}

@keyframes typingLine {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

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

@keyframes inkDrop {
    0%, 90% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Enhanced Statistics Dashboard */
.stats-dashboard {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7986cb, #5c6bc0);
    margin: 0 auto;
    border-radius: 2px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 15px 15px 0 0;
}

.stat-card.primary::before { background: linear-gradient(90deg, #7986cb, #5c6bc0); }
.stat-card.secondary::before { background: linear-gradient(90deg, #9fa8da, #7986cb); }
.stat-card.tertiary::before { background: linear-gradient(90deg, #c5cae9, #9fa8da); }
.stat-card.quaternary::before { background: linear-gradient(90deg, #5c6bc0, #3f51b5); }
.stat-card.special::before { background: linear-gradient(90deg, #3f51b5, #1a237e); }
.stat-card.highlight::before { background: linear-gradient(90deg, #ffd54f, #ffb300); }

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(121, 134, 203, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #7986cb;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(121, 134, 203, 0.5);
    transform: scale(1.1);
}

.stat-content {
    position: relative;
}

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

.stat-unit {
    font-size: 1.5rem;
    color: #7986cb;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin: 0.5rem 0 0.25rem;
}

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

/* 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, #7986cb, #5c6bc0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(121, 134, 203, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(121, 134, 203, 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: #7986cb;
    color: #7986cb;
}

@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;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.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 #7986cb;
}

.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, #7986cb, #5c6bc0);
    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: #1a237e;
    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;
    }

    .literary-world {
        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: 1fr;
    }

    .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;
    }

    .literary-world {
        height: 300px;
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }
}
