.lciit-course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
    margin:50px 0;
}

.lciit-course-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    position:relative;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.lciit-course-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.15);
}

.course-image{
    position:relative;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.lciit-course-card:hover img{
    transform:scale(1.08);
}

.featured-badge{
    position:absolute;
    top:15px;
    right:15px;

    background:#f59e0b;

    color:#fff;

    padding:8px 14px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;
}

.course-content{
    padding:25px;
}

.course-content h3{
    margin:0 0 15px;
    font-size:24px;
}

.course-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
    font-weight:600;
}

.course-features{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:25px;
}

.course-features span{
    background:#f8fafc;
    padding:10px;
    border-radius:12px;
}

.course-buttons{
    display:flex;
    gap:10px;
}

.lciit-btn{
    width:100%;
    text-align:center;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    color:#fff !important;

    padding:14px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;
}

.lciit-btn:hover{
    opacity:.9;
}

.course-buttons{
    display:flex;
    gap:12px;
}

.details-btn{
    flex:1;
}

.whatsapp-btn{
    flex:1;

    background:
    linear-gradient(
    135deg,
    #22c55e,
    #16a34a
    ) !important;
}

/* HERO */

.lciit-hero{
    text-align:center;
    padding:60px 30px;
    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );

    color:#fff;

    margin-bottom:40px;
}

.lciit-hero h1{
    margin:0;
    font-size:42px;
}

.lciit-hero p{
    margin:15px 0 25px;
}

#lciit-course-search{
    width:100%;
    max-width:500px;

    padding:16px;

    border:none;

    border-radius:50px;
}

/* FILTERS */

.lciit-filter-wrap{
    display:flex;
    gap:10px;
    flex-wrap:wrap;

    margin-bottom:35px;
}

.lciit-filter-btn{
    border:none;

    padding:10px 18px;

    border-radius:50px;

    cursor:pointer;

    background:#f1f5f9;
}

.lciit-filter-btn.active{
    background:#2563eb;
    color:#fff;
}

/* CATEGORY */

.course-category{
    display:inline-block;

    background:#eef2ff;

    color:#4338ca;

    padding:8px 12px;

    border-radius:50px;

    margin-bottom:15px;

    font-size:13px;

    font-weight:600;
}

.apply-btn{
    flex:1;
    background:
    linear-gradient(
    135deg,
    #f97316,
    #ea580c
    ) !important;
}

#lciit-apply-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:99999;
}

.lciit-modal-content{
    width:90%;
    max-width:500px;
    background:#fff;
    margin:80px auto;
    padding:30px;
    border-radius:20px;
    position:relative;
}

#lciit-close-modal{
    position:absolute;
    right:20px;
    top:10px;
    font-size:30px;
    cursor:pointer;
}

.lciit-modal-content form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.lciit-modal-content input{
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
}

.lciit-modal-content button{
    padding:14px;
    border:none;
    background:#2563eb;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
}