/* -------- General Page Style -------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #cfd9e6, #9fb9dd);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* -------- Header -------- */
header {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #87CEFA, #1E90FF);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* -------- Navigation -------- */
nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-size: 18px;
  font-weight: bold;
}

nav a:hover {
  color: yellow;
}

nav a.active {
  border-bottom: 3px solid yellow;
  padding-bottom: 5px;
}

/* -------- Main Layout -------- */
main {
  flex: 1;
  padding: 40px 20px;
  padding-top: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* -------- Hero -------- */
.hero {
  max-width: 900px;
  width: 90%;
  text-align: center;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 36px;
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
}

/* -------- Contact Box -------- */
section {
  background: white;
  padding: 25px;
  border-radius: 15px;
  max-width: 1100px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
}

section h2 {
  margin-bottom: 5px;
}

section p {
  margin-bottom: 20px;
  font-size: 16px;
}

.cta-text {
  margin-top: 30px;
  font-weight: bold;
}

/* -------- Footer -------- */
footer {
  color: white;
  text-align: center;
  padding: 20px;
  background: #1E90FF;;

    .social-links a {
  margin: 0 12px;
  color: yellow;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}
}

/* -------- Fade Animation -------- */
.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------- Responsive -------- */
@media (max-width: 800px) {
  nav a {
    margin: 0 10px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
