/* assets/css/style.css */

/* Global Settings */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: clip;
}

/* Colors */
.text-primary-blue {
    color: #004d99 !important;
}

.text-success-green {
    color: #28a745 !important;
}

.bg-primary-blue {
    background-color: #004d99 !important;
}

.bg-success-green {
    background-color: #28a745 !important;
}

.btn-teal {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    border: 1px solid;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 400;
    border-radius: 56px;
}

.btn-teal:hover {
    background: linear-gradient(90deg, #175a72 0%, #1c947c 100%);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    font-size: 0.85rem;
}

.top-bar-phone {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.top-bar-link {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 15px !important;
    line-height: 100%;
    letter-spacing: 0%;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.top-bar-link:hover {
    opacity: 0.75;
}

/* Language Toggle */
.bg-lang-active {
    background-color: #50B748 !important;
}

.text-lang-inactive {
    color: #9C9C9C !important;
}

.top-bar .search-box input {
    background-color: white;
    border: none;
    width: 180px;
    font-size: 0.85rem;
    padding: 3px 6px;
}

.top-bar .search-box input::placeholder {
    color: #9C9C9C;
    opacity: 1;
    font-size: 13px;
    font-weight: 300;
}

.top-bar .search-box input:focus {
    box-shadow: none;
    outline: none;
}

/* Navbar */
.nav-menu-link {
    color: #666666 !important;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
}

.navbar-brand h5 {
    line-height: 1.1;
}

.nav-link {
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #004d99 !important;
}

/* Hero Section */
.hero-banner {
    position: relative;
}

@media (min-width: 992px) {
    .hero-banner .carousel-item img {
        height: calc(100vh - 145px) !important;
        object-fit: cover !important;
        object-position: center !important;
        width: 100%;
    }
}

.carousel-indicators-custom {
    left: 0;
    bottom: 0;
    margin: 0;
}

.carousel-indicators-custom [data-bs-target] {
    background-color: #fff;
    opacity: 0.8;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
}

.carousel-indicators-custom .active {
    background-color: #28a745 !important;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.hero-title {
    font-weight: 600;
    font-size: 64px;
    line-height: 70.6px;
    letter-spacing: 2%;
}

.hero-title .hero-text-blue {
    color: #0D60B2;
}

.hero-title .hero-text-green {
    color: #358731;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Floating Menu */
.floating-menu {
    z-index: 10;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    gap: 20px;
}

.floating-item {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 12px;
    border-radius: 50px !important;
    width: 48px;
    height: 48px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    /* Keeps icon anchored to the right */
}

.floating-item:hover {
    background: linear-gradient(98.31deg, #131e5e -25.26%, #1c9e71 116.37%);
    /* Slightly darker gradient on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 200px;
    /* Expand to show text */
}

.floating-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    margin-right: 12px;
    /* Space between text and icon (now on right) */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-item:hover .floating-text {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.1s;
}

.floating-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Hero Section Utilities */
.hero-subtitle {
    color: #3E4043;
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
}

.hero-btn {
    font-size: 1.1rem;
    border: 1px solid #e0e0e0;
}

/* Marquee Bar */
.attention-bar {
    z-index: 20;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 36px;
    display: flex;
    align-items: center;
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    box-shadow: 0px -1px 13px 0px #0000001F;
}

.marquee-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--bs-font-sans-serif);
    display: inline-block;
    padding: 12px 10px;
}

.marquee-link.text-warning {
    color: #ffc107 !important;
}

.marquee-link:hover {
    color: #ffc107 !important;
    /* Bright yellow matches theme highlight and contrasts perfectly with gradient */
    text-decoration: underline !important;
}

/* Who We Are Section */
.who-we-are-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #0D60B2;
}

.who-we-are-title {
    font-weight: 600;
    font-size: 48px;
    letter-spacing: -1px;
}

.who-we-are-title .empowering-text {
    color: #358731;
}

.who-we-are-title .rural-text {
    color: #3E4043;
}

.who-we-are-desc {
    color: #717171;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
}

.stat-label {
    color: #3E4043;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0%;
}

.stat-number {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 44.19%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dot-shape-bg {
    top: -40px;
    left: -40px;
    width: 140px;
    opacity: 0.8;
}

/* Services Section */
.services-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.services-title {
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
}

.services-desc {
    font-weight: 300;
    font-size: 17px;
    max-width: 370px;
}

.services-btn {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    border: none;
}

.services-section {
    position: relative;
    overflow: hidden;
}

.services-bg-image {
    background-size: cover;
    background-position: center;
}

.services-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.services-glass-container {
    background: #FFFFFF2B;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 24px;
    backdrop-filter: blur(11px)
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card-title {
    color: #343A46;
    font-weight: 600;
    font-size: 19px;
}

.service-card-desc {
    color: #565656;
    font-weight: 400;
    font-size: 12px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2980 0%, #26D095 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.center-flower-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2980 0%, #26D095 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.center-flower-icon img {
    width: 45px;
    height: 45px;
}

.section-image-cover {
    object-fit: cover;
}

.attention-bar marquee {
    font-size: 0.95rem;
}

/* Loans Section */
.loans-section {
    background-color: #F6F6F6;
}

.loans-label {
    color: #0D60B2;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.loans-title {
    font-weight: 500;
    font-size: 48px;
    color: #3E4043;
}

.why-choose-label {
    color: #0D60B2;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
}

.why-choose-title {
    font-weight: 500;
    font-size: 50px;
    color: #3E4043;
}

.feature-title {
    color: #3E4043;
    font-weight: 600;
    font-size: 19px;
}

.feature-desc {
    color: #717171;
    font-weight: 300;
    font-size: 14px;
}

.loans-subtitle {
    color: #717171;
    font-weight: 300;
    font-size: 17px;
    margin: 0 auto;
}

.loan-card {
    background: #ffffff;
    transition: all 0.3s ease;
    min-height: 250px;
    cursor: pointer;
}

/* Base text colors */
.loan-card .text-title {
    color: #343A46;
    font-weight: 600;
    font-size: 19px;
    transition: color 0.3s ease;
}

.loan-card .text-desc {
    color: #565656;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Base icon colors */
.loan-card .loan-icon-bg {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e6c86 0%, #24b295 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.loan-card .loan-icon-bg i {
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Hover State Overrides */
.loan-card:hover {
    background: linear-gradient(135deg, #1A2980 0%, #26D095 100%) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.loan-card:hover .text-title,
.loan-card:hover .text-desc {
    color: #ffffff !important;
}

.loan-card:hover .loan-icon-bg {
    background: #ffffff !important;
}

.loan-card:hover .loan-icon-bg i {
    color: #1DB08E !important;
}

.slider-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #50B748;
    color: #50B748;
    border: 1px solid #50B748;
}

.slider-btn:hover {
    background-color: #50B748 !important;
    color: white !important;
}

.view-all-btn {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1e6c86 0%, #24b295 100%);
    transition: all 0.3s ease;
}

.view-all-wrapper {
    transition: all 0.3s ease;
}

.view-all-wrapper:hover {
    color: #1DB08E !important;
}

.view-all-wrapper:hover .view-all-btn {
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 4px 15px rgba(29, 176, 142, 0.4);
}

/* FAQ Section */
.custom-accordion .accordion-item {
    border: 1px solid #e0e0e0 !important;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border-radius: 10px !important;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none !important;
    padding: 1.25rem;
    color: #3E4043;
    font-weight: 500;
    font-size: 18px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #3E4043;
    background-color: transparent;
}

.custom-accordion .accordion-button::after {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E") center/14px no-repeat, linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%) !important;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: block;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3E%3C/svg%3E") center/14px no-repeat, linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%) !important;
    transform: rotate(0) !important;
}

.custom-accordion .accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: #565656;
    font-size: 15px;
}

.read-more-btn {
    background: linear-gradient(135deg, #1e6c86 0%, #24b295 100%);
    color: white;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: white;
    box-shadow: 0 4px 15px rgba(29, 176, 142, 0.4);
    transform: translateY(-2px);
}

/* App Download Section */
.app-download-section {
    background: url('../icons/lines.svg') center/cover no-repeat, linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    box-shadow: 0px 4px 12px 0px #00000014;
    padding-top: 80px;
    padding-bottom: 200px;
    margin-top: 100px;
    margin-bottom: -100px;
}

.app-download-img {
    max-height: 600px;
    z-index: 2;
    margin-top: -350px;
    margin-bottom: -250px;
}

.app-download-title {
    font-size: 42px;
    font-weight: 500;
}

.app-download-desc {
    font-size: 16px;
    opacity: 0.9;
    max-width: 450px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .app-download-content {
        padding-left: 5rem;
    }
}

/* Header Gradient Button */
.btn-gradient-header {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    font-weight: 300;
    color: #FFFFFF;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.btn-gradient-header:hover {
    opacity: 0.9;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 176, 142, 0.3);
}

/* Hero Section Button */
.hero-btn {
    background: #FFFFFF !important;
    color: #1768B7 !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 11px 21px;
}

.app-download-subtitle {
    font-size: 15px;
    font-weight: 500;
}

/* Typography Utilities */
.fs-07 {
    font-size: 0.7em;
}

.fs-075rem {
    font-size: 0.75rem;
}

.fs-15 {
    font-size: 15px;
}

.fs-17 {
    font-size: 17px;
}

/* Theme Colors */
.text-theme-green {
    color: #358731 !important;
}

.text-theme-blue {
    color: #0D60B2 !important;
}

.text-theme-dark {
    color: #3E4043 !important;
}

.text-theme-gray {
    color: #717171 !important;
}

.bg-theme-dark-blue {
    background-color: #1A2980 !important;
}

/* Icons & Images */
.icon-12 {
    width: 12px;
    height: 12px;
}

.icon-16 {
    width: 16px;
    height: 16px;
}

.icon-green-24 {
    color: #50B748 !important;
    font-size: 24px;
}

.icon-blue-24 {
    color: #0D60B2 !important;
    font-size: 24px;
}

.lang-badge {
    width: 22px;
    height: 22px;
}

.object-fit-contain {
    object-fit: contain;
}

.object-fit-cover {
    object-fit: cover;
}

/* Layout & Spacing */
.p-2px {
    padding: 2px;
}

.z-n2 {
    z-index: -2 !important;
}

/* Footer Custom Styles */
.footer-custom {
    z-index: 10;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-text {
    color: #717171;
    font-size: 15px;
}

.srv-link {
    transition: color 0.3s ease;
}

.srv-link:hover {
    color: #50B748 !important;
}

.social-icon {
    color: #0D60B2;
    font-size: 18px;
}

.footer-contact-text {
    color: #717171;
    font-size: 15px;
}

.footer-heading {
    color: #0D60B2;
    font-size: 16px;
    font-weight: 600;
}

.footer-link {
    color: #717171;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0D60B2 !important;
}

.footer-disclaimer {
    color: #717171;
    font-size: 15px;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.8;
}

/* FAQ Custom Styles */
.faq-label-text {
    color: #358731;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.faq-title-text {
    color: #3E4043;
    font-size: 48px;
    font-weight: 500;
}

.faq-desc-text {
    color: #717171;
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
}

/* Specific Component Backgrounds */
.services-bg-image-3 {
    background-image: url('../banners/section3.webp');
}

/* Navbar Hover & Mega Menu */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu:not(.mega-menu) {
        display: block;
        margin-top: 0;
    }

    .mega-menu {
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        top: 100% !important;
        margin-top: 20px !important;
        transform: translateX(-50%) !important;
        width: 780px;
        max-width: 95vw;

        /* Smooth Fade Animation */
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .mega-menu-right {
        left: auto !important;
        right: 0 !important;
        transform: none !important;
    }

    /* Invisible bridge to prevent hover loss between nav item and mega menu */
    .navbar .nav-item.dropdown::after,
    .top-bar .hover-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 30px;
        background: transparent;
    }

    .navbar .container,
    .top-bar .container {
        position: relative;
    }

    .navbar .nav-item.dropdown,
    .top-bar .hover-dropdown {
        position: relative;
    }

    .navbar .dropdown:hover .mega-menu,
    .hover-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
    }
}

.mega-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 24px;
    background-color: #fff;
    z-index: 1050;
}

.mega-menu-title {
    color: #0D60B2;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mega-menu-card {
    background-color: #ffffff;
    border: 1px solid #F2F2F2;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.mega-menu-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #50B748;
    transform: translateY(-2px);
}

.mega-menu-icon {
    color: #50B748;
    font-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

/* Why Choose Us Section */
.why-choose-img {
    height: 460px;
    object-fit: cover;
}

/* Nav Dropdown Arrows Hover Effect */
.dropdown:hover>a>.fa-chevron-down,
.nav-item.dropdown:hover>a>img[src*='down.svg'] {
    transform: rotate(180deg);
}

.dropdown>a>.fa-chevron-down,
.nav-item.dropdown>a>img[src*='down.svg'] {
    transition: transform 0.3s ease;
}


/* About Us Page */
.inner-banner {
    background-image: url('../banners/innerbanner.jpg');
    background-size: cover;
    background-position: center;
    /* padding: 80px 0 60px; */
    position: relative;
    padding: 50px 0 50px;
}

.banner-line {
    display: inline-block;
    width: 60px;
    height: 1.5px;
    background-color: #0D60B2;
}

.banner-title {
    font-size: 45px;
}

.breadcrumb-container {
    font-weight: 500;
}

.text-justify {
    text-align: justify;
}

.stats-border::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: #E5E5E5;
}

.vision-card {
    border-left: 6px solid #0D60B2;
}

.mission-card {
    border-left: 6px solid #50B748;
}

.vision-mission-bg {
    top: 40px;
    bottom: 40px;
}

.bg-theme-blue {
    background-color: #0D60B2;
}

.bg-theme-green {
    background-color: #50B748;
}

.quote-icon {
    font-size: 80px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(80, 183, 72, 0.4);
    right: 30px;
    bottom: -20px;
}

.stats-gradient-text {
    background: linear-gradient(90deg, #108588 0%, #29C676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 3.5rem;
}

.about-primary-img {
    max-width: 100%;
    width: 480px;
}

.breadcrumb-home {
    color: #9C9C9C;
    font-size: 14px;
}

.breadcrumb-separator {
    font-size: 14px;
}

.breadcrumb-active {
    color: #50B748;
    font-size: 15px;
}



.stats-label {
    color: #717171;
    font-size: 20px;
    font-weight: 400;
}

.vm-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 0px 18px 0px #0000001F;
    position: relative;
    overflow: hidden;
    padding: 30px;
    height: 100%;
}

.vm-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(167.33deg, #1A2980 -19.89%, #26D095 96.55%);
}

.vm-title {
    font-size: 20px;
    font-weight: 500;
    color: #3E4043;
}

.vm-desc {
    font-size: 16px;
    color: #8D8D8D;
    line-height: 1.8;
}

.vm-bg-gradient {
    height: 50%;
    bottom: 0;
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    box-shadow: 0px 4px 12px 0px #00000014;
}

.chairman-desc {
    color: #717171;
    font-size: 20px;
}

.chairman-name {
    color: #0D60B2;
    font-size: 18px;
    font-weight: 600;
}

.chairman-title {
    color: #8D8D8D;
    font-size: 14px;
}



.chairman-text-wrapper {
    /* max-width: 540px; */
}

.chairman-img-exact {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.vision-mission-section {
    z-index: 1;
}

.chairman-img-wrapper {
    width: 55vw;
}

.quote-icon {
    width: 70px;
    right: 0px;
    bottom: -15px;
}

.mega-menu-text {
    color: #5A5A5A;
    font-size: 13px;
    font-weight: 400;
}

/* Savings Account Page */


.radius-24 {
    border-radius: 24px !important;
}



.btn-savings-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: 56px !important;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent !important;
    line-height: 1.2;
}



.btn-savings-secondary {
    position: relative;
    background: transparent !important;
    border: 1px solid transparent !important;
    z-index: 1;
}

.btn-savings-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
    border-radius: inherit;
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
}

.btn-savings-secondary::after {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    z-index: -1;
    border-radius: inherit;
    background: #FFFFFF;
    transition: background-color 0.3s ease;
}

.btn-savings-secondary-text {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    display: inline-block;
}

.btn-savings-secondary:hover::after {
    background: rgba(255, 255, 255, 0.9);
}

.btn-savings-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 41, 128, 0.15);
}

