/* style.css */

/* Universal Reset & Font */
* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif !important;
}

	html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #ffffff;
      color: #003366;
    }

    section {
      padding: 0rem 15px;
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    section p {
      margin: 0 0 0.5rem 0;
    }

    section:last-of-type {
      margin-bottom: 0;
    }

    h2 {
      color: #0091EA;
      position: relative;
      display: inline-block;
      margin-bottom: 0.5rem;
    }

    h2::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      background-color: #0091EA;
      left: 0;
      bottom: -10px;
      animation: growLine 1s ease-in-out forwards;
    }

    @keyframes growLine {
      from { width: 0; }
      to { width: 50%; }
    }

    blockquote {
      font-family: inherit;
      font-style: italic;
      color: #333;
      margin: 0 auto;
      max-width: 800px;
    }

    ul {
      list-style-type: disc;
      padding-left: 1.5rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 400px;
    }

    input, textarea, button {
      padding: 0.5rem;
      font-size: 1rem;
    }

    button {
      background-color: #0091EA;
      color: white;
      border: none;
      cursor: pointer;
    }

    button:hover {
      background-color: #0077c2;
    }

    footer {
	  width: 100%;
	  background-color: #0091EA;
	  color: white;
	  text-align: center;
	  padding: 0.5rem;
	  margin-top: 2rem;
	}


    footer a {
      color: #e0f7fa;
      margin: 0 0.5rem;
      text-decoration: none;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 1rem;
    }

    nav ul li {
      position: relative;
    }

    nav ul li ul {
      position: absolute;
      top: 100%;
      left: 0;
      background: #0077c2;
      display: none;
      flex-direction: column; 
      padding: 0.5rem;
      min-width: 180px;
      z-index: 999;
    }

    nav ul li:hover > ul {
      display: flex;
    }

    nav ul li ul li a {
      color: white;
      padding: 0.25rem 0.5rem;
      text-decoration: none;
    }

    nav ul li ul li a:hover {
      background-color: #005fa3;
    }

    nav ul.main-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 1rem;
    }

    nav ul.main-menu li {
      position: relative;
    }

    nav ul.main-menu li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 0.5rem;
      display: block;
    }

    nav ul.main-menu li a:hover {
      text-decoration: underline;
    }

    nav ul.main-menu li ul.submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #0077c2;
      padding: 0.5rem 0;
      min-width: 200px;
      z-index: 1000;
    }

    nav ul.main-menu li ul.submenu li a {
      padding: 0.5rem 1rem;
      color: white;
      display: block;
      white-space: nowrap;
    }

    nav ul.main-menu li ul.submenu li a:hover {
      background-color: #005fa3;
    }

    nav ul.main-menu li.has-submenu:hover ul.submenu {
      display: block;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #0091EA;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .branding {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .branding img {
      height: 50px;
      width: 85px;
    }

    .logo-title {
      font-size: 1.8rem;
      font-weight: bold;
      white-space: nowrap;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }
	.hero-paragraph {
  font-size: 1.1rem;
  margin: auto;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

form input:focus,
form textarea:focus {
  border-color: #0091EA;
  box-shadow: 0 0 0 2px rgba(0, 145, 234, 0.15);
  outline: none;
}

form button {
  background-color: #0091EA;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}

form button:hover {
  background-color: #0077c2;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.inter-font {
  font-family: 'Inter', sans-serif !important;
}