.cover {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust the height of the cover */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../image/curriculaCover.jpg");
    background-size: cover; /* Ensure the image covers the full area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
  }

  .cover h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: lighter;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    padding: 15px 30px;
  }

  /* General Section Styling */
.wace-section {
  background-color: #183358; /* Dark Blue Background */
  color: #fff; /* White Text */
  padding: 40px 20px;
  display: flex;
}

/* Content Container */
.wace-container {
  max-width: 1200px;
  width: 80%;
  margin: auto;
  text-align: left;
  line-height: 1.6;
}

/* Logo and Title */
.wace-header {
  margin-bottom: 20px;
}

.wace-logo {
  width: 100%;
  max-width: 600px; /* Adjust logo size */
  margin-bottom: 20px;
}

/* Content Styling */
.wace-content h3 {
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

.wace-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

/* Button Styling */
.wace-button .btn {
  background-color: transparent; /* Yellow Button */
  color: #FFC72C; /* Dark Blue Text */
  padding: 10px 20px;
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #FFC72C;
  transition: all 0.1s ease-in-out;
  float: right;
}

.wace-button .btn:hover {
  background-color: #fff;
  color: #183358;
  border: 1px solid #fff;
}
/* education section */
.education-section {
  background-color: #183358; /* Dark Blue Background */
  color: #fff; /* White Text */
  padding: 50px 20px;
}

.education-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Title */
.main-title {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.highlight-title {
  color: #D6BE88; /* Gold Highlight */
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

/* Content Blocks */
.education-content .content-block {
  margin-bottom: 20px;
}

.education-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}
.education-content p {
  font-family: Arial, sans-serif;

}

.highlight-subtitle {
  color: #D6BE88; /* Gold Subtitles */
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

/* Benefits Section */
.education-benefits h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.education-benefits p {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* wace section */
/* WACE Section */
.requirement-section {
  background-color: #183358; /* Dark Blue Background */
  color: #fff; /* White Text */
  padding: 50px 20px;
}

.requirement-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Title Styling */
.requirement-title {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.highlight-title {
  color: #D6BE88; /* Gold Highlight */
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

/* Certificate Section */
.certificates {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap; /* Allow items to wrap */
}

.certificate-item {
  text-align: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-wrapper img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto; /* Center image horizontally */
  transition: transform 0.3s ease, filter 0.3s ease; /* Smooth zoom and dim transition */
}

.image-wrapper:hover img {
  transform: scale(1.1); /* Image zoom effect */
  filter: brightness(50%); /* Slight dim effect */
}

.hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  transform: translate(-50%, -50%);
  color: #FFC72C;
  padding: 10px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .hover-text {
  opacity: 1; /* Show text on hover */
}

.certificate-item p {
  margin-top: 10px;
  font-size: 32px;
  color: #D6BE88; /* Gold Text */
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

/* Explanation Section */
.requirement-details h3 {
  color: #D6BE88;
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.requirement-block {
  margin-bottom: 20px;
}

.highlight-subtitle {
  color: #D6BE88;
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.requirement-block p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Explanation Section */
.requirement-details h3 {
  color: #D6BE88; /* Gold Subtitles */
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.requirement-block {
  margin-bottom: 20px;
}

.highlight-subtitle {
  color: #D6BE88; /* Gold Subtitles */
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}

.requirement-block p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Scholarships Section */
.scholarships-section {
  background-color: #fff; /* White Background */
  padding: 40px 20px; /* Vertical and horizontal padding */
  text-align: center; /* Center-align all content */
  color: #333; /* Dark text for readability */
  font-family: Arial, sans-serif; /* Clean, modern font */
}

.scholarships-container {
  width: 80%;
  max-width: 1200px; /* Limit max width */
  margin: 0 auto; /* Center the container */
  line-height: 1.6; /* Better line spacing */
}

.scholarships-title {
  font-size: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000; /* Black title */
}

.title-underline {
  width: 40%;
  height: 3px;
  background-color: #D6BE88; /* Gold color underline */
  margin: 10px auto 20px; /* Center and add spacing */
}

.scholarships-text {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: justify;
  font-family: Arial, sans-serif; /* Clean, modern font */
  color: #333; /* Dark gray text */
}
@media (max-width: 800px) { 
/* General Section */
.wace-button .btn {
  float: none;
}

/* wace section */
.certificate-item {
  flex: 1 1 100%; /* Full width for each certificate */
  max-width: 100%; /* Ensure it occupies entire row */
  align-items: center;
  margin: 0 auto; /* Center horizontally */
}

}

  