.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    gap: 8px;
}

/* Improve navbar spacing */
.navbar {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* HERO SECTION */
.hero-section {
    background: url('/assets/images/home/hero.jpg') no-repeat center center/cover;
    background: url('/assets/images/home/hero.webp') no-repeat center center/cover;
    min-height: 550px;
    position: relative;
}

/* Dark overlay for readability */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Logo styling */
.hero-logo {
    height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 420px;
    }

    .hero-logo {
        height: 60px;
    }
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}


.approval-card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.approval-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


img {
    border-radius: 8px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 6px;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}