/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 150px;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}



.program-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.program-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.program-icon i {
    font-size: 30px;
    color: #fff;
}

.program-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.program-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Latest News Section */
.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-date {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.news-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.5);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.fa-heart,
.fa-lightbulb,
.fa-hands-helping {
    color: #ff9600 !important;
}

.product-title {
    font-size: 1.2rem !important;
}

.price{
    font-size: 1.2rem !important;
}

/* Products Section */
.products-section .row {
    display: flex;
    flex-wrap: wrap;
}

.products-section .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Mobile: Show 2 products per row */
@media (max-width: 762px) {
    .products-section .row > .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .products-section .row > .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


/* Responsive Styles */
@media (max-width: 991.98px) {

    .hero-slider,
    .hero-slide {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {

    .hero-slider,
    .hero-slide {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    .program-card {
        padding: 20px;
    }
}