/* Homepage Styles */

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.hero-buttons .btn-primary {
    background: #007bff;
    border-color: #007bff;
}
.hero-buttons .btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}
.hero-buttons .btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.feature-card .icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #007bff;
    transition: all 0.3s ease;
}
.feature-card:hover .icon {
    background: #007bff;
    color: #fff;
}
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.feature-card p {
    color: #666;
    margin-bottom: 0;
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
}
.program-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.program-card .card-img-top {
    height: 200px;
    object-fit: cover;
}
.program-card .card-body {
    padding: 1.5rem;
}
.program-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.program-card .card-text {
    color: #666;
    margin-bottom: 1.5rem;
}
.program-card .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.program-card .btn:hover {
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #f8f9fa;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card .testimonial-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-card .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card .author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.testimonial-card .author-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn {
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.cta-section .btn:hover {
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .feature-card {
        margin-bottom: 1.5rem;
    }
    .program-card {
        margin-bottom: 1.5rem;
    }
    .testimonial-card {
        margin: 0.5rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
} 