body {
  margin: 0;
  padding: 20px;
  font-family: "Poppins", Arial, sans-serif;
  color: #222;
  background: linear-gradient(
      to right,
      rgba(148, 162, 207, 0.85),
      rgba(234, 200, 200, 0.85)
    ),
    url("academy.jpeg") no-repeat center center fixed;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* header style */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 36px auto;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20, 20, 40, 0.12);
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

header h1 {
  color: #153e75;
  font-family: "Comfortaa", cursive;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 35px;
  text-shadow: rgb(230, 102, 102) 0.2px 0 15px;
}

header p {
  margin: 0;
  color: #2b2b2b;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 900px;
}

/* imp line */
header p strong {
  color: #0b3d91;
}
header:hover {
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid #1e3a8a;
}
/* footer style */
footer {
  justify-content: center;
  text-align: center;
  padding: 10px;
  background-color: rgba(197, 202, 230, 0.88);
  border-top: 1px solid #b0a7a7;
  margin-top: 180px;
  margin-left: -20px;
  margin-right: -20px;
  font-size: 1rem;
  color: #060606;
}
footer p {
  margin: 5px 0;
}
.footer-copy {
  font-weight: bold;
}
.footer-contact {
  font-style: italic;
}
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 36px auto;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20, 20, 40, 0.12);
  text-align: center;
}
section h2 {
  font-size: 2rem;
  color: #1e3a8a;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: #f7f8f598 0.2px 0 10px;
}

section p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.5;
}
.visit-box {
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid transparent;
  margin-top: 90px;
}
.visit-box:hover {
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid #1e3a8a;
}
