@media (max-width: 768px) {
  .container {
  max-width: 100%; /* Adjust width for smaller screens */
  padding: 10px;
  }
  }

  html {
  scroll-behavior: smooth;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
  }

  header {
    text-align: center;
    padding: 20px;
    background-color: #007bff;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-1 {
    background-color: #0056b3;
    padding: 10px 0;
  }
  .nav-2{
    padding: 10px 0;
  }

  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    margin: 0 15px;
  }

  nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: white;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  .content-section {
    display: none;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    animation: slideIn 0.5s ease-in-out;
  }

  .content-section.active {
    display: block;
  }

  .image-container a {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
  }

  .image-container a:hover {
    background-color: #0056b3;
  }

  footer {
    text-align: center;
    padding: 15px;
    background-color: #343a40;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  #important-message {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #17a2b8;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }

  #important-message.hidden {
    opacity: 0;
    transform: translate(-50%, -60%);
    pointer-events: none;
  }

  #important-message button {
    margin-top: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
  }

  #important-message button:hover {
    background-color: #218838;
  }

  .image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('Main-Image.png') no-repeat center center/cover;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideIn {
    from {
      transform: translateY(-5px);
    }
    to {
      transform: translateX(0);
    }
  }
  
