.breadcrumb{

padding:20px 80px;

background:#faf5ff;

}


.hero{

       height:450px;
    margin:30px 40px;
    padding:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(90deg,#c06eff,#ff91ca);
    color:#fff;
    border-radius:20px;

}

.hero > div{
    padding-left:40px;   /* text ko left se space */
}


.hero h1{

font-size:50px;

margin-bottom:20px;

}


.hero p{

margin-bottom:25px;

line-height:28px;

}


.hero button{

padding:14px 30px;

border:none;

border-radius:30px;

background:#fff;

color:#d26df7;

cursor:pointer;

}


.hero img{
    margin-right:40px;   /* image ko right se space */
}


.search{

padding:50px;

display:flex;

justify-content:center;

gap:10px;

}


.search input{

width:500px;

padding:15px;

border:1px solid #ddd;

border-radius:10px;

}


.search button{

padding:15px 30px;

border:none;

border-radius:10px;

background:#d26df7;

color:#fff;

}


.department{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

padding-bottom:40px;

}


.department button{

padding:12px 25px;

border:none;

border-radius:30px;

background:#f5e4ff;

cursor:pointer;

}


.featured{

padding:80px;

text-align:center;

}


.featured-box{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:40px;

}

.faculty-active{

color:#d26df7;

}
.featured-box div{

padding:40px;

border-radius:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}


.featured-box i{

font-size:45px;

color:#d26df7;

margin-bottom:20px;

}


.faculty-grid{

padding:80px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}


.faculty-card{

padding:30px;

text-align:center;

border-radius:25px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}


.faculty-card:hover{

transform:translateY(-10px);

}


.faculty-card img{

width:180px;

height:180px;

border-radius:50%;

object-fit:cover;

}


.faculty-card h3{

margin:20px 0 10px;

}


.rating{

margin:15px 0;

color:#ffb700;

}


.faculty-card button{

padding:12px 25px;

border:none;

border-radius:25px;

background:linear-gradient(90deg,#bb65ff,#ff85c8);

color:#fff;

cursor:pointer;

}


.stats{

padding:80px;

display:flex;

justify-content:space-around;

background:#faf5ff;

text-align:center;

}


.stats h2{

font-size:50px;

color:#d26df7;

}


.testimonial{

padding:80px;

text-align:center;

}


.review{

width:700px;

margin:auto;

padding:40px;

border-radius:25px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}


.cta{

padding:100px;

text-align:center;

background:linear-gradient(90deg,#c06eff,#ff91ca);

color:#fff;

}


.cta button{

margin-top:25px;

padding:15px 35px;

border:none;

border-radius:30px;

background:#fff;

color:#d26df7;

cursor:pointer;

}



@media(max-width:992px){

.hero{

flex-direction:column;

height:auto;

}

.featured-box,

.faculty-grid{

grid-template-columns:1fr 1fr;

}

}


@media(max-width:768px){

.hero{

padding:40px;

}

.hero h1{

font-size:35px;

}

.search{

flex-direction:column;

}

.search input{

width:100%;

}

.featured-box,

.faculty-grid{

grid-template-columns:1fr;

}

.stats{

flex-direction:column;

gap:30px;

}

.review{

width:100%;

}

}