.nav-link {
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}

.nav-link:hover {
  color: #1e40af;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a8a;
}
.program-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.program-card p {
  margin-bottom: 15px;
  color: #555;
}

.program-info {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.program-btn {
  display: inline-block;
  background: #1e40af;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  transition: 0.3s;
}

.program-btn:hover {
  background: #f97316;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #10b981;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}
.course-box {
  background: #f3f4f6;
  padding: 25px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.course-box:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-8px);
}

.step-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.step-box:hover {
  transform: translateY(-8px);
}

.step-number {
  background: #1e40af;
  color: white;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
}

.feature-box {
  background: #f9fafb;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.feature-box:hover {
  background: #1e40af;
  color: white;
}
.scholarship-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.scholarship-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.scholarship-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.info-block {
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}
.intern-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.intern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.intern-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 5px;
}

.intern-details {
  font-size: 14px;
  color: #555;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.job-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.job-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 5px;
}

.job-details {
  font-size: 14px;
  color: #555;
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.tricolor-accent {
  height: 5px;
  background: linear-gradient(to right,
    #FF9933 33%,
    #FFFFFF 33%,
    #FFFFFF 66%,
    #138808 66%);
  border-radius: 4px;
}
