/* Mentored By Section Styles */
.mentored-by-section {
    background: linear-gradient(135deg, #1a237e 0%, #7b1fa2 50%, #e91e63 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mentored-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.mentored-by-section .container {
    position: relative;
    z-index: 2;
}

.mentor-content {
    text-align: left;
    color: white;
}

.sanskrit-quote {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Lexend', sans-serif;
}

.english-quote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    opacity: 0.9;
    font-style: italic;
}

.mentor-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.mentor-image {
    flex-shrink: 0;
}

.mentor-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mentor-details {
    text-align: left;
    color: white;
}

.mentor-label {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 8px;
    color: #ffa726;
}

.mentor-name {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 991px) {
    .mentored-by-section {
        padding: 60px 0;
    }
    
    .mentor-info {
        justify-content: center;
        margin-top: 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .mentor-details {
        text-align: center;
        margin-top: 20px;
    }
    
    .mentor-content {
        text-align: center;
    }
    
    .sanskrit-quote {
        font-size: 2rem;
    }
    
    .english-quote {
        font-size: 1.5rem;
    }
    
    .mentor-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .mentored-by-section {
        padding: 50px 0;
    }
    
    .sanskrit-quote {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .english-quote {
        font-size: 1.2rem;
    }
    
    .mentor-img {
        width: 150px;
        height: 150px;
    }
    
    .mentor-name {
        font-size: 1.6rem;
    }
    
    .mentor-label {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .mentored-by-section {
        padding: 40px 0;
    }
    
    .sanskrit-quote {
        font-size: 1.4rem;
    }
    
    .english-quote {
        font-size: 1.1rem;
    }
    
    .mentor-img {
        width: 120px;
        height: 120px;
    }
    
    .mentor-name {
        font-size: 1.4rem;
    }
}
.inspirational-quote{
    padding-bottom: 0px;
}
.self-center{
    align-self: center;
}