/* Placement Section Styles */
.placement-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.placement-stats {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.student-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.student-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.student-img {
    height: 300px;
    background-size: cover;
    background-position: top;
    position: relative;
}

.student-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: white;
}

.student-name {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.student-company {
    font-size: 0.9rem;
    opacity: 0.9;
}

.student-content {
    padding: 25px;
}

.student-course {
    display: inline-block;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.student-testimonial {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.student-testimonial::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: rgba(67, 97, 238, 0.2);
    font-family: Georgia, serif;
}

.student-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.salary {
    font-weight: 600;
    color: var(--primary);
}

.company-logo {
    height: 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.student-card:hover .company-logo {
    filter: grayscale(0);
    opacity: 1;
}

.view-all-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    color: white;
}

/* Companies Section */
/* Top Companies */


.place-stu-companies {
    margin-bottom: 80px;
}

.place-stu-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.place-stu-company-logo {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.place-stu-company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.place-stu-company-logo img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.place-stu-company-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
