/* ---------- GLOBAL ---------- */
body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #f8f9fa;
}

/* ---------- COURSE CARD ---------- */
.blog-entry {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-entry:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ---------- COURSE IMAGE ---------- */
.blog-entry .block-20 {
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* ---------- CARD CONTENT ---------- */
.blog-entry .text {
    padding: 20px;
}

.blog-entry h3.heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.blog-entry p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ---------- META INFO ---------- */
.blog-entry .meta {
    font-size: 12px;
    color: #999;
}

.blog-entry .meta a {
    color: #999;
    text-decoration: none;
}

.blog-entry .meta a:hover {
    color: #007bff;
}

/* ---------- DETAILS BUTTON ---------- */
.blog-entry button {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 12px;
    border-radius: 0 0 12px 12px;
}

.blog-entry button a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.blog-entry button:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);
}

/* ---------- HERO SECTION ---------- */
.hero-wrap h1 {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
}

.hero-wrap p {
    font-size: 18px;
    color: #f1f1f1;
}

/* ---------- NAVBAR ---------- */
.navbar {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
}

/* ---------- FOOTER ---------- */
.ftco-footer {
    background: #111;
}

.ftco-footer p,
.ftco-footer a {
    color: #bbb;
}

.ftco-footer a:hover {
    color: #fff;
}
