*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  color:#222;
  background:#fff;
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
  background:#F5F5DC;
  padding:15px 0;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  height:60px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links a{
  color:#0000FF;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#ff7a00;
}

/* DROPDOWN */

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:35px;
  left:0;
  background:#fff;
  min-width:180px;
  display:none;
  border-radius:6px;
  overflow:hidden;
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu a{
  color:#000;
  display:block;
  padding:12px;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

/* HERO */

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  width:90%;
}

.hero-content h1{
  font-size:55px;
  margin-bottom:20px;
}

.hero-content p{
  max-width:850px;
  margin:auto;
  font-size:18px;
}

/* BUTTONS */

.hero-buttons{
  margin-top:30px;
}

.btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  margin:10px;
  transition:0.3s;
}

.primary-btn{
  background:#ff7a00;
  color:#fff;
}

.primary-btn:hover{
  background:#e56700;
}

.secondary-btn{
  border:2px solid #fff;
  color:#fff;
}

.secondary-btn:hover{
  background:#fff;
  color:#000;
}

/* SECTIONS */

.section-padding{
  padding:100px 0;
}

.section-title{
  text-align:center;
  font-size:40px;
  color:#0b1f3a;
  margin-bottom:50px;
}

/* HIGHLIGHTS */

.highlights{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  margin-top:40px;
}

.highlight-box{
  background:#fff;
  padding:30px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  text-align:center;
}

.highlight-box h3{
  color:#ff7a00;
  margin-bottom:10px;
}

/* PROGRAM CARD */

.program-card{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.program-card ul{
  margin:20px 0;
  padding-left:20px;
}

/* WHY GRID */

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.why-box{
  background:#0b1f3a;
  color:#fff;
  padding:30px;
  border-radius:15px;
  text-align:center;
}

/* CONTACT */

.contact-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  text-align:center;
}

/* FOOTER */

.footer{
  background:#0b1f3a;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* INNER HERO */

.inner-hero{
  height:70vh;
  background:url('../images/iti-banner.jpg') center/cover no-repeat;
  position:relative;
}

.inner-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.inner-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  width:90%;
}

.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.course-box{
  background:#ff7a00;
  color:#fff;
  padding:30px;
  text-align:center;
  border-radius:15px;
  font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

  .hero-content h1{
    font-size:34px;
  }

  .section-title{
    font-size:30px;
  }

  .nav-links{
    gap:15px;
    font-size:14px;
  }

}