*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins, sans-serif';
    box-sizing: border-box;
}
#header{
    width: 100%;
    height: 50px;
    background-color: aliceblue;
}
.header {
    display: flex;
    align-items:center; 
    background-color: #0077be;

}

.header img {
  height: 90px;
  margin-left: 560px;
  
}

.header-text {
  line-height: 1.2;
  color: rgb(255, 255, 255);
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #0077be;
  color: #000;
  text-align: center;
}

h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 30px 0 20px;
  color: gold;
  position: relative;
  display: inline-block;
}

h2::before,
h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 2px;
  background: #999;
}

h2::before {
  right: 100%;
  margin-right: 15px;
}

h2::after {
  left: 100%;
  margin-left: 15px;
}

.admin-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 1200px;
}

.admin-card {
  width: 280px;
  text-align: center;
}

.admin-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid gold;
  margin-bottom: 20px;
}

.admin-card h3 {
  font-size: 16px;
  font-weight: bold;
  color: gold;
  margin: 5px 0;
}
.p {
  font-size: 14px;
  margin: 2px 0;
  color: #fff;
}

.header-text h1 {
  margin: 0;
  font-size: 45px;
  font-family: "UnifrakturCook", "Old English Text MT", serif;
  font-weight: 700;
}
.header-text p {
  margin: 0;
  font-size: 18px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: #000;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    padding-right: 150px;
    padding-left: 150px;
    height: 100px;
}
nav ul li a::after{
    content:'';
    width: 0;
    height: 3px;
    background: #FFD700;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
/*-----------Message--------*/

.gold-line {
  width: 100%;       /* full width */
  height: 4px;       /* thickness of the line */
  background-color: gold;  /* golden color */
}
/*-- Mission, Vission --*/
.M{
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.mission-vision {
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: flex-start;   /* aligns text at the top */
  gap: 50px;                 /* space between mission and vision */
  padding: 40px;
  text-align: center;
}

.mission, .vision {
  width: 45%;   /* each takes less than half of the container */
}

.mission h2, .vision h2 {
  color: gold;
  margin-bottom: 15px;
}

.mission p, .vision p {
  color: white;
  font-size: 18px;
  line-height: 1.6;
}
.programs {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two columns */
  gap: 40px;
  padding: 50px;
  background: #0077be;  /* your school theme color */
  color: white;
}

.program {
  background: rgba(255, 255, 255, 0.05); /* subtle background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: left;
}

.program h3 {
  color: gold;
  margin-bottom: 15px;
}

.program p, .program ul {
  font-size: 16px;
  line-height: 1.6;
}

.program ul {
  margin-top: 10px;
  padding-left: 20px;
}

.image-container {
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 20px; /* space between images */
  padding: 20px;
  flex-wrap: wrap; /* makes it responsive */
}

.image-container img {
  width: 300px; /* adjust size */
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  background: white;
}
.image-wrapper img {
  width: 60%;   /* smaller size (60% of screen width) */
  max-width: 500px; /* optional limit */
  height: auto; /* keeps proportions */
  border-radius: 10px; /* optional rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* optional shadow */
}


/* === Footer Styles === */
footer {
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;

}

.footer img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.footer h6 {
  margin: 10px 0 5px;
  font-weight: normal;
  font-size: 16px;
}

.footer .contact-title {
  color: red;
  font-weight: bold;
  font-size: 18px;
  margin-top: 5px;
}

.footer .contact-info {
  font-size: 16px;
  line-height: 1.6;
  margin: 5px 0;
}

.footer .contact-info span {
  font-weight: bold;
}

.footer .location {
  margin-top: 10px;
}

.footer .location span {
  font-weight: bold;
}
