

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('Home Media/W2.png');
    background-size: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    }
  
  .logo { 
  width: 65px;
  cursor: pointer;
  margin: 100 30px 0px 70px;
  background: transparent;
  filter:drop-shadow(0px 0px 6px
  rgba(255, 213, 2, 5));
  transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .logo:hover {
  transform: scale(1.1);
  }
  
  .bar {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: linear-gradient(rgba(66, 12, 12, 1), rgba(176, 81, 81, 0.5));
  z-index: 2; /* Ensures the nav bar is above the video */
  position: relative;}
  
  .cover {
  display: none;}
  
  .bar ul li a {
  background-color: #FFFFFF; 
  padding: 8px;
  border-radius: 10px;
  font-family: Bahnschrift SemiBold;
  font-size: 17px;
  background: linear-gradient(rgba(173, 2, 2, 1), rgba(264, 2, 2, 0.5));
  filter:drop-shadow(0px 0px 3px
  rgba(255, 213, 2, 5));}
  
  .bar ul li a:hover {
  transition: 0.3s;
  border-radius: 40% 40% 0% 0%;}
  
  .dropdown-content {
  display: none;
  position: absolute;
  min-width: 100px;
  box-shadow: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  font-family: Bahnschrift SemiBold;
  background: linear-gradient(rgba(150, 10, 10, 1), rgba(200, 0, 0, 0.5));
  box-shadow: 0 0 10px rgba(255, 213, 2, 1);}
  
  nav ul li a {
  text-decoration: underline;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  display: block;
  padding: 8px;
  border-radius: 5px;}
  
  .dropdown:hover 
  .dropdown-content {
  display: block;}
  
  .bar ul li {
  font-family: Bahnschrift SemiBold;
  display: inline-block;
  margin: 15px;
  position: relative;}
  
  .line::after {
  content: "";
  position: absolute;
  background-color: White ;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.3s;}
  
  .line:hover::after {
  width: 100%;
  transition: 0.3s;}
  
  .bar ul li a {
  text-decoration: none; 
  color: Yellow;}
  
  .Pee2 {
  color: white;
  text-shadow: 3px 3px #023988;
  font-size: 17px;
  margin: auto;
  padding: 14px;
  text-align: center;
  display:flex;
  flex-direction: row;}
  
  ul {
  background: transparent;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;}
  
  ul li {
  background: transparent;
  margin: 0 15px;
  position: relative;}

header {
    background: #444;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
}
header img {
    height: 50px;
}

.main-banner {
    background: url('path_to_your_banner_image.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.main-banner h1 {
    font-size: 3em;
}
.section {
    padding: 40px 0;
    width: 80%;
    margin: auto;
}
.section h2 {
    text-align: center;
    margin-bottom: 20px;
}
.section p, .section ul {
    text-align: center;
    margin-bottom: 20px;
}
.section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.mission-vision, .philosophy-core-values, .facilities, .leadership {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.mission-vision div, .philosophy-core-values div, .facilities div, .leadership div {
    flex: 1;
    margin: 10px;
    min-width: 250px;
}
.leadership img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.footer {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
.student-council {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}
@media (max-width: 768px) {
    .mission-vision, .philosophy-core-values, .facilities, .leadership {
        flex-direction: column;
    }
    .student-council {
        grid-template-columns: 1fr;
    }
}