.interest-rate-card {
    top: 40px;
    left: -120px;
    padding: 20px 30px !important;
    border-radius: 12px;
}

.interest-rate-value {
    color: #3E4043;
    font-size: 28px;
}

.interest-rate-label {
    font-size: 13px;
    color: #8D8D8D !important;
}

/* Features & Benefits Section */
.features-section-title {
    font-size: 48px;
    font-weight: 500;
    color: #3E4043;
}

.features-section-title span {
    color: #50B748;
}

.features-section-desc {
    font-size: 16px;
    color: #717171;
}

.bg-features {
    background-color: #F8FAFC;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card .icon-wrapper i {
    color: #FFFFFF;
    font-size: 24px;
    transition: all 0.4s ease;
}

.feature-card .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.feature-card .feature-desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

/* Hover State */
.feature-card:hover {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(38, 208, 149, 0.2);
}

.feature-card:hover .icon-wrapper {
    background: #FFFFFF;
}

.feature-card:hover .icon-wrapper i {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:hover .feature-title {
    color: #FFFFFF;
}

.feature-card:hover .feature-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Eligibility Tabs Section */
.eligibility-section-title {
    font-size: 40px;
    font-weight: 500;
    color: #3E4043;
}

.eligibility-section-title span {
    color: #50B748;
}

.eligibility-tab-btn {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    border-radius: 8px;
    border: none;
    background: #F3F4F6;
    color: #717171;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eligibility-tab-btn.active {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(38, 208, 149, 0.2);
}

.eligibility-tab-btn i {
    display: none;
}

.eligibility-tab-btn.active i {
    display: block;
}

.eligibility-content-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 40px;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    color: #5A5A5A;
    font-size: 16px;
    line-height: 1.6;
}

