* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    .announcement {
      background-color: #004080;
      color: #fff;
      padding: 11px 20px;
      text-align: center;
      font-size: 14px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #ffffff;
      padding-top: 10px;
      padding-right: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #ddd;
      position: sticky;
      top: 40px;
      z-index: 999;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      color: #004080;
      text-decoration: none;
    }

    .menu {
      display: flex;
      gap: 20px;
      position: relative;
    }

    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      position: relative;
    }

    .menu a:hover {
        text-decoration: none;
        color: #004080;
        font-weight: 500;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 110%;
      left: 0;
      background: #fff;
      border: 1px solid #ccc;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      min-width: 30% !important;
      z-index: 1000;
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      background-color: #f0f0f0;
      color: #004080;
      font-weight: 500;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding-right: 2%;
        align-items: end;
        border-top: 1px solid #ccc;
      }

      .menu.show {
        display: flex;
      }

      .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    @media (max-width: 991px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding-right: 2%;
        align-items: end;
        border-top: 1px solid #ccc;
      }

      .menu.show {
        display: flex;
      }

      .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /*Main-Section*/

    /*Banner*/
    .contact-banner {
        background-image: url('/images/contact-banner.jpg');
        background-size: cover;
        background-position: center;
        height: 300px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .contact-banner .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        padding-left: 40px;
        padding-right: 20px;
        color: white;
    }

    .contact-banner h1 {
        font-size: 36px;
    }

    .contact-banner p {
        font-size: 16px;
    }
    /* Contact Section */
.contact-section {
  color: #004080;
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

/* Cards Container */
.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.a-text-con{
    text-decoration: none;
    color: #fff;
}

/* Individual Card */
.contact-card {
  background: #004080;
  color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icons */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual Icon Colors */
.phone-icon {
  background: #0074d9;
  position: relative;
}
.phone-icon::before {
  content: "📞";
  font-size: 1.8rem;
}

.email-icon {
  background: #00a8ff;
  position: relative;
}
.email-icon::before {
  content: "✉️";
  font-size: 1.8rem;
}

.location-icon {
  background: #0052cc;
  position: relative;
}
.location-icon::before {
  content: "📍";
  font-size: 1.8rem;
}

/* Card Text */
.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.contact-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 90%;
    max-width: 400px;
  }
}

    /*Mega Footer*/

    .mega-footer {
        background-color: #004080;
        color: white;
        padding: 40px 20px 10px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }

    .footer-col {
        flex: 1 1 220px;
        margin: 15px;
    }

    .footer-col h3,
    .footer-col h4 {
        margin-bottom: 15px;
        color: #ffcb05;
    }

    .footer-col p,
    .footer-col ul,
    .footer-col li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        text-decoration: none;
        color: #ffffff;
        transition: 0.3s;
    }

    .footer-col ul li a:hover {
        color: #ffcb05;
    }

    .footer-col i {
        margin-right: 10px;
        color: #ffcb05;
    }

    .social-buttons {
        display: flex;
        gap: 20px;
        margin-top: 5%;
    }

    /* Common button styles */
    .icon {
        width: 50px;
        height: 50px;
        display: inline-block;
        border-radius: 50%;
        position: relative;
        background-color: #ddd;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .icon:hover {
        transform: scale(1.1);
    }

    /* Facebook icon */
    .facebook {
        background-color: #3b5998;
    }

    .facebook::before {
        content: "f";
        position: absolute;
        font-size: 28px;
        color: white;
        font-family: sans-serif;
        font-weight: bold;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Instagram icon */
    .instagram {
        background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
    }

    .instagram::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        border: 2px solid white;
        border-radius: 4px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .instagram::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        background: white;
        border-radius: 50%;
        top: 32%;
        left: 60%;
    }

    /* WhatsApp icon */
    .whatsapp {
        background-color: #25d366;
    }

    .whatsapp::before {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M20.5 3.5a11.64 11.64 0 00-16.43 0 11.64 11.64 0 00-3.44 8.24c0 2.1.55 4.13 1.6 5.9L1 23l5.53-1.44a11.56 11.56 0 005.04 1.18h.02a11.64 11.64 0 008.23-3.43 11.64 11.64 0 000-16.43zM12.6 20.07a9.5 9.5 0 01-4.81-1.3l-.34-.2-3.28.86.88-3.19-.22-.33a9.57 9.57 0 01-1.42-5 9.48 9.48 0 012.79-6.76 9.55 9.55 0 016.77-2.8 9.5 9.5 0 016.76 2.8 9.55 9.55 0 012.8 6.77 9.52 9.52 0 01-2.8 6.76 9.55 9.55 0 01-6.76 2.8z"/><path d="M17.21 14.3c-.3-.15-1.77-.87-2.05-.97-.27-.1-.47-.15-.66.15-.2.3-.76.97-.93 1.17-.17.2-.34.22-.64.07-.3-.15-1.26-.46-2.4-1.48-.88-.79-1.47-1.76-1.64-2.06-.17-.3-.02-.46.13-.6.13-.13.3-.34.44-.5.14-.17.2-.3.3-.5.1-.2.05-.38 0-.53-.06-.15-.66-1.58-.9-2.17-.23-.6-.47-.52-.66-.53h-.57c-.2 0-.5.07-.76.3-.26.23-1 1-1 2.4 0 1.4 1 2.76 1.14 2.95.13.2 2 3.02 4.8 4.23.67.29 1.2.47 1.61.6.68.22 1.3.19 1.78.11.54-.08 1.77-.72 2.02-1.41.25-.7.25-1.3.17-1.41-.07-.1-.26-.15-.56-.3z"/></svg>');
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 10px;
        font-size: 14px;
        margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 25px;
    }
    }