﻿.bottom-banner {
    margin-top: 60px;
    margin-bottom: 60px;
}

/* About Section */
.about-section {
    padding: 0 0 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-primary {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

    .about-image-primary img {
        width: 100%;
        height: auto;
        display: block;
    }

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

    .about-image-secondary img {
        width: 100%;
        height: auto;
        display: block;
    }

.notification-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

    .notification-badge i {
        color: #007bff;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .notification-badge span {
        font-weight: 600;
        font-size: 14px;
        color: #333;
    }

    .notification-badge p {
        font-size: 12px;
        color: #666;
        margin-top: 2px;
    }

.about-text {
    padding: 20px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

    .section-title.center {
        text-align: center;
    }

    .section-title span {
        font-size: 38px;
        font-weight: 700;
    }

.highlight {
    color: var(--willimedia-green);
}

.about-description p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .feature-icon i {
        font-size: 30px;
        color: var(--willimedia-blue);
    }

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--willimedia-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.course-image {
    height: 200px;
    overflow: hidden;
}

    .course-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 20px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.course-category {
    font-size: 13px;
    color: #666;
}

.course-date {
    font-size: 13px;
    color: #999;
}

.course-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.course-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    font-size: 14px;
    color: #555;
}



/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-secondary {
        max-width: 150px;
        bottom: -50px;
        right: -50px;
    }

    .features-grid,
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {


    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .bottom-copyright {
        flex-direction: column;
        gap: 5px;
    }
}