.eligibility-list li:last-child {
    margin-bottom: 0;
}

.eligibility-list li i {
    color: #50B748;
    margin-top: 5px;
    margin-right: 15px;
    font-size: 16px;
}

.eligibility-list-title {
    font-weight: 500;
    color: #3E4043;
}

.eligibility-heading {
    font-size: 28px !important;
}

@media (max-width: 991px) {
    .interest-rate-card {
        left: 20px;
        top: -30px;
        padding: 15px 20px !important;
    }

}

/* Savings & Housing Loan Specific Classes */
.savings-dot-shape {
    margin-bottom: -40px;
    margin-left: 20px;
}

.open-account-section {
    background: url('../icons/lines.svg') center/cover no-repeat, linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
}

.savings-hero-btn {
    padding: 12px 32px !important;
    min-width: 180px;
}



.branch-card-wrapper {
    background-color: rgba(255, 255, 255, 0.25);
}

.branch-card-title {
    font-size: 28px;
}

.branch-card-desc {
    font-size: 16px;
}



/* Housing Loan Swiper Section */
.why-choose-housing {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    overflow: hidden;
}



.btn-slider-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-slider-nav:hover {
    background-color: white;
    color: #1e6c86;
}

.btn-slider-nav.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.housing-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.housing-feature-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.housing-feature-card h4 {
    font-size: 18px;
}

