/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9fc;
  color: #133c55;
  line-height: 1.6;
}

/* Header and Logo */
header {
  background-color: #133c55;
  color: white;
  padding: 15px 10px;
  text-align: center;
}

.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-title img {
  height: 60px;
  max-width: 100%;
}

.logo-title h1 {
  font-size: 1.6rem;
  margin-top: 10px;
}

/* Nav Menu (no hamburger, always visible) */
nav {
  background-color: #386fa4;
  padding: 10px 0;
}

#nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

#nav-links li {
  margin: 5px 10px;
}

#nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 4px;
}

#nav-links a:hover {
  background-color: #2d5e90;
}


/* Registration Section */
.register-section {
  padding: 40px 20px;
}

.register-box {
  background: white;
  max-width: 600px;
  margin: auto;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.register-box h2 {
  margin-bottom: 25px;
  color: #133c55;
  text-align: center;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #133c55;
}

input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 1rem;
}

.submit-btn {
  background-color: #386fa4;
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #2e5d8a;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Footer */
footer {
  background-color: #133c55;
  color: white;
  padding: 20px 0px;
  text-align: center;
}

footer i {
    font-size: 1.5rem
  margin: 0 15px;
  font-size: 1.4rem;
}

footer a {
  color: white;
  
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
}

footer i:hover {
  color: #91e5f6;
  font-size: 1.5rem;
   margin: 0 15px;
}


/* Responsive Fixes */
@media screen and (max-width: 768px) {
  .logo-title h1 {
    font-size: 1.3rem;
  }

  .slider-container {
    width: 95%;
  }

  #nav-links a {
    font-size: 0.9rem;
    padding: 4px 6px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 15px;
    right: 15px;
  }
}

