    /* ---------------- NAV TABS ---------------- */

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        background-color: #06aed4 !important;
        color: #fff !important;
        border-radius: 30px;
    }

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

    .nav-link.inactive-btn {
        color: #777 !important;
    }

    .nav-link.inactive-btn:hover {
        color: #06aed4 !important;
    }

    /* ---------------- SEARCH BAR ---------------- */

    .search-container {
        position: relative;
        max-width: 500px;
        width: 100%;
    }

    .search-input {
        width: 100%;
        padding: 14px 50px 14px 20px;
        border: none;
        border-radius: 50px;
        font-size: 15px;
        outline: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: 0.25s ease;
    }

    .search-input:focus {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-1px);
    }

    .search-btn {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        background: #06aed4;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s ease;
    }

    .search-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }

    /* ---------------- TYPOGRAPHY ---------------- */

    .help {
        font-family: 'Lato';
        font-weight: 700;
        font-size: 18px;
        text-align: justify;
    }

    .banner-title {
        color: white;
        font-family: 'Lato';
        font-weight: 700;
        font-size: 42px;
        line-height: 1.1;
        text-align: justify;
    }

    .banner-subtitle {
        font-family: 'Lato';
        font-weight: 700;
        font-size: 18px;
        color: #fff;
        text-align: justify;
    }

    /* ---------------- FEATURES GRID ---------------- */

    #features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        padding: 30px 15px;
        max-width: 1200px;
        margin: auto;
    }

    .feature {
    background: #fff;
    border-radius: 14px;
    padding: 22px 15px;
    text-align: center;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 140px;   /* KEY FIX */
}

    .feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    }

    .feature .icon {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
     width: 100%;
}

    .feature .icon img {
        max-width: 70px;
    }

    .feature .icon i {
        font-size: 42px;
        color: #06aed4;
    }

    .feature .name {
    width: 100%;              /* ✅ ADD THIS */
    }

   .feature .name p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    width: 100%; 
    text-align: center;
    word-break: break-word;
}

.feature a {
    display: flex;            /* ✅ IMPORTANT */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

    /* ---------------- CTA BANNER ---------------- */

    .banner-container {
        background: #009CBF;
        border-radius: 20px;
       margin-left: 150px;
        margin-right: 150px;
      
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }


    .banner-grid {
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
        background-size: 40px 40px;
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .banner-content {
        position: relative;
        z-index: 2;
    }

    .start-btn {
        background: white;
        color: #009CBF;
        padding: 12px 26px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s ease;
    }

    .start-btn:hover {
        transform: translateY(-2px);
    }

    .illustration-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .question-image {
        max-width: 100%;
        height: auto;
    }

    /* ---------------- RESPONSIVE ---------------- */

    @media (max-width: 992px) {
        .banner-title {
            font-size: 32px;
        }

        .banner-subtitle {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .banner-container {
            padding: 30px 20px;
            margin: 20px 10px;
        }

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

        .banner-subtitle {
            font-size: 14px;
        }

        .help {
            font-size: 16px;
        }
    }