/* Start custom CSS for html, class: .elementor-element-388beba *//* HERO */
.courses-hero {
    position: relative;
    height: 55vh;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.courses-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,40,120,0.85), rgba(0,160,255,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.courses-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

/* SECTION */
.courses-section {
    padding: 90px 0;
    background: #f4f9ff;
}

/* GRID */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* CARD */
.course-card {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,86,179,0.08);
    transition: 0.3s ease;
}

.course-card i {
    font-size: 36px;
    color: #0056b3;
    margin-bottom: 18px;
}

.course-card h3 {
    margin-bottom: 12px;
    color: #003d99;
}

.course-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,86,179,0.15);
}

/* BUTTON OUTLINE */
.btn-outline {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #0056b3;
    color: #0056b3;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #0056b3;
    color: white;
}

/* CTA */
.courses-cta {
    background: linear-gradient(135deg, #003d99, #00aaff);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.courses-cta h2 {
    margin-bottom: 25px;
}/* End custom CSS */