.elementor-11 .elementor-element.elementor-element-add421b:not(.elementor-motion-effects-element-type-background), .elementor-11 .elementor-element.elementor-element-add421b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EAF7FF;}.elementor-11 .elementor-element.elementor-element-add421b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-11 .elementor-element.elementor-element-add421b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-bdd961d */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f9ff;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,123,255,0.7), rgba(0,123,255,0.7)),
                url('students.jpg') center/cover no-repeat;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

/* COURSE SECTION */
.course-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    gap: 50px;
    flex-wrap: wrap;
    animation: slideUp 1.5s ease;
}

.course-section.reverse {
    flex-direction: row-reverse;
}

.course-text {
    flex: 1;
}

.course-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #003366;
}

.course-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-text ul {
    margin-bottom: 25px;
}

.course-text ul li {
    margin-bottom: 10px;
}

.course-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.course-image {
    flex: 1;
}

.course-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CTA */
.cta {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 20px;
}

.btn.white {
    background: #fff;
    color: #007bff;
}

.btn.white:hover {
    background: #e6f2ff;
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .course-section {
        flex-direction: column;
        text-align: center;
    }
}/* End custom CSS */