body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url("../Img/Main_img.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  text-align: center;
  max-width: 90%;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn.outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn:hover {
  background-color: #ddd;
  color: black;
}

.btn.outline:hover {
  background-color: white;
  color: #003366;
}

.hero-icons i {
  margin: 0 0.5rem;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Top bar and nav */
.utility-bar {
  background-color: #003366;
  color: white;
  font-size: 0.85rem;
  padding: 0.5rem 2rem;
  text-align: right;
}

.utility-bar a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ccc;
  background-color: white;
}

.logo img {
  height: 40px;
}

.main-nav a {
  margin: 0 1rem;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.logo-nav {
  display: flex;
  align-items: center;
}

.search-box {
  position: relative;
}

.search-box input {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.search-box i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #003366;
}

/* Main content styles */
.program-details {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.program-details h2 {
  color: #003366;
  margin-top: 2rem;
  font-size: 1.8rem;
}

.program-details ul {
  margin-left: 1rem;
  padding-left: 1rem;
}




/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1em;
}
