.quick-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    /* margin-left: 10px; */
}

.quick-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.3s;

    width: 170px;
    max-width: 170px;
    min-width: 170px;
    height: 50px;
}

.quick-card:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 42px;
    position: absolute;
    left: 5px;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #0d1b2a;

}

.card-sub {
    font-size: 13px;
    color: #4c566a;
}

.highlight {
    color: #089981;
    font-weight: 600;
}

.arrow {
    position: absolute;
    right: 15px;
    transform: translateY(-50%);
    transition: 0.3s ease;
    top: 30px;


    font-size: 18px;
    color: #4c566a;
}



















/* Generic Info Section */
.generic-info {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.gi-wrapper {
    width: 92%;
    background: linear-gradient(to right, #e8f3ff, #ffffff);
    border: 1px solid #d8e7f8;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 35px;
    justify-content: space-between;

}

/* Cards Wrapper */
.gi-card {
    width: 235px;
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 0 1px #e2ebf5;
    position: relative;
}

.gi-icon {
    width: 48px;
    margin-bottom: 15px;
}

.gi-card h3 {
    margin: 0;
    font-size: 22px;
    color: #1b1d25;
    font-weight: 600;
}

.gi-card p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 20px;
    color: #4c566a;
}

/* gi-badge*/

.gi-badge-wrapper {
    position: relative;
}

.gi-badge {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #e9c46a;
    padding: 4px 12px;
    font-size: 13px;
    border-radius: 4px;
    color: #53350a;
    font-weight: 600;
    transform: rotate(-20deg);
}

/* Right Side Section */
.gi-right {
    padding-left: 10px;
}

.gi-right h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1b1d25;
}

.gi-right p {
    font-size: 18px;
    color: #4c566a;
    margin-bottom: 15px;
}

.gi-link {
    font-size: 16px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

.gi-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .gi-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .gi-card {
        width: 90%;
    }
}