
.navbar-nav .nav-link {
    font-size: 24px; !important;
    font-weight: 600;
}

{{-hero-blue--}}
.hero-blue {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
}

.page-hero {
    height: clamp(90px, 22vh, 120px); /* SMALL HERO */
    position: relative;
    overflow: hidden;
}

.page-hero-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.page-hero-overlay h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-hero-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-hero {
        height: 90px;
    }

    .page-hero-overlay h1 {
        font-size: 24px;
    }

    .page-hero-overlay p {
        font-size: 14px;
    }
}
{{-blog-}}
.blog-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.blog-image img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
    .blog-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.ad-banner span,
.sidebar-ad span,
.inline-ad span {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-placeholder {
    background: #f1f1f1;
    border: 1px dashed #ccc;
    padding: 40px 20px;
    font-size: 14px;
    color: #999;
}

.impact-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.impact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

.center-box {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #ffffff;
    padding: 35px;
    border-radius: 16px;
}
/* log in */

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
}

.login-wrapper {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

/* LEFT SIDE */
.login-form {
    padding: 50px;
}

.login-form h2 {
    color: #0d47a1;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #777;
    margin-bottom: 25px;
}

.login-group {
    margin-bottom: 18px;
}

.login-group input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.login-group input:focus {
    border-color: #1976d2;
    outline: none;
}

.remember-wrap {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease;
}

.btn-submit:hover {
    background: #0d47a1;
}

.forgot-link {
    margin-top: 15px;
    text-align: center;
}

.forgot-link a {
    font-size: 14px;
    color: #1976d2;
    text-decoration: none;
}

.forgot-link a:hover {
    text-decoration: underline;
}

/* RIGHT SIDE IMAGE */
.login-image {
    background: url('{{ asset("images/strong.png") }}') center center/cover no-repeat;
    position: relative;
}

.login-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: #fff;
}

.login-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.login-overlay p {
    font-size: 14px;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }

    .login-image {
        display: none;
    }
}

