/* General Styles */ 
  .logo {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    
}
.logo h1 {
    text-align: center;
    color: #eee;
    margin-left: 15px;
}

.logo img {
    width: 50px;
    border-radius: 10px;
    margin-left: 10px;
}

.hero {
    position: relative;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: 300px;
}
.hero-button {
    position: absolute;
    bottom: 20px;
    left: 80%;
    transform: translateX(-50%);
    background-color: #004d66;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.main {
    margin-bottom: 100px;
    width: 100%;
}

/* SOcial Icon */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .social-icons a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  .social-icons a:hover {
    color: #ddd;
  }

/* Footer */
footer {
    background-color: #004d66;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  footer img {
    width: 30px;
    height: 20px;
  }

  #lastModified {
    color: yellowgreen;
  }

  .thankyou-container {
    max-width: 800px;
    margin: 30px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 150px;
  }
  
  .thankyou-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #0056a6;
    font-weight: bold;
  }
  
  .thankyou-container ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .thankyou-container ul li {
    margin: 10px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
  }
  
  .thankyou-container ul li strong {
    color: #0056a6;
  }
  
  /* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Modal Title */
.modal-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #0056a6;
}

/* Modal Paragraph */
.modal-content p {
  margin: 15px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close:hover {
  color: #f00;
}

/*Mobile Css*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #004d66;
    color: #fff;
    padding: 10px 20px;
    display: block;
    justify-content: space-between;
    align-items: center;
}

#menu {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0px;
    color: #eee;
    margin-left: 15px;
    justify-content: right;
}

#menu::before {
    content: "☰";
}

nav {
    width: 100%;
}

.nav-links a.active {
    color: yellow;
    font-weight: bold;
    border-bottom: 2px solid yellow;
}

.navigation {
    list-style: none;
    margin: 0 auto;
    max-width: 760px;
    width: 100%;
}

.navigation li {
    display: none;
}

.navigation a {
    display: block;
    padding: 0.75rem;
    text-align: left;
    text-decoration: none;
    color: #eee;
    font-weight: 200;
    transition: 0.5s;
    font-size: clamp(1rem, 2vmin, 1.5rem);
}

.navigation a:hover, navigation a:active {
    color: white;
    background-color: black;
}

.show li {
    display: block;
}

#menu.show::before {
    content: "x";
}

/*Larger View Css*/
@media (min-width: 900px) {

    /* Header */
    header {
        background-color: #004d66;
        color: #fff;
        padding: 10px 20px;
        display: block;
        justify-content: space-between;
        align-items: center;
    }
    header .logo {
        display: block;
        float: left;
        align-items: center;
    }

    header .logo h1 {
        float: right;
    }
    header .logo img {
        height: 50px;
        margin-right: 10px;
    }
    header nav ul {
        list-style-type: none;
        gap: 15px;
        justify-content: right;
    }
    header nav ul li a {
        color: #fff;
        text-decoration: none;
    }
    .navigation {
        display: flex;
    }

    .navigation li {
        display: flex;
        justify-content: right;
        float: right;
    }

    .navigation a {
        text-align: right;
    }

    #menu {
		display: none; 
	}

    nav {
        width: 100%;
    }

    .hero {
        position: relative;
        text-align: center;
        margin: 0px 50px 10px;
    }

}
  
  /* Main Content */
  main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  h2 {
    color: #0056a6;
  }
  
  form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  label {
    display: block;
    margin: 10px 0 5px;
  }
  
  input, textarea, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  textarea {
    height: 80px;
  }
  
  input[type="submit"] {
    background: #0056a6;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  input[type="submit"]:hover {
    background: #004080;
  }
  
  .membership-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0px 150px;
  }
  
  .membership-card {
    flex: 1 1 calc(45% - 20px);
    background: #ffffff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .membership-card:hover {
    transform: scale(1.05);
    background-color: #f0f8ff;
  }
  
  .membership-card h3 {
    margin: 10px 0;
  }
  
  .membership-card button {
    background: #0056a6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .membership-card button:hover {
    background: #004080;
  }
  
  /* Modals */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .modal-content h3 {
    color: #0056a6;
  }
  
  .modal-content ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }
  
  .close:hover {
    color: #f00;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .membership-cards {
      flex-direction: column;
    }
  
    .membership-card {
      flex: 1 1 100%;
    }
  }
  
  /* Accessibility */
  input, textarea, select, button {
    font-size: 1rem;
  }
  
  input:focus, textarea:focus, select:focus, button:focus {
    outline: 2px solid #0056a6;
    outline-offset: 2px;
  }
  
  button {
    display: inline-block;
  }
  
  .modal[aria-hidden="false"] {
    display: flex;
  }
  
  