.housing-feature-card p {
    font-size: 14px;
    line-height: 1.5;
}

.housingSwiper,
.npsSwiper,
.mobileSwiper {
    overflow: visible !important;
    clip-path: inset(-50vh -50vw -50vh 0);
}

/* Unified Shared Typography Classes */
.text-heading-lg {
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.2;
}

.text-heading-md {
    font-size: clamp(28px, 4vw, 45px);
    line-height: 1.2;
}

.text-desc-lg {
    font-size: 16px;
    line-height: 1.6;
    color: #717171;
    font-weight: 300;
}

/* Utility Classes */
.grid-stack {
    display: grid;
}

.grid-stack-item {
    grid-area: 1 / 1;
}

/* CTA Loan Banner */
.cta-loan-banner {
    background-image: url('../banners/loanbg.jpg');
    background-size: cover;
    background-position: center center;
    border-radius: 12px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-loan-title {
    font-size: 38px;
}

.cta-loan-desc {
    font-size: 15px;
    line-height: 1.6;
    max-width: 530px;
}

.btn-white-green {
    background: #FFFFFF;
    color: #50B748;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 14px !important;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;


}

.btn-white-green:hover {
    background: #F8F9FA;
    color: #40943A;
}

.btn-green-solid {
    background: #50B748;
    color: #FFFFFF;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px !important;
    padding: 12px 21px;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-green-solid:hover {
    background: #40943A;
    color: #FFFFFF;
}

/* NPS Section Classes */
.nps-icon-sm {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.nps-icon-md {
    width: 48px;
    height: 48px;
    font-size: 20px;
}

.nps-icon-lg {
    width: 64px;
    height: 64px;
    font-size: 28px;
}

.bg-light-blue {
    background-color: #EBF4FF;
}

.bg-light-purple {
    background-color: #F3E8FF;
}

.text-purple {
    color: #9333EA;
}

.bg-light-green {
    background-color: #DCFCE7;
}

.border-light {
    border-color: #F3F4F6 !important;
    opacity: 1;
}

.fs-14 {
    font-size: 14px;
}

.fs-28 {
    font-size: 28px;
}

.bg-theme-light-blue {
    background-color: #F0F7FF;
}

.bg-custom-blue {
    background-color: #BEDFFF;
}

/* Custom Accordion Styles for NPS */
.nps-accordion {
    --bs-accordion-btn-icon: url('../icons/downone.svg');
    --bs-accordion-btn-active-icon: url('../icons/up.svg');
}

.nps-accordion .accordion-button::after {
    content: "";
    display: block;
    width: 32px !important;
    height: 32px !important;
    background-color: #DDEEFF !important;
    border-radius: 50% !important;
    background-image: var(--bs-accordion-btn-icon) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 14px !important;
    transition: all 0.2s ease !important;
}

.nps-accordion .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon) !important;
    transform: none !important;
}

.nps-accordion .accordion-button:focus {
    box-shadow: none;
}

.nps-accordion .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: #fff;
    box-shadow: none;
}

