        :root {
            --primary: 152 69% 31%;
            --secondary: #949996;
        }
a{
        text-decoration:none;
}
        .bg-white {
            background-color: #fff;
        }

         .bg-grey {
            background-color: #f8f9fa;
        }

        .bg-primary-custom {
            background-color: #198754;
                color:white;
        }

            .login-btn{
                    color:black;
                    border:1px solid black;
            }

        body {
            font-family: 'Inter', sans-serif;
        }
        .landing-navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }


        .nav-link {
            transition: color 0.2s ease;
        }

        .landing-navbar.is-transparent .nav-link {
            color: #ffffff;
        }

        .landing-navbar.is-scrolled .nav-link {
            color: #212529;
        }

        /* Primary button */
        .btn-primary-custom {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #ffffff;
        }

        .icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: #eaf6f1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.5rem;
    color: #0f9d75;
}


         .who-card {
        transition: transform 0.3s, background-color 0.3s;
    }
    .who-card:hover {
        background-color: #e6f7f1; 
        transform: translateY(-5px);
    }

        /* Mobile menu */
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #ffffff;
                border-radius: 0.75rem;
                padding: 1rem;
            }

            .navbar-collapse .nav-link {
                color: #212529 !important;
            }
        }
        
        .trust-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: #ffffff;
    border-radius: 12px;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
    background-color: #f3f4f6; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(16, 185, 129, 0.1); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 22px;
    color: #10b981;
}

.trust-content {
    flex: 1;
}

     .hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 900px; */
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(189, 192, 191, 0.15);
    color: #ffffff;
    border-radius: 999px;
    font-weight: bolder;
    font-size: 0.9rem;
}

.hero-badge i {
    font-size: 1rem;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-top: 1rem;
}

.hero-subtitle {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #10b981;
}

.hero-description {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-section {
    background-color: #198754;
    padding: 110px 0;
    color: #fff;
}

.why-aba-header p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
