/* Banner */
.placement-banner {
    background: url('../images/placements.png') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    min-height: 300px; /* recommended */
}

.placement-banner .banner-content h1 {
    font-size: 42px;
    font-weight: 700;
}
.placement-banner .banner-content p {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}


/* Main Section */
.content-section {
    padding: 50px 0;
}
.content-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #222;
}


/* Placement Grid */
.placement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 0 20px;
}


/* Colorful Cards */
.placement-card {
    background: #f7f9ff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
}

.placement-card:hover {
    transform: translateY(-5px);
}

/* Company Logo */
.placement-card img.logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 15px;
    background: white;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* Title */
.placement-card h3 {
    font-size: 20px;
    color: #0b3d89;
    margin-bottom: 8px;
}

/* Number of Students */
.placement-card .count {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Description */
.placement-card p {
    color: #444;
    line-height: 1.6;
}


/* Soft Color Variants */
.placement-card:nth-child(1n) { background: #f2f8ff; }
.placement-card:nth-child(2n) { background: #fdf5ff; }
.placement-card:nth-child(3n) { background: #f3fff7; }
.placement-card:nth-child(4n) { background: #fff9f4; }
.placement-card:nth-child(5n) { background: #f6f4ff; }


/* Responsive */
@media (max-width: 600px) {
    .placement-banner h1 {
        font-size: 28px;
    }
    .placement-card {
        padding: 20px;
    }
}