.text-custom-dark-blue {
    color: #0D60B2;
}

.bg-badge-blue {
    background-color: #F3F9FF;
}

.bg-light-gray-section {
    background-color: #f7f8fa;
}

.bg-mobile-gradient {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
}

/* WhatsApp Banking Styles */
.whatsapp-hero {
    background-image: url('../images/whatmobbg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 500px;
}

.wa-virtual-icon {
    width: 40px;
    height: 40px;
    background: #FFFFFF30;
}

.wa-virtual-icon i {
    color: #ffffff;
    font-size: 14px;
}

.wa-virtual-text {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
}

.wa-hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: normal;
}

.wa-hero-desc {
    font-weight: 300;
    color: #ffffff;
}

.btn-wa-chat {
    background-color: #fff !important;
    color: #128C7E !important;
    font-size: 15px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    border: none;
}

.btn-wa-chat:hover {
    color: #128C7E !important;
    background-color: #f8f9fa !important;
}

.wa-chat-icon-bg {
    width: 28px;
    height: 28px;
    background-color: #18987a;
}

.wa-chat-icon-bg i {
    font-size: 16px;
}

.wa-dot-shape {
    top: -30px;
    left: -10%;
    width: 140px;
    z-index: 0;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.wa-bg-icon {
    bottom: 20px;
    left: -100px;
    width: 140px;
    z-index: 0;
}

.wa-phone-img {
    max-height: 520px;
    object-fit: contain;
    margin-bottom: -5px;
}

.wa-feature-icon-bg {
    width: 45px;
    height: 45px;
    background-color: #18987a;
}

.wa-feature-icon-bg i {
    font-size: 18px;
}

.wa-feature-text {
    color: #18987a;
    font-size: 1.1rem;
}

/* Available Services Section */
.available-services {
    background-color: #F3F8F1;
}

.services-section-title {
    font-size: 2.5rem;
}

.services-section-desc {
    color: #717171;
    font-size: 16px;
    font-weight: 400;
}

.services-highlight {
    color: #18987a;
}

.service-card {
    background-color: #FFFFFF;
    border: 1px solid transparent;
    /* cursor: pointer; */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #FCF5EB;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 24px;
    color: #128C7E;
    transition: all 0.3s ease;
}

.service-title {
    color: #212529;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.service-desc {
    color: #6c757d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Hover State */
.service-card:hover {
    background-color: #128C7E;
    box-shadow: 0px 0px 24px 0px #0000001F;
}

.service-card:hover .service-icon-wrapper {
    background-color: #FFFFFF;
}

.service-card:hover .service-icon {
    color: #128C7E;
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
    color: #FFFFFF;
}

/* How it Works Section */
.wa-step-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: #FCF5EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

.wa-step-icon {
    font-size: 32px;
    color: #128C7E;
}

.wa-step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #128C7E;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    z-index: 3;
}

.wa-step-arrow {
    position: absolute;
    top: 45px;
    left: calc(50% + 55px);
    right: calc(-50% + 55px);
    border-top: 1.5px dashed #444;
    z-index: 1;
}

.wa-step-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -5px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #444;
}

