.breadcrumb a {
    text-decoration: none;
    color: #007bff;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #444 !important;
}


.my-4 {
    margin-top: 8.5rem !important;
    margin-bottom: 1.5rem !important;
}


.btn-primary {
    background: #0066cc;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
}
.btn-outline-dark {
    border-radius: 30px;
    padding: 8px 20px;
}

/* SLIDER */
.carousel-item img {
    height: 480px;
    object-fit: cover;
}

/* LOAN CATEGORY BOXES */
/* Loan Section */
.loan-card {
    text-decoration: none;
    color: #111;
}

.loan-box {
    background: #ffffff;
    padding: 25px 10px;
    border-radius: 16px;
    transition: 0.35s ease;
    text-align: center;
}

.loan-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Bigger Icons */
.loan-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Heading */
.loan-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 5px;
}


/* BANKING PARTNERS SLIDER */
.partners-slider {
    overflow: hidden;
    position: relative;
}
.partners-track {
    display: flex;
    width: calc(200px * 14);
    animation: scroll 22s linear infinite;
}
.partners-track img {
    width: 180px;
    height: auto;
    margin: 0 25px;
    filter: grayscale(100%);
    transition: 0.3s;
}
.partners-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTION TITLES */
h2 {
    font-weight: 700;
}

/* FOOTER PREPARATION */
footer {
    background: #003c4d;
    color: white;
    padding: 40px 0;
}
