/* --- General Section Setup --- */
.testimonials-section {
    padding-top: 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
}

.testi-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

/* --- Header & Pill Button --- */
.testi-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.testi-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.download-report {
    background: #ff6933; /* Orange Theme */
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px; /* Pill Shape */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 51, 0.3);
    white-space: nowrap;
}

.download-report:hover {
    background: #e65a28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 51, 0.4);
}

/* --- Students Grid & Cards --- */
.students-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.student-card {
    position: relative;
    width: 300px;
    margin-top: 50px;
}

/* --- Square Profile Images (Larger) --- */
.avatar-wrapper {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.student-img {
    width: 100px;
    height: 100px;
    border-radius: 15px; /* Square with rounded corners */
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    object-fit: cover;
    background: #eee;
}

/* --- Info Box --- */
.logo-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 60px 15px 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.logo-box:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: #ff6933;
    transform: translateY(-5px);
}

.student-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.logo-box p {
    font-size: 12px;
    color: #777;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Footer Background Element --- */
.testi-footer-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-size: contain;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .students-grid { gap: 40px 20px; }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding-top: 40px;
    }
    .testi-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }
    .student-card {
        width: calc(50% - 15px);
        min-width: 160px;
    }
    .student-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .student-card {
        width: 100%;
        max-width: 280px;
    }
    .testi-header h2 { font-size: 22px; }
    .testi-footer-bg { height: 80px; opacity: 0.2; }
}