/* Security Notice Section */
.security-notice-section {
    background-color: #128C7E;
    margin-top: 120px;
    border-top: 1px solid transparent;
    /* Prevents margin collapse */
    padding-bottom: 110px;
    margin-bottom: -30px;
}

.security-card-wrapper {
    margin-top: -120px;
}

.security-notice-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.security-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #D80707;
    /* Vibrant Red */
}

.security-icon {
    font-size: 20px;
    color: #FFFFFF;
}

.security-title {
    font-size: 1.25rem;
    color: #333;
}

.security-desc {
    color: #717171;
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Us Support Section */
.contact-gradient-band {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    height: 130px;
    width: 100%;
}

.contact-support-cards {
    margin-top: -100px;
    /* Pulls cards up over the gradient band */
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.support-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 12px 0px #00000014;
    padding: 20px;
    transition: transform 0.3s ease;
}

.support-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #0D60B230;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.support-title {
    color: #0D60B2;
    font-size: 16px;
    /* Exactly 16px to match screenshot */
    font-weight: 500;
    margin-bottom: 16px;
}

.support-list {
    color: #717171;
    font-size: 13px;
    /* Slightly smaller text */
}

.support-list-item {
    display: flex;
    align-items: center;
}

.support-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #50B748;
    border-radius: 50%;
    margin-right: 6px;
    /* Closer to text */
    flex-shrink: 0;
}

/* Our Offices Section */
.our-offices-section {
    background-color: #FFFFFF;
    padding-bottom: 20px;
}

.section-title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 600;
}

.text-theme-green {
    color: #358731 !important;
}

.text-theme-blue {
    color: #0D60B2 !important;
}

.section-subtitle {
    color: #717171;
    font-size: 16px;
}

.offices-gradient-bg {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    padding-bottom: 120px;
    /* Extra padding to account for footer overlap */
    margin-top: 150px;
    /* Space for the overlapping head office card */
    margin-bottom: -40px;
    /* Pulls the footer up over the gradient */
    border-top: 1px solid transparent;
    /* Prevents margin collapse */
    position: relative;
}

.offices-container {
    position: relative;
    z-index: 2;
}

.head-office-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0px 4px 12px 0px #00000014;
    margin-top: -150px;
    /* Overlaps exactly over the margin space */
    margin-bottom: 40px;
    overflow: hidden;
    /* For map rounded corners */
}

.head-office-title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 500;
}

.office-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

.head-office-icon-wrapper {
    width: 30px;
    height: 30px;
    background-color: #0D60B230;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 4px;
}

.head-office-icon-wrapper i {
    color: #0D60B2;
    font-size: 12px;
}

.regional-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 12px 0px #00000014;
    padding: 24px;
}

.regional-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.regional-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #717171;
    font-size: 13px;
    line-height: 1.5;
}

