/* CARD */
.placed-card{
  background:white;
  border-radius:15px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
  transition:0.3s;
  position:relative;
}

.placed-card:hover{
  transform:translateY(-6px);
}


.placed-top{
	background: linear-gradient(45deg,#ffb347,#ff7e00);
	   padding: 30px 0;
	   position: relative;
}

.placed-img{
	width: 90px;
	    height: 90px;
	    border-radius: 50%;
	    border: 5px solid white;
	    object-fit: cover;
	    background: white;
}


.placed-card {
    border-radius: 14px;
    overflow: hidden;
    background: white;
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.placed-top {
    background: linear-gradient(45deg, #ffb347, #ff7e00);
    height: 80px;       
    position: relative;
}

.placed-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    position: absolute;  
    top: 40px;           
    left: 50%;
    transform: translateX(-50%);
    background: white;
    z-index: 2;
}

.placed-body {
    padding: 60px 20px 20px;  
}

.placed-body h5 {
    font-weight: 600;
    margin-bottom: 6px;
}


.role {
    color: #666;
    font-size: 14px;
    margin-bottom: 6px;
}


.package {
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 6px;
}


.company {
    font-size: 14px;
    color: #555;
}


.placed-card:hover {
    transform: translateY(-5px);
}

@media(max-width:768px) {
    .placed-top {
        height: 60px;
    }

    .placed-img {
        width: 70px;
        height: 70px;
        top: 30px;
    }

    .placed-body {
        padding-top: 50px;
    }
}


.placement-hero{
    padding: 80px 0;
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
}

.placement-hero-img{
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.placement-hero-title{
    font-size: 26px;
    font-weight: 700;
    color: #111;
}

.placement-hero-text{
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.placement-enquiry{
    background: rgb(0, 0, 64);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    transition: 0.3s;
}

.placement-enquiry:hover{
    background: #0b5ed7;
    color: white;
}


@media(max-width:768px){

    .placement-hero{
        padding: 50px 15px;
        text-align: center;
    }

    .placement-hero-title{
        font-size: 28px;
    }

    .placement-hero-img{
        max-width: 280px;
        margin-bottom: 30px;
    }

    .placement-hero .d-flex{
        justify-content: center;
    }
}