/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: 'Trebuchet MS', sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #ACE1AF, #1CAC78);
  min-height: 100vh;
}

/* Section styles */
section {
  text-align: center;
  margin-top: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box {
  position: relative;
  width: 300px;
  height: 200px;
  background-color: #00A86B;
  border-radius: 20px;
  margin: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for transform and box-shadow */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add box shadow for pop-up effect */
}

.box::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.box:hover::after {
  transform: scaleX(1);
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Add pushed-in effect on active state */
.box:active {
  transform: translateY(10px); /* Move the box down slightly */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Reduce box shadow to simulate being pressed in */
}


.box h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.box p {
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.box img {
  width: auto; /* Adjust image size as needed */
  height: 100px; /* Maintain aspect ratio */
  margin-bottom: 10px; /* Space between image and text */
}

.countdown {
  display: flex;
  justify-content: center;
}

.countdown-item {
  text-align: center;
  margin: 0 10px;
  color: #fff
}

.countdown div {
  font-size: 28px;
}

.countdown-label {
  font-size: 16px;
}


.boxPles {
  width: 300px;
  height: 500px;
  background-color: #82EEDF;
  border-radius: 20px;
  margin: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.boxPles h2 {
  color: #000;
  font-size: 24px;
  margin-bottom: 10px;
}

.boxPles p {
  color: #000;
  font-size: 16px;
  text-align: center;
}




nav {
  background-color: #00AB66;
  color: #fff;
  padding: 20px;
  border-bottom: 5px solid #009150;
}

#changeSchoolLink {
  position: absolute; /* Set the position of the new list item to absolute */
  top: 20px; /* Adjust top position as needed */
  right: 20px; /* Adjust right position as needed */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin-right: 20px;
}

nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  position: relative;
}

nav li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #009150;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

nav li a:hover::before {
  transform: scaleX(1);
}

.headingText p {
  color: #fff;
  font-size: 80px;
  text-align: center
}

.headingText p:nth-child(2) {
  font-size: 34px; /* Adjust the font size as needed */
}

.headingText h2 {
  color: #fff;
  font-size: 35px;
  text-align: center;
}

.subtitleText p {
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.footerText p {
  color: #ffe;
  font-size: 16px;
  text-align: center;
}

.box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.box li {
  margin-right: 20px;
}

.box li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}

.box li a:hover {
  text-decoration: underline;
}

.update-card {
  width: 600px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 30px;
  background: #00A86B;
  color: #fff;
  display: flex;
  align-items: center;
}

.update-card-utilman {
  width: 600px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 30px;
  background: #00A86B;
  color: #fff;
  display: flex;
  align-items: center;
}

.update-card img {
  width: 100px;
  margin-right: 20px;
}

.update-card .update-details {
  flex: 1;
}

.update-card-utilman .update-details {
  flex: 1;
}

.update-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.update-card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.update-card-utilman h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.update-card-utilman p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.update-card-utilman e {
  font-size: 10px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {

  .update-card,
  .update-card-utilman {
    width: 100%;
    max-width: 280px;
  }

  .update-card,
  .update-card-utilman,
  .update-card img,
  .update-card .update-details,
  .update-card-utilman h2,
  .update-card-utilman p {
    margin: 0 auto;
  }

  nav ul {
    flex-wrap: wrap;
  }

  nav li {
    margin: 10px 0;
    flex-basis: 100%;
    text-align: center;
  }

  .headingText p {
    color: #fff;
    font-size: 35px;
    text-align: center
  }

  .headingText p:nth-child(2) {
    font-size: 20px;
  }

  .update-card-utilman h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .update-card-utilman p {
    font-size: 10px;
    margin-bottom: 10px;
  }
}