* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, sans-serif;
}
html,
body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  box-sizing: border-box; /* Ensure padding/border included in width */
}

/* Ensure top-level wrappers also behave */
.Top, .container /* Add any other major wrappers if needed */ {
  width: 100%;
  max-width: 100%; /* Prevent exceeding screen width */
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body.loaded {
  opacity: 1;
}

.vision-mission-container {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 50px 10% 50px 10%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.28);
  background-color: #e2efff;
}

.container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0px;
  padding: 80px 0px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #eaeaea;
  z-index: 1000;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-left: 100px;
  margin-right: 10px;
}

.logo h1 {
  display: flex;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Navigation */
nav {
  display: flex;
  gap: 60px;
  text-align: center;
  transition: color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}

nav a:hover {
  color: green;
  transform: scale(1.1);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: green;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  font-weight: bold;
}

nav a:hover::after {
  transform: scaleX(1);
}

nav a.active {
  color: green;
}

.admin-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 100px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.admin-btn:hover {
  background-color: green;
  transform: scale(1.05);
}

.admin-btn:active {
  transform: scale(0.95);
}

.page-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0;
  background: linear-gradient(to right, #ff4e5d, #fc5765, #ff9aa2);
}

.hero-content {
  flex: 1;
  text-align: left;
  padding-right: 13.5%;
  padding-left: 10%;
}

.hero-image {
  flex: 1;
  margin-top: -7%;
  margin-bottom: -4.4%;
  text-align: right;
  padding-right: 10%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-image.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;

  width: 500px;
  padding: 10px 15px 10px 15px;
  color: #f85461;
  background-color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-subtitle {
  text-align: left;
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero-desc {
  color: #ffffff;
  font-weight: 200;
  text-align: left;
  margin-bottom: 30px;
  letter-spacing: 0.6px;
  font-size: 16px;
}

.go-to-forms-btn {
  background-color: #ffffff;
  color: #f85461;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.go-to-forms-btn:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}

.go-to-forms-btn:active {
  transform: scale(0.95);
}

.vision-mission-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.values-column {
  flex: 1;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  border-bottom: solid 30px;
  border-color: #49beb7;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
}

.mission-column {
  flex: 1;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  border-bottom: solid 30px;
  border-color: #ff6363;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
}

.vision-column {
  flex: 1;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  border-bottom: solid 30px;
  border-color: #fb9e3a;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
}

.column-vison {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-value-container {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #49beb7;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icon-mission-container {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ff6363;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icon-vision-container {
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fb9e3a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icon-container img {
  width: 60px;
  height: 60px;
}

.column h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.column p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.core-values {
  list-style: none;
  text-align: center;
  margin-top: 15px;
}

.core-values li {
  margin: 10px 0;
}

.learn-more-btn {
  background-color: #f85461;
  color: #ffff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.learn-more-btn:hover {
  background-color: #f85461;
  transform: scale(1.05);
}

.learn-more-btn:active {
  transform: scale(0.95);
}

.read-more-btn {
  background-color: #2291ff;
  margin-bottom: 50px;
  color: #ffff;
  border: none;
  padding: 5px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  background-color: #2291ff;
  transform: scale(1.05);
}

.read-more-btn:active {
  transform: scale(0.95);
}

.progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.progress-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  position: relative;
}

.progress-step.active {
  background-color: #5d5d81;
  border-color: #5d5d81;
  color: white;
}

.progress-step.completed {
  background-color: #6366f1;
  border-color: #6366f1;
  color: white;
}

.progress-step::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #ddd;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.progress-step:last-child::after {
  display: none;
}

.cards-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.card {
  width: 300px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 50px;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  background-color: #f9f5e7;
  text-align: center;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}

/* Ticketing Form Section */
.ticketing-form {
  text-align: center;
  margin: 40px 0;
}

.ticketing-form h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ticketing-form h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 30px;
}

.form-banner {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.form-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-overlay img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* Forms Button */
.go-to-forms-btn {
  background-color: #ffffff;
  color: #f85461;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* --- General --- */
  .container {
    padding: 0 20px; /* Slightly adjusted padding */
    margin-bottom: 30px;
  }

  /* --- Header --- */
  header {
    padding: 10px 15px; /* Reduce header padding */
    flex-direction: column; /* Stack logo/nav/button */
    align-items: center; /* Center items horizontally */
    position: relative; /* Change from fixed to avoid taking up too much space */
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  }

  .logo {
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
  }

  .logo img {
    margin-left: 0;
    width: 45px; /* Consistent size */
    height: 45px;
  }

  .logo h1 {
    font-size: 20px; /* Slightly larger for better readability */
  }

  nav {
    margin-left: 0;
    gap: 12px; /* Slightly more gap */
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 5px 0;
  }

  nav a {
    font-size: 15px; /* Consistent size */
    padding: 5px 10px; /* Slightly larger touch target */
  }

  .admin-btn {
    margin-right: 0;
    margin-top: 5px;
    width: auto;
    padding: 9px 22px; /* Adjust padding */
    font-size: 15px;
  }

  /* --- Adjust Content Below Header --- */
  /* Since header is now relative, no extra top margin needed for .Top */
  .Top {
    margin-top: 0;
  }

  /* --- Education Banner --- */
  .edu-banner {
    flex-direction: column; /* Stack elements vertically */
    text-align: center;
    padding: 20px 15px;
    margin-top: 0;
    margin-bottom: 20px;
    align-items: center; /* <<< ADD THIS LINE TO CENTER ITEMS HORIZONTALLY */
    /* Ensure banner itself doesn't cause overflow (redundant if body has overflow-x:hidden) */
    width: 100%;
    box-sizing: border-box;
  }

  .banner-logos {
    /* ... other styles ... */
    flex-shrink: 0; /* Prevent this block from shrinking if space is tight */
    width: 100%; /* Ensure it tries to take available width for centering */
    max-width: calc(100% - 30px); /* Optional: prevent logos touching edges */
    /* Adjust justify-content if needed, center should be fine */
    justify-content: center;
  }

  .deped-logo,
  .ph-logo,
  .tayabas-logo {
    width: 80px; /* Slightly smaller logos */
    height: auto; /* Maintain aspect ratio */
    max-width: 25%; /* Prevent one logo from being too wide if others wrap */
  }

  .banner-text {
    /* ... other styles ... */
    width: 100%; /* Ensure text block takes width */
    max-width: calc(100% - 30px); /* Optional: prevent text touching edges */
  }

  .banner-text h1 {
    font-size: 1.2em;
  } /* Adjusted sizes */
  .banner-text h2 {
    font-size: 1em;
  }
  .banner-text h3 {
    font-size: 0.9em;
  }

  .date-display {
    /* ... other styles ... */
    width: 100%; /* Ensure date block takes width */
    max-width: calc(100% - 30px); /* Optional: prevent date touching edges */
  }

  .date-display p {
    margin-right: 0;
  }

  /* --- Hero Section --- */
  .hero-section {
    flex-direction: column;
    padding: 30px 0;
    text-align: center;
  }

  .hero-content {
    padding: 0 10px; /* Add slight horizontal padding */
    margin-bottom: 30px;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    order: 2;
    padding-right: 0;
    text-align: center;
    opacity: 1;
    transform: none;
    max-width: 90%;
    margin: 0 auto;
  }
  .hero-image img {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2em; /* Adjust size */
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1.2em; /* Adjust size */
  }
  .hero-desc {
    font-size: 1em; /* Adjust size */
    max-width: 500px; /* Prevent text getting too wide */
    margin-left: auto;
    margin-right: auto;
  }

  .go-to-forms-btn {
    padding: 14px 28px; /* Adjust padding */
    font-size: 1.05em; /* Adjust font size */
  }

  /* --- Vision/Mission/Core Section --- */
  .vision-mission-section {
    flex-direction: column;
    gap: 30px; /* Increase gap */
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .column {
    padding: 25px; /* Adjust padding */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); /* Slightly enhance shadow */
    border: none; /* Remove border if shadow is used */
  }

  .icon-container {
    width: 90px; /* Adjust size */
    height: 90px;
    margin-bottom: 20px;
  }

  .icon-container img {
    width: 50px; /* Adjust icon size */
    height: 50px;
  }

  .column h2 {
    font-size: 1.6em; /* Adjust heading size */
    margin-bottom: 15px;
  }

  .column p,
  .core-values li {
    font-size: 0.95em; /* Adjust text size */
    text-align: center;
    line-height: 1.7; /* Improve readability */
  }

  .core-values {
    padding-left: 0;
    margin-top: 10px;
  }
  .core-values li {
    margin: 8px 0; /* Adjust spacing */
  }

  /* --- Learn More Button --- */
  /* Style inherited from a > button rule, adjust if needed */
  .learn-more-btn {
    margin: 30px auto; /* Adjust margins */
    padding: 14px 28px;
    font-size: 1.05em;
  }

  /* --- Government Logos --- */
  .gov-logos {
    gap: 20px; /* Adjust gap */
    padding: 25px 15px; /* Adjust padding */
    justify-content: space-around;
  }

  .gov-logos .logo-container {
    width: calc(50% - 25px); /* Maintain 2 logos per row */
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gov-logos img {
    height: 70px; /* Adjust logo size */
    margin-bottom: 8px;
  }
  /* Removed .gov-logos .logo-title as it wasn't in the HTML */

  /* --- Footer --- */
  .footer {
    padding: 20px 15px; /* Adjust padding */
    font-size: 13px; /* Adjust font size */
    padding-bottom: 45px; /* Ensure space for credits */
  }

  .developer-credits {
    font-size: 11px; /* Adjust font size */
    bottom: 8px; /* Adjust position */
  }
}

/* --- Small Phone Styles (Up to 576px) --- */
@media (max-width: 576px) {
  .container {
    padding: 0 15px; /* Further reduce padding */
  }

  /* --- Header --- */
  nav {
    gap: 8px; /* Further reduce nav gap */
  }
  nav a {
    font-size: 14px; /* Slightly smaller nav links */
    padding: 4px 8px;
  }
  .admin-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  /* --- Education Banner --- */
  .banner-logos {
    gap: 10px; /* Reduce gap further */
    margin-bottom: 15px; /* Adjust space */
  }
  .deped-logo,
  .ph-logo,
  .tayabas-logo {
    width: 70px; /* Make logos even smaller */
    max-width: 30%; /* Adjust max width */
  }
  .banner-text h1 {
    font-size: 1.1em;
  } /* Further adjust text sizes */
  .banner-text h2 {
    font-size: 0.9em;
  }
  .banner-text h3 {
    font-size: 0.8em;
  }

  .date-display {
    font-size: 0.8em; /* Adjust date size */
  }

  /* --- Hero Section --- */
  .hero-title {
    font-size: 1.7em;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 1.1em;
  }
  .hero-desc {
    font-size: 0.9em;
  }
  .go-to-forms-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* --- Vision/Mission/Core Section --- */
  .column {
    padding: 20px;
  }
  .icon-container {
    width: 80px;
    height: 80px;
  }
  .icon-container img {
    width: 45px;
    height: 45px;
  }
  .column h2 {
    font-size: 1.4em;
  }
  .column p,
  .core-values li {
    font-size: 0.9em; /* Maintain readability */
  }

  /* --- Learn More Button --- */
  .learn-more-btn,
  a > button.learn-more-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* --- Government Logos --- */
  .gov-logos .logo-container {
    width: calc(100% - 30px); /* Switch to 1 logo per row */
    margin-bottom: 25px; /* Add more space between single logos */
  }
  .gov-logos img {
    height: 65px; /* Adjust size for single column */
  }

  /* --- Footer --- */
  .footer {
    font-size: 12px;
  }
  .developer-credits {
    font-size: 10px;
  }
}

.about-us-container {
  width: 100%;
  position: relative;
  height: auto; /* Set desired height */
  padding: 50px 100px 50px 100px;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: 1;
}

.about-us-container h2 {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 0 0 10px 0;
  border-bottom: solid 3px #f85461;
  text-align: center;
  width: 170px;
  justify-self: center;
}

.subhead-about-us {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.subheading {
  font-size: 16px;
  color: #777;
  margin-bottom: 40px;
}

.gov-logos-container {
  width: 100%;
  background-color: white;
  border-top: 2px solid #333;
  padding: 40px 0;
}

.gov-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 20px 10%;
  background-color: #f5f5f5;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.gov-logos .logo-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

.gov-logos img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.gov-logos .logo-title {
  font-size: 16px;
  color: #333;
  font-weight: normal;
  text-align: center;
}

.footer {
  background-color: #f8f9fa;
  color: #333;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  border-top: 1px solid #ddd;
  margin-top: auto;
  padding-bottom: 50px;
}

.developer-credits {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  font-size: 10px;
  color: rgba(85, 85, 85, 0.6); /* Reduced opacity */
  text-align: center;
  font-weight: normal;
}

.ict-head-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.ict-head-section-home {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.profile-card-container-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  background: rgba(255, 255, 255, 0.2);
  border: solid 0.5px #f85461;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 0px;
}

.profile-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 50px;
}

.profile-card-container-home:hover {
  transform: scale(1.05);
}

.profile-card-container:hover {
  transform: scale(1.05);
}

.profile-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 100%;
  max-width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.profile-card h3 {
  font-size: 16px;
  margin: 10px 10px;
  font-weight: bold;
  font-family: serif;
  text-align: center;
}

.profile-card-home h3 {
  font-size: 16px;
  margin: 10px 10px;
  font-weight: bold;
  font-family: serif;
  text-align: center;
}

.profile-card-home p {
  font-size: 14px;
  color: #ffffff;
  margin: 5px 0 0 0;
  font-family: serif;
  text-align: center;
}
.profile-card p {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0 0;
  font-family: serif;
  text-align: center;
}

.profile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.about-section-home {
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.8;
  text-align: justify;
  padding-left: 10%;
  padding-right: 10%;
}

.about-section-home h2 {
  border-bottom: solid 3px #2291ff;
  width: 475px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-section-home p {
  margin-bottom: 10px;
}

.about-section {
  max-width: 100%;
  padding: 0px 10% 00px 10%;
  line-height: 1.8;
  text-align: justify;
}

.about-section h2 {
  margin-bottom: 10px;
}

.about-section p {
  margin-bottom: 10px;
}

.about-section ul {
  margin-bottom: 15px;
}

.about-section li {
  margin-bottom: 10px;
}

.about-section a {
  color: blue;
  text-decoration: none;
}

.about-section a:hover {
  text-decoration: underline;
}

.p1 {
  text-align: center;
}

/*Banner*/
.edu-banner {
  max-width: 100%;
  width: 100%;
  background-color: #004385;
  color: white;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  flex-wrap: wrap;
  margin-top: 70px;
  box-sizing: border-box;
}

.banner-logos {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  min-width: 400px;
  justify-content: flex-start;
  margin-left: 80px;
}

.deped-logo {
  width: 150px;
  height: auto;
  max-width: 100%;
}

.ph-logo {
  width: 150px;
  height: auto;
  max-width: 100%;
}

.tayabas-logo {
  width: 150px;
  height: auto;
  max-width: 100%;
}

.banner-text {
  text-align: center;
  flex: 2;
  min-width: 350px;
  padding: 0 10px;
}

.banner-text h1 {
  font-size: clamp(18px, 3vw, 24px);
  margin: 5px 0;
  font-weight: bold;
}

.banner-text h2 {
  font-size: clamp(14px, 2vw, 16px);
  margin: 2px 0;
  font-weight: normal;
}

.banner-text h3 {
  font-size: clamp(12px, 1.8vw, 14px);
  margin: 2px 0;
  font-weight: normal;
}

.date-display {
  text-align: right;
  font-size: clamp(10px, 1.5vw, 12px);
  flex: 1;
  min-width: 200px;
}

.date-display p {
  margin: 2px 0;
  margin-right: 80px;
}

@media (max-width: 768px) {
  .edu-banner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .banner-logos {
    justify-content: center;
    margin-bottom: 10px;
  }

  .banner-text {
    margin: 10px 0;
  }

  .date-display {
    text-align: center;
    margin-top: 10px;
  }
}

a {
  text-decoration: none;
}

a button {
  all: unset;
  display: inline-block;
  padding: 10px 20px;
  background-color: green;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

a button:hover {
  background-color: darkgreen;
}

.purpose-container {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  border-radius: 16px;
  margin-bottom: 20px;
}
.card-purpose {
  text-align: center;
  width: 400px;
  height: 300px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  border-bottom: solid 2px #2291ff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-purpose:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(22, 64, 255, 0.15);
}
.card-purpose h2 {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 1rem;
}
.card-purpose p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.card-purpose i {
  font-size: 3rem;
  color: #b3b3b3;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 10px 25px 10px 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.step-1 {
  /* background-color: #004385; */
  background: linear-gradient(to right, #009bd3, #00bbff, #4fd0ff);
  width: 300px;
  height: 300px;
  position: relative;
  left: 0;
  margin-left: -13%;
  display: flex;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
.step-2 {
  background: linear-gradient(to left, #9747ff, #b379ff, #d7b8ff);
  width: 300px;
  height: 300px;
  position: relative;
  justify-self: end;
  margin-right: -13%;
  right: 0;
  display: flex;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
}
.step-3 {
  background: linear-gradient(to left, #04df71, #29ff94, #4fffa7);
  width: 300px;
  height: 300px;
  position: relative;
  left: 0;
  margin-left: -13%;
  display: flex;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}


.card-forms {
  text-align: center;
  width: 400px;
  height: 300px;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  border-bottom: solid 2px #2291ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-forms:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(22, 64, 255, 0.15);
}
.card-forms h2 {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 1rem;
}
.card-forms p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.card-forms i {
  font-size: 3rem;
  color: #b3b3b3;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 10px 25px 10px 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}
