/* General Styles */
body {
  font-family: 'Archivo Black', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #2D65AF;
  color: #000670;
  scroll-behavior: smooth;
}

/* Header Styles */
header {
  position: relative;
  background-color: #000670;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  background-image: url('logo.png'); /* Logo as background */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1500px auto;
  background-blend-mode: luminosity; /* Makes logo soft but visible */
}

/* Dark overlay to enhance text readability */
header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 6, 112, 0.7); /* semi-transparent overlay */
  z-index: 0;
}

header * {
  position: relative;
  z-index: 1;
}

/* Header Title */
header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

/* Homepage Grid */
.home-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

/* Grid Boxes */
.grid-box {
  background-color: white;
  color: #000670;
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  height: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: default;
}

.grid-box:hover {
  transform: translateY(-5px);
}

.grid-box h2 {
  color: #2D65AF;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #2D65AF;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Particles Background */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .grid-box {
    width: 90%;
    height: auto;
  }

  header h1 {
    font-size: 2.2rem;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    width: 80%;
    text-align: center;
  }
}
.test-box {
  background-color: rgba(255, 255, 255, 0.95);
  color: #000670;
  border-radius: 12px;
  margin: 1rem auto;
  padding: 1.5rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.test-box:hover {
  transform: translateY(-5px);
}

.test-box.ap h3,
.test-box.sat h3,
.test-box.act h3 {
  color: #000670;
}

.test-box ul {
  padding-left: 1.2rem;
}

.test-box ul li {
  margin-bottom: 0.5rem;
}

.test-box ul li a {
  color: #2D65AF;
  text-decoration: underline;
}

.test-box ul li a:hover {
  color: #000670;
}
.page-title {
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
  color: white;
}
.form-section {
  background-color: white;
  padding: 2rem;
  margin: 2rem auto;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-top: 1rem;
  color: #000670;
  font-weight: bold;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  margin-top: 1.5rem;
  background-color: #2D65AF;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Navigation */
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
  transition: all 0.4s ease-in-out;
}

header nav a {
  font-family: 'Archivo Black', sans-serif;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  background-color: #2D65AF;
  border-radius: 8px;
  font-size: 1rem;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

header nav a:hover {
  background-color: #FED43D;
  color: #000670;
  transform: translateY(-3px) scale(1.05);
}

header nav a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: #FED43D;
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.vision-mission {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 50px 20px;
}

.content-box {
  background-color: white;
  color: #000670;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  text-align: center;
}

.content-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2D65AF;
}

.content-box p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.content-box {
  background-color: white;
  color: #000670;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover effect */
}

.content-box:hover {
  transform: translateY(-10px); /* moves box up */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); /* stronger shadow on hover */
}

.hero {
  position: relative;
  height: 70vh; /* adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: linear-gradient(
      rgba(45, 101, 175, 0.8), 
      rgba(45, 101, 175, 0.8)
    ),
    url("images.jpg") center/cover no-repeat; /* replace with your image */
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.2);
}
.form-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  width: 80%;
  max-width: 800px;
  transition: transform 0.3s ease;
}

.form-box:hover {
  transform: translateY(-10px);
}
