/* Yellow Text & Background Utilities */
.text-yellow-color {
    color: #ffca02;
}

.bg-yellow-color {
    background-color: #ffca02;
}

/* Blue Text & Background Utilities */
.text-blue-color {
    color: #112F53
}

.bg-blue-color {
    background-color: #112F53
}

/* Logo section */
.logo-bar {
    z-index: 2;
}

/* Custom Navbar overlapping both logo and hero */
.custom-navbar {
    top: 40px; /* Adjust based on logo height */
    z-index: 3;
    border-radius: 6px;
}

/* Hero Section */
.hero-section {
    background: url('../images/why-img-1.webp') no-repeat center center/cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 30px 20px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .custom-navbar {
        top: 50px;
    }
}
