* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f9fb;
      color: #002b40;
      line-height: 1.6;
    }

    header {
      background: #fff;
      padding: 20px 40px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 90px;
      width: 300px;
      opacity: 0;
      animation: fadeInScale 0.8s ease forwards;
    }

    .navbar ul {
      display: flex;
      list-style: none;
      gap: 30px;
      position: relative;
    }

    .navbar a {
      text-decoration: none;
      color:#004A99;
      font-weight: 600;
      padding: 10px 15px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .navbar a:hover {
      color: #ffffff;
      background-color: #009639;
      box-shadow: 0 4px 10px rgba(0, 153, 204, 0.2);
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      background: white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 10px;
      top: 40px;
      left: 0;
      min-width: 150px;
      border-radius: 8px;
      z-index: 999;
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 16px;
      color: black;
      text-decoration: none;
    }

    .dropdown-menu a:hover {
      background-color: #f0f0f0;
      color: #f0f0f0;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown > a::after {
      content: " ▼";
      font-size: 0.6em;
      color:#004A99;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: #002b40;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }
    /* Show dropdown on hover */
.navbar ul li:hover .dropdown-menu {
  display: block;
}

/* Prevent it from disappearing when hovering on the dropdown itself */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 150px;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color:#004A99;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color:#009639;
}

    .welcome-popup {
      position: fixed;
      top: 30px;
      left: 50%;
      transform: translateX(-50%) scale(0.6);
      background: linear-gradient(to right, #e6ecf1, #f3f6f7);
      color: #130000;
      padding: 16px 30px;
      border-radius: 12px;
      font-size: 1.1rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
      opacity: 0;
      z-index: 9999;
      animation: popInTop 7s ease-out forwards, fadeOutTop 6s ease-in 5s forwards;
    }

    @keyframes popInTop {
      0% {
        transform: translateX(-50%) translateY(-80px) scale(0.3);
        opacity: 0.5;
      }
      60% {
        transform: translateX(-50%) translateY(10px) scale(1.05);
        opacity: 1;
      }
      80% {
        transform: translateX(-50%) translateY(-5px) scale(0.95);
      }
      100% {
        transform: translateX(-50%) translateY(0) scale(1);
      }
    }

    @keyframes fadeOutTop {
      to {
        opacity: 0;
        transform: translateX(-50%) translateY(-80px) scale(0.6);
      }
    }

    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.8);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes popIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes fadeInSlideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  opacity: 0;
  animation: popIn 0.6s ease forwards;
}

.card:hover {
  transform: scale(1.12); /* Enlarge the box */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  border: 2px solid #000000;
  background-color: #f0fbff;
  z-index: 2;
}


.card:nth-of-type(1):hover {
  border-color: #000000;
}
.card:nth-of-type(2):hover {
  border-color: #000000;
}
.card:nth-of-type(3):hover {
  border-color: #000000;
}
.card:nth-of-type(4):hover {
  border-color: #000000;
}
.card:nth-of-type(5):hover {
  border-color: #000000;
}
.card:nth-of-type(6):hover {
  border-color: #000000;
}

    .gallery-images {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-images img {
      width: 100%;
      height: 400px;
      border-radius: 8px;
      object-fit: cover;
      background: #ffffff;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      opacity: 0;
      animation: fadeInSlideUp 0.6s ease forwards;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-images img:nth-of-type(1) { animation-delay: 0.2s; }
    .gallery-images img:nth-of-type(2) { animation-delay: 0.4s; }
    .gallery-images img:nth-of-type(3) { animation-delay: 0.6s; }

    .gallery-images img:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    @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: #002b40;
        font-weight: 700;
      }
      .navbar ul li a:hover {
        background-color:#009639;
        color:#f0f0f0;
      }
      .dropdown .dropdown-menu {
        display: none !important;
        position: static;
        background: #f4f9fb;
        box-shadow: none;
        padding: 10px 0;
        max-width: 100%;
        border-radius: 0;
      }
      .dropdown.active .dropdown-menu {
        display: block !important;
      }
      .dropdown:hover .dropdown-menu,
      .navbar ul li:hover .dropdown-menu {
        display: none ;
      }
      .dropdown > a {
        position: relative;
     
      }
      .dropdown > a::after {
        content: "▶";
        position: absolute;
        right: 20px;
        font-size: 0.8rem;
        color:black;
      }
      .dropdown.active > a::after {
        content: "▼";
      }
      .dropdown-menu a {
        padding-left: 40px;
        font-size: 1rem;
        color:#f0f0f0;
        font-weight: 700;
      }
      .dropdown-menu a:hover {
        background-color:#009639;
        color:#f0f0f0;
      }
      .logo img {
        height: 50px;
        width: 180px;
      }
      .dropdown-toggle {
        cursor: pointer;
      }
      .header-content {
        flex-wrap: wrap;
      }
      header {
        padding: 10px 20px;
      }
      .gallery-images img {
        height: 240px;
        max-width: 95%;
      }
    }

    .hero {
      text-align: center;
      padding: 40px 20px;
      background: #ffffff;
    }

    .hero-text {
      background: #006699;
      color: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-text:hover {
      transform: translateY(-10px);
    }

    .info-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 50px 20px;
      background-color: #eaf5f7;  
    }

    .card {
      background: #fff;
     
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      width: 280px;
      transition: transform 0.3s ease;
      
    }

    .card:hover {
      transform: translateY(-10px);
    }

    .gallery {
      padding: 50px 20px;
      text-align: center;
    }

    .footer-content {
      background-color: #ffffff;
      color: #004A99;
      padding: 40px 20px;
      text-align: center;
    }

    .footer-content a {
      color: #006699;
      text-decoration: none;
    }

    .footer-content a:hover {
      text-decoration: underline;
    }

    footer {
      background-color: #002b40;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
    }
      button:hover {
      background-color: #009639;
      transform: scale(1.05);
    }       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);
    }.footer-content p a {
  color: #0099cc;
}
.card h3 {
  color: #004466;
  margin-bottom: 15px;
}
.footer-content p a {
  color: #0099cc;
}