.about-selec {
    margin: 0 auto;
}

.about-selec ul {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 50px;
}

.about-selec ul a {
    color: #000;
    border: 1px solid #00000031;
    border-radius: 999px;
    padding: 15px 20px;
}

.about-selec ul a.active {
    color: #fff;
    background-image: linear-gradient(120deg, #428CCC, #79c1ff);
    border: 1px solid transparent;
}


.Box1 {
    margin-top: 50px;
}

.Box1 .container-md.row {
    margin: 0 auto;
}

.Box1 .certificates-section .honor .slick-list {
    height: fit-content;
}
.Box1 .certificates-section .honor .slick-prev,
.Box1 .certificates-section .honor .slick-next { 
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);     
    color: #fff; 
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: none;
    border-radius: 999px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    color: #333;
    transition: 0.3s;
}
.Box1 .certificates-section .honor .slick-prev:hover,
.Box1 .certificates-section .honor .slick-next:hover{
    background-color: #428CCC;
    color: #fff;
}
.Box1 .certificates-section .honor .slick-prev{
    left: -10px;  
}
.Box1 .certificates-section .honor .slick-next{
    right: -10px; 

}


.Box1 .certificates-section .honor .img {
    padding: 10px;
}

.Box1 .certificates-section .honor .img img {
    width: 100%;
}


.Box1 .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.Box1 .section-title h2 {
    font-size: 2.2rem;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
}

.Box1 .section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1e5799, #207cca);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.Box1 .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width:576px) {
    .Box1 .content-grid{
        display: flex; 
        flex-direction: column; 
        align-items: center;
    }
}

.Box1 .card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.Box1 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.Box1 .card-icon {
    font-size: 2.5rem;
    color: #1e5799;
    margin-bottom: 20px;
    text-align: center;
}

.Box1 .card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1e5799;
    text-align: center;
}

.Box1 .card p {
    color: #555;
    margin-bottom: 15px;
}

.Box1 .card ul {
    list-style-type: none;
    padding-left: 0;
}

.Box1 .card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.Box1 .card li:before {
    content: '✓';
    position: absolute; 
    color: #428CCC;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.Box1 .certificates-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.Box1 .carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.Box1 .carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.Box1 .carousel-item {
    min-width: 100%;
    padding: 20px;
    text-align: center;
}

.Box1 .certificate-img {
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.Box1 .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 87, 153, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.Box1 .carousel-control:hover {
    background: rgba(30, 87, 153, 1);
}

.Box1 .carousel-control.prev {
    left: 15px;
}

.Box1 .carousel-control.next {
    right: 15px;
}

.Box1 .carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.Box1 .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.Box1 .indicator.active {
    background: #1e5799;
}

@media screen and (max-width:991px) {
    .Box1 .card h3{
        font-size: 28px;
    }
}
@media screen and (max-width:768px) {
    .Box1 .card h3{
        font-size: 24px;
    }
}