body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;

  }
.main-container{
    display: flex;
    flex-direction: column;
}
  /* Top Navigation Bar */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #aacee8, #79d3c7);
    padding: 12px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 22px;
    font-weight: bold;
    color: #004d84;
    text-decoration: none;
    flex: 1;
  }

  .nav-center,
  .nav-right {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  .nav-center {
    flex: 2;
    justify-content: center;
  }

  .nav-right {
    flex: 1;
    justify-content: flex-end;
  }

  .navbar li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .navbar li a:hover {
    color: #0077cc;
  }

  .menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #0077cc;
  }

  

  /* Banner Section */
  .banner {
    background: linear-gradient(to right, #0077cc, #00bfa5);
    color: white;
    padding: 80px 20px;
    text-align: center;
    height: 500px;
    position: relative;
    overflow: hidden;
  }

  .banner-btn{
    background-color: #ffffff;
    color: #0077cc;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .banner-btn:hover{
    background-color: #e0f7fa;

  }

  .banner h1 {
    font-size: 78px;
    margin-bottom: 20px;
    opacity: 0;
  }
  

  .banner p {
    font-size: 40px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner .cta-button {
    background-color: #ffffff;
    color: #0077cc;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .banner .cta-button:hover {
    background-color: #e0f7fa;
  }
  .banner-animation{
    position: relative;
    text-align: left;
    width:100%;
    height: 200px;
    overflow: hidden;
  }
  .banner-animation h2, .banner-animation h3 {
  position: absolute;
  right: -100%;   /* start off-screen to the right */
  animation-fill-mode: forwards;
}

/* Animation keyframes */
#text1 { top: 40px; }
#text2 { top: 100px; }

@keyframes slideAcross {
  from { left: 100%; opacity: 1; }
  to   { left: 50px; opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

  /* Intro Section */
  .intro-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
    overflow: hidden;
  }
  .intro {
    padding: 30px 50px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 40%;
    
  }

  .intro h2 {
    font-size:30px;
    color: #0077cc;
    margin-bottom: 20px;
  }

  .intro p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
  }

  .registration-steps {
  background-color: #f9f9f9;
  border-left: 5px solid #4CAF50;
  padding: 20px;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.registration-steps h2 {
  margin-bottom: 15px;
  color: #333;
}

.step-list {
  list-style: none;
  padding-left: 0;
}

.step-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.step-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4CAF50;
}

.final-step {
  margin-top: 20px;
  font-size: 1.1em;
  color: #2E7D32;
}

.onboarding-steps {
  max-width: 800px;
  margin: 30px auto;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 100px;
}

.steps-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #0077cc;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.step-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #222;
}

.step-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.final-note {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
  color:#0077cc;
}

.promo-banner{
  background-color: #0077cc;
  color: white;
  padding: 20px;
  text-align: center;
  height: 250px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.promo-banner h1 {
  font-size: 50px;
  padding-bottom: 20px;
}
.promo-banner h2 {
  font-size: 30px;
  padding-bottom: 10px;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}


@media (max-width: 768px) {
    .menu-toggle {
      display: block;
      margin-left: auto;
    }

    .nav-center,
    .nav-right {
      flex-direction: column;
      width: 100%;
      display: none;
      margin-top: 10px;
    }

    .nav-center.active,
    .nav-right.active {
      display: flex;
    }

    .navbar li {
      padding: 8px 0;
    }
    .intro {
      max-width: 80%;
    }
  }
  @media (max-width: 480px) {
    .into {
      max-width: 100%;
    }
  }