/*
* Franchise Section CSS
*/
.school-section .school-logo {
    width: 120px; 
    height: 100px; 
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 6px;
}

/* School info section */
.part-school-title {
    padding-left: 20px;
    border-left: 2px solid #163C88;
}

.part-school-title h4 {
    font-size: 17px;
    color: black;
    font-weight: 700;
    margin-bottom: 5px;
}

.part-school-title p {
    font-size: 13px;
    color: black;
    font-weight: 400;
    margin-bottom: 4px;
}

.part-school-title i {
    font-size: 18px;
    color: #163C88;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-logo-text {
    display: none;
}

/* Card design */
.card {
    background-color: #EDF5F8;
    box-shadow: 1px 4px 10px #163c88b6;
	border-radius: 10px;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.199);
}

/* Badge style */
.badge {
    background-color: #163C88;
    border-radius: 10px;
}

/* Language School Section */
.language-section {
    background: white;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.199);;
}
.language-title {
    padding-left: 20px;
    border-left: 3px solid #163c88;
}
.language-title h5 {
    font-size: 13px;
    color: #163C88;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.language-title h4 {
    font-size: 17px;
    color: black;
    font-weight: 700;
    margin-bottom: 8px;
}

.language-title i {
    font-size: 18px;
    color: #163C88;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-title p {
    font-size: 14px;
    color: black;
    font-weight: 400;
    /* margin-bottom: 4px; */
}

@media (max-width: 768px) {
    .school-logo {
        display: none;
    }

    .part-school-title {
        padding-left: 20px;
        border-left: 2px solid #163C88;
    }

    .mobile-logo-text {
        display: block;
        font-size: 13px;
        font-weight: 650;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .part-school-title h4 {
        font-size: 15px;
    }

    .part-school-title p {
        font-size: 12px;
    }

    .badge {
        font-size: 11px;
        padding: 4px 6px;
    }

    .card {
        padding: 10px;
    }

    .language-title h4 {
        font-size: 15px;
    }

    .language-title p {
        font-size: 12px;
    }
}