/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

/* Header Section */
header {
  background-color: #00457c;
  color: white;
  padding: 30px;
  text-align: center;
}

header img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}

header p {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 0;
}

/* Navigation Bar */
nav {
  background-color: #333;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

nav li {
  display: inline;
}

nav a {
  display: inline-block;
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  background-color: #111;
}

/* Hero Banner Section */
.hero-banner {
  background-image: url('IMG_6550.JPG');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  opacity: 0.85;
}

.hero-banner .banner-text {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
}

/* Admissions Banner */
.admissions-banner {
  background-color: #ffcc00;
  padding: 20px;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 20px 0;
}

.admissions-banner a {
  color: #00457c;
  text-decoration: none;
  font-weight: bold;
}

/* Main Content Section */
.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

/* Image Box Layout */
.image-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}

/* Faculty Section */
.faculty-container {
  margin-bottom: 40px;
}

.faculty-container h2 {
  margin-bottom: 20px;
}

/* Image Container for Labs */
.image-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.image-item {
  width: 30%;
  text-align: center;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Achievement Section */
.achievement {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 15px;
  text-align: center;
}

.achievement img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.achievement p {
  color: #333;
  font-weight: bold;
}

/* Footer Section */
footer {
  background-color: #00457c;
  color: white;
  padding: 20px;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
}

footer a:hover {
  background-color: #333;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-banner {
      font-size: 1.8em;
  }

  .image-box {
      flex-direction: column;
      align-items: center;
  }

  .image-container {
      flex-direction: column;
      align-items: center;
  }

  .image-item {
      width: 80%;
      margin-bottom: 20px;
  }
}
