html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/*loan program css


/* Bootstrap ke default arrow ko hatao */
.accordion-button::after {
    display: none !important;
}

/* Hamara custom arrow */
.accordion-button .arrow-icon {
    margin-left: auto; /* right side push */
    font-size: 14px;
    color: #333;
    transition: transform 0.3s ease;
}

/* Jab section open ho to arrow upar ki taraf */
.accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
}


/*resources css

/* Page background */
body {
    background: #F5F5F5;

}

/* Page heading */
.resources-title {
    font-family: Poppins, sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #241C4F;
    margin-bottom: 40px !important; /* force apply */
    text-transform: capitalize;
}

/* Resource list wrapper */
.resource-list {
    display: flex;
    flex-direction: column;
    gap: 16px; /* consistent spacing between rows */
}

/* Each resource box */
.resource-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 24px; /* spacing inside card */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Left side text (Resource Name) */
.resource-name {
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #241C4F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right side button */
.btn-fill {
    background: #241C4F;
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

    /* Hover effect */
    .btn-fill:hover {   
        background: #18123a;
        color: #FFF;
    }
@media (max-width: 576px) {
    .resource-list .resource-item {
        min-height: 80px !important;
        padding: 14px 18px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .resource-list .resource-name {
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        flex: 1 !important;
        margin-right: 12px !important;
        word-break: break-word !important;
    }

    .resource-list .btn-fill {
        font-size: 13px !important;
        padding: 8px 20px !important;
        white-space: nowrap !important;
        text-align: center !important;
        min-width: 90px !important;
    }
}
