/* Hero paragraph same */
.admission-hero p {
    font-size: 16px;
    line-height: 1.6;
}

/* Standard Hover Box */
.service-box:hover {
    transform: translateY(-5px);
    transition: .3s;
}

/* Section Boxes */
.choose-box {
    transition: .3s ease;
    background: #ffffff;
}

.choose-box:hover {
    transform: translateY(-7px);
    background: #f5faff;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
}

/* Badges */
.feature-badge {
    background: #eef3ff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #d7e2ff;
    transition: .3s;
}

.feature-badge:hover {
    background: #06BBCC;
    color: #fff;
    border-color: #06BBCC;
    transform: translateY(-3px);
    cursor: pointer;
}

.text-color {
    color: #06BBCC;
}

.border-lr {
    border-left: 6px solid #06BBCC;
    border-right: 6px solid #06BBCC;
}

/* CTA */
.teqto-cta-section {
    background: #06BBCC;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
}

.cta-contact-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.cta-item {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-icon {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-contact-box {
        flex-direction: column;
        gap: 10px;
    }
}
