/* Section */
.affiliation-section {
    background: #f5f7fa;
    padding: 60px 15px;
}

/* Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 10px auto 30px;
    border-radius: 5px;
}

/* Wrapper for proper width */
.affiliation-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* Card */
.affiliation-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.affiliation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Logo */
.aff-logo {
    width: 110px;
    max-width: 100%;
    margin-bottom: 15px;
}

/* Text */
.aff-title {
    font-size: 22px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
}

.aff-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

/*  Mobile Fix */
@media (max-width: 768px) {
    .affiliation-card {
        padding: 25px;
        text-align: center;
    }

    .aff-text {
        text-align: center;
    }

    .aff-title {
        margin-top: 10px;
    }
}

/* Academic team*/
.services div:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}



.tesimonials {
    background: #f9f9f9;
    padding: 60px 0;
}

.headerw3.two {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.carousel-inner {
    text-align: center;
}

.testimonial-box {
    max-width: 750px;
    margin: auto;
}

.testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #f85a40;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.testimonial-role {
    font-size: 14px;
    color: #f85a40;
}

.carousel-indicators li {
    background-color: #ccc;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.carousel-indicators .active {
    background-color: #f85a40;
}

.read-more-btn {
    text-align: center;
    margin-top: 30px;
}

.read-more-btn a {
    background: #f85a40;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-btn a:hover {
    background: #333;
}