/* Base Styles */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #2C3E50;
    --accent-color: #E67E22;
    --success-color: #2ECC71;
    --light-bg: #F8F9FA;
    --dark-bg: #2C3E50;
    --text-color: #333;
    --light-text: #FFF;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(74, 144, 226, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background-color: var(--accent-color);
    border: none;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
}

.welcome-section img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.welcome-section img:hover {
    transform: scale(1.02);
}

.key-points {
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.point i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.program-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: rotate(360deg);
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.age {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.program-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.program-features li:last-child {
    border-bottom: none;
}

.fee-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fee {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;