/* ===== OUR PLACED STUDENTS SECTION ===== */

.placed-students-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #ffffff 100%);
    overflow: hidden;
}

.placed-students-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.placed-students-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 76, 107, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.placed-students-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === SECTION HEADER === */
.placed-header {
    text-align: center;
    margin-bottom: 60px;
}

.placed-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.1), rgba(27, 156, 252, 0.08));
    border: 1px solid rgba(245, 130, 32, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #F58220;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.placed-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #0F4C6B;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.placed-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F58220, #0F4C6B, #F58220);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: gradientSlide 3s ease infinite;
}

.placed-subtitle {
    font-size: 16px;
    color: #555;
    margin-top: 20px;
    line-height: 1.6;
}

/* === STATS BAR === */
.placed-stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(15, 76, 107, 0.05), rgba(245, 130, 32, 0.05));
    border-radius: 16px;
    margin-bottom: 50px;
    border: 1px solid rgba(15, 76, 107, 0.1);
    backdrop-filter: blur(10px);
}

.placed-stat-item {
    text-align: center;
}

.placed-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #F58220;
    display: block;
    margin-bottom: 4px;
}

.placed-stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.placed-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(15, 76, 107, 0.2);
}

/* === STUDENTS GRID === */
.students-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* === STUDENT CARD === */
.student-card {
    background: white;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(10, 61, 98, 0.08);
    overflow: hidden;
}

.student-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F58220, #0F4C6B, #F58220);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.student-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 61, 98, 0.15);
    border-color: rgba(245, 130, 32, 0.3);
}

.student-card:hover::before {
    opacity: 1;
}

/* === STUDENT IMAGE === */
.student-image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.student-image-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F58220, #0F4C6B, #F58220);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 3s linear infinite;
}

.student-card:hover .student-image-ring {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.student-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    position: relative;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(10, 61, 98, 0.15);
    transition: all 0.4s ease;
}

.student-card:hover .student-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 61, 98, 0.2);
}

/* === PLACEMENT BADGE === */
.placement-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

/* === STUDENT INFO === */
.student-name {
    font-size: 15px;
    font-weight: 600;
    color: #0F4C6B;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.student-card:hover .student-name {
    color: #F58220;
}

.student-role {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.student-company {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(15, 76, 107, 0.08), rgba(245, 130, 32, 0.05));
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #0F4C6B;
    border: 1px solid rgba(15, 76, 107, 0.15);
    transition: all 0.3s ease;
}

.student-card:hover .student-company {
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.12), rgba(15, 76, 107, 0.08));
    border-color: rgba(245, 130, 32, 0.3);
    transform: scale(1.05);
}

.company-icon {
    font-size: 14px;
}

/* === BOTTOM CTA === */
.placed-cta-wrapper {
    text-align: center;
}

.placed-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #F58220, #e67e22);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.placed-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.placed-cta-button:hover::before {
    left: 100%;
}

.placed-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 130, 32, 0.4);
}

.placed-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.placed-cta-button:hover svg {
    transform: translateX(5px);
}

/* === RESPONSIVE DESIGN === */

/* Large Tablet */
@media (max-width: 1024px) {
    .students-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .placed-title {
        font-size: 38px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .students-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .placed-stats-bar {
        gap: 30px;
        padding: 20px 24px;
    }
    
    .placed-stat-number {
        font-size: 32px;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .placed-students-section {
        padding: 70px 16px;
    }
    
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .student-card {
        padding: 20px 12px;
    }
    
    .student-image-wrapper,
    .student-image {
        width: 80px;
        height: 80px;
    }
    
    .student-image-ring {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }
    
    .student-name {
        font-size: 14px;
    }
    
    .student-role {
        font-size: 11px;
    }
    
    .student-company {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .placement-badge {
        font-size: 9px;
        padding: 3px 10px;
    }
    
    .placed-badge {
        display: none;
    }
    
    .placed-title {
        font-size: 32px;
    }
    
    .placed-subtitle {
        font-size: 15px;
    }
    
    .placed-stats-bar {
        gap: 20px;
        padding: 18px 20px;
        flex-wrap: wrap;
    }
    
    .placed-stat-number {
        font-size: 28px;
    }
    
    .placed-stat-label {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .placed-students-section {
        padding: 60px 12px;
    }
    
    .students-grid {
        gap: 14px;
    }
    
    .student-card {
        padding: 18px 10px;
    }
    
    .student-image-wrapper,
    .student-image {
        width: 70px;
        height: 70px;
    }
    
    .student-name {
        font-size: 13px;
    }
    
    .student-role {
        font-size: 10px;
    }
    
    .student-company {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    .placed-stats-bar {
        gap: 16px;
        padding: 16px;
    }
    
    .placed-stat-number {
        font-size: 24px;
    }
    
    .placed-stat-label {
        font-size: 11px;
    }
    
    .placed-title {
        font-size: 28px;
    }
    
    .placed-cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Ultra Small Mobile */
@media (max-width: 400px) {
    .placed-students-section {
        padding: 50px 10px;
    }
    
    .students-grid {
        gap: 12px;
    }
    
    .student-card {
        padding: 16px 8px;
    }
    
    .student-image-wrapper,
    .student-image {
        width: 60px;
        height: 60px;
    }
    
    .student-name {
        font-size: 12px;
    }
    
    .student-company {
        font-size: 8px;
        padding: 3px 6px;
    }
    
    .placed-title {
        font-size: 24px;
    }
    
    .placed-stats-bar {
        gap: 12px;
        padding: 14px;
    }
    
    .placed-stat-number {
        font-size: 20px;
    }
}
