* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
.main-header{
background:linear-gradient(90deg,#001f3f,#004c99);
padding:15px 40px;
}
.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
flex-wrap:wrap;
}

.nav-logo{
height:65px;
width:auto;
border-radius:8px;
}

.nav-menu{
list-style:none;
display:flex;
gap:30px;
}

.nav-menu a{
text-decoration:none;
color:#fff;
font-weight:600;
transition:.3s;
}

.nav-menu a:hover,
.nav-menu .active{
color:#ffd633;
}


/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("../images/jobs.webp") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  padding-left: 8%;
  color: white;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  padding: 12px 25px;
  background: #ffd633;
  color: #001f3f;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

/* RECRUITERS */
.recruiters {
  padding: 70px 20px;
  text-align: center;
  background: #f8f9fb;
}

.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.recruiter-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.recruiter-card i {
  font-size: 35px;
  color: #004c99;
  margin-bottom: 10px;
}

/* PLACED STUDENTS */
.placement {
  padding: 70px 20px;
  text-align: center;
}

.placement-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.placement-card {
  width: 220px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.placement-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* PROCESS */
.process {
  padding: 70px 20px;
  background: #f4f6f9;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  background: white;
  padding: 25px;
  border-radius: 10px;
}

.process-step i {
  font-size: 30px;
  color: #004c99;
  margin-bottom: 10px;
}

.recruitimg{
  height: 50px;
  width: 50px;
  border-radius: 4px;
}

.placementinfo{
  height: 180px;
  width: 200px;
  border-radius: 4px; 
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-container{
flex-direction:row;
align-items:flex-start;
gap:10px;
justify-content: center;
}

.nav-menu{
flex-direction:row;
gap:7px;
font-size: 9px;
}

  .hero {
    height: auto;
    padding: 60px 10px;
    text-align: center;
  }
}