@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      color: #333;
      background-color: #f8f9fa;
    }
    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content a:hover {
      background-color: #ddd;
    }
    header {
      background: #002855;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    header img {
      height: 50px;
    }

    nav {
      display: flex;
      gap: 1rem;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    /* Collapsible menu styles */
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    .menu {
      display: flex;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .menu {
        display: none;
        flex-direction: column;
        background: #002855;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem;
        z-index: 1000;
      }

      .menu.active {
        display: flex;
      }

      nav a {
        margin: 0.5rem 0;
        text-align: center;
      }
    }
    
    .hero {
      position: relative;
      height: 400px;
      overflow: hidden;
    }

    .slideshow-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      background-size: cover;
      background-position: center;
    }

    .slide.active {
      opacity: 1;
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 2;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .hero p {
      font-size: 1.5rem;
      font-weight: 500;
    }
    .section {
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
      background: white;
      margin-bottom: 2rem;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    .section h2 {
      color: #004085;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-align: center;
      font-weight: 700;
    }
    .section p {
      font-size: 1rem;
      line-height: 1.8;
      font-weight: 400;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    /* .card {
      padding: 2rem;
      background: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    } */

    .card {
  padding: 2rem;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-20px);
  box-shadow: 0 10px 8px rgba(20, 6, 110, 0.2);
}
    .card h3 {
      color: #004085;
      margin-bottom: 1rem;
      font-size: 1.5rem;
      font-weight: 700;
    }
    .card p {
      font-size: 0.95rem;
      line-height: 1.6;
      font-weight: 400;
    }
    footer {
      background: #002855;
      color: white;
      text-align: center;
      padding: 1.5rem 2rem;
      font-size: 0.95rem;
    }
    .cta {
      text-align: center;
      margin-top: 2rem;
    }
    .cta button {
      background: #004085;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
    }
    .cta button:hover {
      background: #0056b3;
    }
    .highlight-email {
      font-size: 1.2rem;
      font-weight: bold;
      color: #004085;
      background-color: #f8f9fa;
      border: 1px solid #004085;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      display: inline-block;
      text-decoration: none;
    }
    .highlight-email:hover {
      background-color: #004085;
      color: white;
      text-decoration: none;
    }
    .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  /* Cookie dialog styles */
  #cookieConsent {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #002855;
      color: white;
      padding: 1rem;
      text-align: center;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: none;
    }

    #cookieConsent p {
      margin: 0;
      font-size: 1rem;
    }

    #cookieConsent button {
      background: white;
      color: #002855;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      margin-top: 0.5rem;
    }

    #cookieConsent button:hover {
      background: #eaeaea;
    }
    /* Navbar Styling */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #0a2a4a; /* Dark Blue */
  color: white;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Ensures logo on the left, menu on the right */
  z-index: 1000;
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px; /* Adjust height if needed */
  width: auto;
  max-width: 180px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 25px; /* Creates space between menu items */
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .nav-links {
      gap: 15px; /* Reduce spacing on smaller screens */
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      background: #0a2a4a;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 200px;
      padding: 10px;
      border-radius: 5px;
  }

  .nav-links li {
      display: block;
      text-align: center;
      margin-bottom: 10px;
  }

  .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
  }

  .menu-toggle:hover + .nav-links {
      display: flex;
  }
}
