﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fcfcfc;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    color: #333;
}

.placements-container {
    max-width: 1200px;
    margin: 60px auto 60px;
    padding: 0 40px;
}

.header-section {
    text-align: center;
    margin-bottom: 50px;
}

    .header-section h3 {
        color: #004b73;
        font-size: 40px;
        /* font-weight: bold; */
        margin-bottom: 8px;
    }

    .header-section p {
        font-size: 18px;
        color: #666;
        font-weight: 400;
    }

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.profile-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .profile-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.04);
    }

.avatar-box {
    width: 100px;
    height: 100px;
    background-color: #e2e8f0;
    /*order-radius: 50%;*/
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .avatar-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.profile-card h3 {
    font-size: 19px;
    color: #4a5568;
    /* font-weight: bold; */
    margin-bottom: 8px;
}

.profile-card .course {
    font-size: 16px;
    /* font-weight: bold; */
}

.green-text {
    color: #ff0f7b;
}

.yellow-text {
    color: #bfa12a;
}

@media(max-width: 1199px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .placements-container {
        padding: 0 25px;
    }
}

@media(max-width: 991px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .header-section h1 {
        font-size: 32px;
    }
}
/* 
    .placements-container{
    max-width: 1200px !important;
    margin: 60px auto !important;
}

.profiles-grid{
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
}

.profile-card{
    width: auto !important;
    min-width: 0 !important;
} */
