/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Charlevoix Pro', 'Poppins', Tahoma, sans-serif;
  line-height: 1.6;
  background-color: #fefcff;
  color: #020202;
  font-size: 120%;
  font-weight: bold;
}

h1, h2, h3, h4, h5 {
  font-family: Georgia, serif;
  font-weight: bold;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: #0F4D92; /* Yale Blue */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Drop shadow */
  z-index: 1000;
  padding: 10px 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 50px;
  object-fit: contain;
}

.nav-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.nav-title h1 {
  color: #fff;
  margin: 0;
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffff33; /* Neon yellow */
}

/* Hero Section */
.hero-header {
  height: 50vh;
  background: url("images/images-31.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-box {
  background-color: rgba(0, 51, 102, 0.9);
  padding: 2em 3em;
  border-radius: 12px;
  box-shadow: 0 0 20px 5px #00ffff, 0 4px 10px rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
}

.hero-content h2 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 0.9em;
  color: #cceeff;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* About Section */
.about-section {
  padding: 6em 3em;
  background-color: #f7f9fc;
  color: #333;
  font-family: 'Helvetica Neue', sans-serif;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7em;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.about-content {
  flex: 1 1 55%;
  max-width: 900px;
  line-height: 1.5;
  font-size: 1rem;
}

.about-heading {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  color: #0F4D92;
  margin-bottom: 1em;
  font-weight: bold;
}

.about-intro {
  font-size: 1.25rem;
  font-weight: 500;
}

.about-subheading {
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  color: #444;
  margin-top: 5px;
  margin-bottom: 1em;
}

.about-benefits {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 2em;
}

.about-benefits li {
  margin-bottom: 5px;
  font-size: 1.25rem;
}

.about-closing {
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 1em;
}

.about-image {
  flex: 1 1 40%;
  min-width: 280px;
  max-height: 500px;
  height: auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Button */
.btn {
  background-color: #0000a0;
  color: #fff;
  padding: 1.2em 2.5em;
  font-size: 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.2em;
}

.btn:hover {
  background-color: #000080;
}

/* Timeline Section */
.timeline-wrapper {
  background: url("images/images-31.png") center/cover no-repeat;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  padding: 4em 2em;
  text-align: center;
}

.timeline-wrapper h2 {
  margin-bottom: 2em;
  color: #0000a0;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1em;
  border-radius: 8px;
  display: inline-block;
}

.timeline-step {
  max-width: 700px;
  margin: 1em auto;
  padding: 1em;
  border-left: 4px solid #0000a0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: -0.8em;
  left: -1.2em;
  background: #00bfff;
  color: #fff;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  font-weight: bold;
}

.timeline-contact {
  margin-top: 2em;
  background-color: #0000a0;
  color: #fff;
  padding: 1em;
  border-radius: 5px;
}

.timeline-contact a {
  color: #fff;
  text-decoration: underline;
}

/* Reviewer Section */
.reviewer {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.reviewer-image {
  flex: 3;
  background-image: url("images/banner.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.reviewer-content {
  flex: 1;
  padding: 7em 3em;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  font-family: 'Helvetica Neue', sans-serif;
  gap: 1em;
}

.reviewer-title {
  font-size: 2.2rem;
  color: #555;
  font-family: 'Georgia', serif;
  margin: 0;
}

.reviewer-subtitle {
  font-size: 1.4rem;
  color: #666;
  font-family: 'Georgia', serif;
  margin-top: 0.3em;
  margin-bottom: 1em;
}

.reviewer-list {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 0;
  border: 2px solid #007BFF;
  border-radius: 6px;
  padding: 1em;
}

.reviewer-list li {
  margin-bottom: 0.75em;
  font-size: 1rem;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2em;
}

.footer .socials,
.footer .social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
}

.footer .socials a,
.footer .social-icons a {
  color: #00bfff;
  text-decoration: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.3s ease;
}

.footer .socials a:hover,
.footer .social-icons a:hover {
  color: #ffff33;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .hero-content-box {
    padding: 1.5em 2em;
  }

  .reviewer-content {
    padding: 5em 2em;
  }
}

@media (max-width: 992px) {
  .nav-title h1 {
    font-size: 1.2rem;
  }

  .hero-content h2 {
    font-size: 1.3em;
  }

  .hero-content p {
    font-size: 0.85em;
  }

  .reviewer {
    flex-direction: column;
  }

  .reviewer-image {
    min-height: 50vh;
    background-size: cover;
  }

  .reviewer-content {
    padding: 4em 2em;
  }

  .about-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-title {
    position: static;
    transform: none;
    text-align: left;
    margin-top: 0.5em;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 0.5em;
  }

  .hero-header {
    height: 40vh;
  }

  .hero-content-box {
    padding: 1.5em;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
  }

  .about-image {
    height: 300px;
  }

  .timeline-wrapper h2 {
    font-size: 1.2rem;
  }

  .reviewer-title {
    font-size: 1.5rem;
  }

  .reviewer-subtitle {
    font-size: 1.1rem;
  }

  .btn {
    padding: 1em 2em;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    max-width: 150px;
  }

  .hero-content-box {
    padding: 1em;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .about-image {
    height: 220px;
  }

  .timeline-step {
    padding: 0.8em;
  }

  .step-number {
    width: 2em;
    height: 2em;
    line-height: 2em;
    font-size: 0.9em;
  }

  .reviewer-list li {
    font-size: 0.9rem;
  }

  .footer {
    padding: 1.5em;
    font-size: 0.9rem;
  }

  .footer .socials a,
  .footer .social-icons a {
    font-size: 1em;
  }
}
