
    /* Global styles */
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
      background-color: #FFFFFF;
      line-height: 1.6;
    }

    /* Navigation Menu */
    nav {
      background-color: #0099a8;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 15px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #e6f7f9;
    }

    /* Header section */
    header {
      text-align: center;
      background-color: #fff;
      padding: 20px 0 30px;
    }

    header img {
      max-width: 200px;
      width: 40%;
      height: auto;
      animation: fadeInDown 1.5s ease;
    }

.ulList {
    margin-left: 100px;
    background-color: transparent;
    text-align: left;
    margin-top: 5px;
}

@media (max-width: 480px) {
    .ulList {
        margin-left: 0 !important;
        padding-left: 15px;
        background-color: transparent; /* Debug visual */
    }

    }
    
    /* Hero Banner */
    .hero {
      width: 100%;
      height: 60vh; /* adjustable height */
      overflow: hidden;
      position: relative;
	 margin-bottom: 0px;
    }

    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      animation: fadeInUp 2s ease;
    }

    /* Main Section */
    section {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
      text-align: center;
    }

    section h2 {
      font-size: 2em;
      color: #0099a8;
      margin-bottom: 15px;
    }

    section p {
      font-size: 1.0em;
    }

	.paragrahnav {
      max-width: 800px; /* optional: makes text more readable */
      margin: 0 auto;   /* centers the paragraph block */
      line-height: 1.6; /* improves readability */
		text-align: left;
    }


	.fredh2{background-color: transparent;
		margin-top: 1px;
		}
		

    /* Contact Section */
    .contact {
      background: #e6f7f9;
      padding: 60px 20px;
      border-radius: 15px;
      margin-top: 50px;
    }

    .contact h2 {
      margin-bottom: 20px;
      color: #0099a8;
    }

    .contact form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact input,
    .contact textarea,
    .contact button {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1em;
    }

    .contact button {
      background-color: #0099a8;
      color: white;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .contact button:hover {
      background-color: #007f8a;
    }

    /* Footer */
    footer {
      background: #0099a8;
      color: white;
      text-align: center;
      padding: 25px 15px;
      margin-top: 10px;
    }

    /* Animations */
    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* ✅ Responsive Adjustments */
    @media (max-width: 900px) {
      .hero {
        height: 50vh;
      }

      header img {
        width: 50%;
      }
    }

    @media (max-width: 600px) {
      nav {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
      }

      nav a {
        font-size: 1em;
      }

      header img {
        width: 70%;
      }

  
    
		.left-align {
  text-align: left;
}
		

    }