.regional-contact-icon {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* Hover Dropdown */
@media (min-width: 992px) {
    .hover-dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Board of Directors Section */
.directors-section {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.section-title-directors {
    color: #333;
    font-size: 2.2rem;
    font-weight: 600;
}

.section-title-directors .highlight {
    color: #50B748;
}

.section-subtitle-directors {
    color: #717171;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 60px;
}

.director-card-wrapper {
    position: relative;
    padding-top: 20px;
}

.director-img-frame {
    width: 65%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Photo is ON TOP */
    display: block;
    border-radius: 24px;
}

.director-info-card {
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    border-radius: 24px;
    padding: 60px 15px 25px;
    /* Large top padding to clear the overlapping photo */
    position: relative;
    z-index: 1;
    /* White card is BEHIND */
    margin-top: -40px;
    /* Slides the white card up behind the photo */
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.director-name {
    color: #3E4043;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.director-title {
    color: #717171;
    font-size: 15px;
    margin-bottom: 12px;
}

.director-org {
    color: #50B748;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.3;
}

.section-title-directors {
    font-size: 2.8125rem;
    /* 45px */
}

.section-subtitle-directors {
    font-size: 1rem;
    /* 16px */
}

/* Supervisory Authority Chart */
.auth-table-wrapper {
    border-radius: 10px;
    border: 1px solid #CBCBCB;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.auth-table {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
    min-width: 600px;
}

.auth-table thead {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
}

.auth-table th {
    color: #ffffff;
    font-weight: 500;
    padding: 16px;
    text-align: center;
    border-bottom: none;
    background-color: transparent;
}

.auth-table th.col-si {
    width: 5%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-table th.col-position {
    width: 42%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-table th.col-auth {
    width: 50%;
}

.auth-table td {
    padding: 16px;
    color: #717171;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    vertical-align: middle;
}

.auth-table tbody tr {
    border-bottom: 1px solid #CBCBCB;
}


.auth-table td.border-right {
    border-right: 1px solid #CBCBCB;
}

/* Notices Page Styles */
.notices-table tbody tr {
    transition: all 0.3s ease;
}

.notices-table tbody tr:hover {
    background-color: #f8f9fa;
    box-shadow: inset 4px 0 0 #0b2c3d;
}

.notice-action-btn {
    transition: all 0.3s ease;
    border-color: #e0e4e7;
    color: #495057;
}

.notice-action-btn:hover {
    background-color: #f1f4f6;
    border-color: #d3d9de;
    color: #0b2c3d;
    transform: translateY(-2px);
}

.pagination-item-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional Theme Utilities */
.border-theme-green {
    border-color: #50B748 !important;
}

.bg-theme-green-10 {
    background-color: rgba(80, 183, 72, 0.1) !important;
}

.bg-theme-red-10 {
    background-color: rgba(220, 53, 69, 0.1) !important;
}


.rti-badge {
    min-width: 90px;
    text-align: center;
}

/* Stat Cards */
.stat-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.2s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: #50B748;
    box-shadow: 0 10px 20px rgba(80, 183, 72, 0.05);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* List Groups */
.rti-list-group .list-group-item {
    border: 1px solid #eef0f2;
    margin-bottom: 10px;
    border-radius: 12px !important;
    padding: 1.25rem;
    transition: all 0.2s;
}

.rti-list-group .list-group-item:hover {
    border-color: #50B748;
    background-color: #f8fff9;
}

/* Utility Classes for RTI */
.icon-50 {
    width: 50px;
    height: 50px;
}

.step-watermark {
    font-size: 100px;
    font-weight: 800;
    top: -20px;
    right: 10px;
    opacity: 0.5;
    z-index: 0;
}

.bg-gradient-light-green {
    background: linear-gradient(145deg, #f8fff9, #fff);
}

/* Accessibility Menu Styles */
.accessibility-dropdown .dropdown-menu {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.accessibility-btn {
    border: 1px solid #eef0f2;
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.accessibility-btn:hover {
    background-color: #f8f9fa;
    border-color: #004d99;
}

.accessibility-btn.active {
    background-color: #f0f7ff;
    border-color: #004d99;
    box-shadow: inset 0 0 0 1px #004d99;
}

/* Contrast */
body.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

body.high-contrast * {
    color: #fff !important;
    border-color: #fff !important;
}

body.high-contrast section,
body.high-contrast div.card,
body.high-contrast header,
body.high-contrast footer,
body.high-contrast nav,
body.high-contrast .dropdown-menu,
body.high-contrast [class*="bg-"],
body.high-contrast .accordion-item,
body.high-contrast .accordion-button,
body.high-contrast .modal-content,
body.high-contrast .list-group-item,
body.high-contrast .offcanvas,
body.high-contrast .mega-menu-card,
body.high-contrast .feature-card,
body.high-contrast .eligibility-content-card,
body.high-contrast .housing-feature-card,
body.high-contrast .inner-banner,
body.high-contrast .eligibility-tab-btn {
    background-color: #000 !important;
}

body.high-contrast .inner-banner {
    background-image: none !important;
}

body.high-contrast img:not(.header-logo),
body.high-contrast video,
body.high-contrast svg {
    filter: grayscale(100%) contrast(120%);
}

body.high-contrast .accessibility-btn {
    background-color: #111 !important;
}

body.high-contrast .accessibility-btn.active {
    background-color: #333 !important;
    border-color: #50B748 !important;
    box-shadow: inset 0 0 0 2px #50B748 !important;
}

body.high-contrast .accessibility-btn i,
body.high-contrast .accessibility-btn span,
body.high-contrast .accessibility-dropdown h6 {
    color: #fff !important;
}

body.high-contrast .btn-close {
    filter: invert(1) !important;
}

/* Highlight Links */
body.highlight-links a,
body.highlight-links button {
    outline: 2px solid #ffeb3b !important;
    outline-offset: 2px !important;
    text-decoration: underline !important;
}

/* Text Size */
html.text-large {
    font-size: 110% !important;
}

html.text-xlarge {
    font-size: 120% !important;
}

/* Line Height */
body.lh-large {
    line-height: 1.8 !important;
}

body.lh-xlarge {
    line-height: 2.2 !important;
}

/* Hide Images */
body.hide-images img:not([src*='icons/']):not([src*='logos/']):not(.header-logo),
body.hide-images video {
    visibility: hidden !important;
}

body.hide-images .inner-banner {
    background-image: none !important;
}

body.hide-images .floating-item {
    background-color: #0D60B2 !important;
}

body.hide-images .carousel-indicators-custom button {
    background-color: #0D60B2 !important;
}

/* Pause Animations */
body.pause-animations *,
body.pause-animations *::before,
body.pause-animations *::after {
    animation-play-state: paused !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

/* Branch Locator Styles */
.btn-search-branch {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.map-container {
    min-height: 350px;
}

.map-iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Custom Dropdown Styling */
.custom-dropdown-item {
    color: #495057;
    transition: all 0.2s ease;
}

.custom-dropdown-item:hover,
.custom-dropdown-item:focus {
    background-color: #f8f9fa;
    color: #00a651;
    padding-left: 1.25rem !important;
}

.custom-dropdown-item.active {
    background-color: #e6f6ee;
    color: #00a651;
    font-weight: 600;
}

@media (min-width: 1366px) {
    .cmpad {
        max-width: 1526.4px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1366px) {
    .cmpad {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 991px) {
    .cmpad {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .cmpad {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Fix for Bootstrap Navbar with custom cmpad class */
.navbar>.cmpad {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Footer Sticky QR */
.footer-sticky-qr {
    position: absolute;
    right: 2%;
    bottom: 160px;
    /* Shifted a little top */
    z-index: 50;
    transition: all 0.3s ease;
}

.footer-sticky-qr img {
    max-height: 65px;
    transition: transform 0.2s;
}

.footer-sticky-qr:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .footer-sticky-qr {
        bottom: 120px;
    }

    .footer-sticky-qr img {
        max-height: 55px;
    }
}

@media (max-width: 767px) {
    .footer-sticky-qr {
        right: 15px;
        bottom: 80px;
        /* Keeps it clear of stacked mobile columns */
    }

    .footer-sticky-qr img {
        max-height: 45px;
    }
}

/* Mobile Quick Action Cards */
.quick-action-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fc);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    height: 100%;
}

.quick-action-card:active {
    transform: scale(0.96);
}

.quick-action-card .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.quick-action-card .icon-circle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.quick-action-card .action-name {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.quick-action-primary {
    background: linear-gradient(98.31deg, #1A2980 -25.26%, #26D095 116.37%);
    border: none;
    box-shadow: 0 6px 16px rgba(38, 208, 149, 0.2);
}

.quick-action-primary .icon-circle {
    background: rgba(255, 255, 255, 0.2);
}

.quick-action-primary .action-name {
    color: #ffffff !important;
}

/* Mobile Navbar Menu Scrolling and Smooth Animation */
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: calc(100vh - 120px);
        /* Account for header height perfectly */
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        background: #ffffff;
        border-top: 1px solid #eee;
        padding-bottom: 2rem;

        /* Smooth fade and slide animation */
        display: block !important;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;

        /* Important: remove absolute positioning so it flows naturally in the sticky header */
        position: static;
        box-shadow: none;
    }

    .navbar-collapse.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-collapse.collapsing {
        height: auto !important;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        visibility: visible;
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Stop body scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

.quick-action-card .icon-circle img {
    filter: invert(18%) sepia(68%) saturate(2289%) hue-rotate(218deg) brightness(90%) contrast(100%);
}

.quick-action-primary .icon-circle img {
    filter: none;
}