 /* ===== Page Fade-in Animation ===== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f9fb;
      color: #004466;
      line-height: 1.6;
      width: 100%;
      overflow-x: hidden;
    }

    header {
      background: #fff;
      padding: 20px 40px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 90px;
      width: 300px;
    }

    .navbar ul {
      display: flex;
      list-style: none;
      gap: 30px;
      position: relative;
    }

    .navbar a {
      text-decoration: none;
      color: #004466;
      font-weight: 600;
      padding: 10px 15px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .navbar a:hover,
    .navbar a:focus {
      color: #ffffff;
      background-color: #009639;
      box-shadow: 0 4px 10px rgba(0, 153, 204, 0.2);
      outline: none;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 10px 0;
      min-width: 160px;
      border-radius: 8px;
      z-index: 999;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 20px;
      color: #004466;
      text-decoration: none;
      font-weight: 500;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus {
      background-color: #009639;
      color: #e0f0ff;
      outline: none;
    }

    .dropdown > a::after {
      content: " ▼";
      font-size: 0.6em;
      color: #555;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: #004466;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }

    .form-wrapper {
      display: flex;
      gap: 40px;
      max-width: 1200px;
      padding: 20px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .info-text {
      flex: 1 1 55%;
      animation: slideInLeft 1s ease-in-out;
    }

    .info-text h2 {
      margin-top: 0;
      margin-bottom: 20px;
      font-weight: 700;
      font-size: 32px;
      color: #004466;
      text-align: left;
    }

    .info-text h3 {
      font-weight: 500;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .info-text h4 {
      margin-bottom: 6px;
      color:#004466;
    }

    .info-text p {
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 15px;
      line-height: 1.5;
    }

    .info-text a {
      color: #004466;
      text-decoration: none;
      font-weight: 600;
    }

    .info-text a:hover {
      text-decoration: underline;
    }

    .form-container {
      flex: 0 0 450px;
      padding-left: 20px;
      animation: slideInRight 1s ease-in-out;
    }

    .form-container h2 {
      margin-top: 0;
      margin-bottom: 25px;
      color: #333;
      font-weight: 700;
      font-size: 28px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      font-weight: bold;
      color: #555;
      margin-bottom: 8px;
    }

    input,
    textarea {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 10px;
      background: #fefefe;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
      transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
      resize: vertical;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: #009639;
      box-shadow: 0 0 12px rgba(0,123,255,0.2);
    }

    textarea {
      min-height: 100px;
    }

    button {
      width: 100%;
      padding: 14px;
      background-color: #007BFF;
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }

    button:hover {
      background-color:#009639;
      transform: scale(1.05);
    }

    .map-container {
      width: 80%;
      margin: 40px auto 0 auto;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .footer {
      text-align: center;
      padding: 8px 0;
      margin-top: 20px;
      color: #ffffff;
      background-color: #002b40;
      font-size: 14px;
      border-top: 1px solid #ddd;
      width: 100%;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: #0077b5;
      font-weight: 600;
      transition: color 0.3s;
    }

    .social-link:hover {
      color: #005582;
    }

    .social-icon {
      width: 24px;
      height: 24px;
      margin-right: 8px;
      transition: transform 0.3s ease;
    }

    .social-link:hover .social-icon {
      transform: scale(1.2);
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes slideInLeft {
      from {
        transform: translateX(-100px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @media (max-width: 600px) {
      .menu-toggle {
        display: block;
      }

      .navbar ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: #ffffff;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        padding: 20px 0;
        opacity: 0;
        transform: translateX(-100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .navbar ul.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
      }

      .navbar ul li {
        width: 100%;
        text-align: left;
        padding-left: 20px;
      }

      .navbar ul li a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        color: #004466;
        font-weight: 700;
      }

      .navbar ul li a:hover {
        background-color:#009639;
        color:#f4f9fb;
      }

      .dropdown .dropdown-menu {
        display: none !important;
        position: static;
        background: #f4f9fb;
        box-shadow: none;
        padding: 10px 0;
        max-width: 100%;
        border-radius: 0;
        opacity: 1;
        transform: none;
      }

      .dropdown.active .dropdown-menu {
        display: block !important;
      }

      .dropdown:hover .dropdown-menu,
      .navbar ul li:hover .dropdown-menu {
        display: none !important;
      }

      .dropdown > a {
        position: relative;
      }

      .dropdown > a::after {
        content: "▶";
        position: absolute;
        right: 20px;
        font-size: 0.8rem;
        color: #555;
      }

      .dropdown.active > a::after {
        content: "▼";
      }

      .dropdown-menu a {
        padding-left: 40px;
        font-size: 1rem;
        color: #004466;
        font-weight: 700;
      }

      .dropdown-menu a:hover {
        background-color: #e0e0e0;
        color: #009639;
      }
         .logo img {
        height: 50px;
        width: 150px;
      }
      

      .header-content {
        flex-wrap: wrap;
      }

      header {
        padding: 10px 20px;
      }

      .form-wrapper {
        flex-direction: column;
        padding: 10px;
      }

      .info-text {
        flex: 1 1 auto;
        width: 98%;
      }

      .form-container {
        flex: 1 1 auto;
        width: 98%;
        padding-left: 0;
      }

      .map-container {
        width: 98%;
      }

      .info-text h2 {
        font-size: 24px;
        color: #004466;
      }

      .form-container h2 {
        font-size: 22px;
      }

      input,
      textarea,
      button {
        font-size: 14px;
      }
    }