.elementor-8867 .elementor-element.elementor-element-a379831{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-53px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-8867 .elementor-element.elementor-element-a055173{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7587d11 *//* FORCE FULL WIDTH HERO */
.courses-hero {
    width: 100vw;
    min-height: 80vh;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px;
    background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1600&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

/* CONTENT */
.hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

/* TAG */
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 26px;
}

/* HEADING */
.hero-container h1 {
    color: #ffffff !important;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

/* TEXT */
.hero-container p {
    color: #f2f2f2 !important;
    font-size: 17px;
    line-height: 1.9;
    max-width: 800px;
    margin: auto;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .courses-hero {
        min-height: 65vh;
        padding: 70px 15px;
    }

    .hero-container h1 {
        font-size: 32px;
    }

    .hero-container p {
        font-size: 15px;
        line-height: 1.7;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8c6d14f */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f7f7f7;
}

/* Section */
.courses-section {
    width: 100%;
    padding: 60px 20px;
}

/* Container */
.courses-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.course-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Image */
.course-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover img {
    transform: scale(1.1);
}

/* Duration Badge */
.duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff5a2c;
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
}

/* Content */
.course-content {
    padding: 22px;
}

.course-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.course-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .course-image {
        height: 200px;
    }
}/* End custom CSS */