/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

/* Header Styles */
.site-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo-container {
    height: 60px;
    /* Adjust based on logo size */
}

.main-logo {
    max-height: 60px;
    width: auto;
}

.vertical-divider {
    width: 2px;
    height: 50px;
    background-color: #00B1E6;
    /* Light blue color from the image example */
}

.ministry-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.1;
}

.ministry-text-bold {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #002F5D;
    /* Dark blue color */
    line-height: 1.1;
}

/* Custom Hamburger Icon */
.navbar-toggler {
    padding: 0.5rem;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon-custom {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #333;
    position: relative;
    vertical-align: middle;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
}

.navbar-toggler-icon-custom::before {
    top: -8px;
}

.navbar-toggler-icon-custom::after {
    top: 8px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .main-logo {
        max-height: 45px;
    }

    .vertical-divider {
        height: 40px;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .ministry-text {
        font-size: 0.9rem;
    }

    .ministry-text-bold {
        font-size: 1rem;
    }
}

/* Banner Styles */
.banner-section {
    width: 100%;
}

.banner-img {
    height: auto;
    display: block;
    object-fit: cover;
}

/* Form Styles */
.step-content {
    display: none;
    animation: fadeIn 0.5s;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    top: 20px;
    right: -100%;
    /* Initially hidden off-screen */
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.5s ease-in-out;
    border-left: 4px solid #00B1E6;
    min-width: 250px;
}

/* Beneficiary List */
#beneficiary-list {
    height: 350px;
    /* Fixed height for the scroll window */
    overflow: hidden;
    /* Hide scrollbar */
    position: relative;
}

.beneficiary-item {
    transition: background-color 0.3s;
}

/* Footer Styles */
.site-footer {
    background-color: #002F5D;
    color: #fff;
    font-size: 0.9rem;
}

.site-footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #00B1E6;
}

.footer-logo {
    max-height: 50px;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #00B1E6;
}