@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
  padding: 0;
  margin: 0;
    font-family: 'Poppins', sans-serif;
}
p,li,div{
  font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}
    /* ===== NAV LINKS ===== */
    .nav-link {
      position: relative;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ffffff;
      padding: 6px 0;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: #0B5ED7;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link.active {
      color: #E7F1FF;
    }

    /* ===== DROPDOWN ===== */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 155% !important;
      left: 50%;
      transform: translateX(-50%);
      background: #ffffff;
      min-width: 260px !important;
      border-radius: 0px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      overflow: hidden;
      z-index: 999;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      top: 120%;
    }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;

  color: #0A1F44;
  background: #ffffff;

  border-bottom: 2px solid #ddd !important;

  transition: 
    background 0.3s ease,
    color 0.3s ease,
    padding-left 0.3s ease,
    border-color 0.3s ease;
}

/* PREMIUM HOVER */
.dropdown-menu a:hover {
  background: #F3F7FF;          /* soft blue wash */
  color: #0B5ED7;               /* primary blue */
  border-bottom-color: #0B5ED7 !important;   /* authority accent */
  padding-left: 26px;           /* subtle slide */
}

/* Rotate arrow on dropdown hover */
.dropdown:hover i.fa-chevron-down {
  transform: rotate(180deg);
}

/* ================= RESPONSIVE HEADING ================= */

.heading{
  background: #fff;
  padding: 16px;
  font-size: 40px;          /* Desktop default */
  line-height: 1.2;
  font-weight: 700;
  border-radius: 0;
}

.heading span{
  font-weight: bold;
  color: #00f;
}

/* -------- Tablet -------- */
@media (max-width: 1024px){
  .heading{
    font-size: 32px;
  }
}

/* -------- Mobile -------- */
@media (max-width: 768px){
  .heading{
    font-size: 26px;
    padding: 8px;
    text-align: center;
  }
}

/* -------- Small Mobile -------- */
@media (max-width: 480px){
  .heading{
    /*font-size: 22px;*/
    padding: 6px;
  }
}


   /* ===== HAMBURGER MENU ANIMATION ===== */
    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      background: transparent;
      border: none;
      padding: 10px;
      width: 44px;
      height: 44px;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1002;
    }

    .hamburger:hover {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
    }

    .hamburger span {
      width: 24px;
      height: 2.5px;
      background: white;
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      transform-origin: center;
      display: block;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -8px);
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      max-width: 85vw;
      height: 100vh;
      background: linear-gradient(135deg, #0A1F44 0%, #0d2652 100%);
      z-index: 999;
      transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      overflow-y: auto;
      overflow-x: hidden;
      box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu::-webkit-scrollbar {
      width: 6px;
    }

    .mobile-menu::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
    }

    .mobile-menu::-webkit-scrollbar-thumb {
      background: rgba(11, 94, 215, 0.5);
      border-radius: 3px;
    }

    /* ===== MOBILE OVERLAY ===== */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
      display: block;
      opacity: 1;
    }

    /* ===== MOBILE MENU ITEMS ===== */
    .mobile-menu a,
    .mobile-dropdown-toggle {
      display: block;
      padding: 16px 20px;
      color: white;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      transition: all 0.3s ease;
      background: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
    }

    .mobile-menu a:hover,
    .mobile-dropdown-toggle:hover {
      background: rgba(11, 94, 215, 0.2);
      color: #0B5ED7;
      padding-left: 26px;
    }

    .mobile-menu a.active {
      background: rgba(11, 94, 215, 0.3);
      color: #0B5ED7;
      border-left: 4px solid #0B5ED7;
      padding-left: 16px;
    }

    .mobile-dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: none;
    }

    .mobile-dropdown-toggle i {
      transition: transform 0.3s ease;
      font-size: 12px;
    }

    .mobile-dropdown-toggle.open i {
      transform: rotate(180deg);
    }

    /* ===== MOBILE DROPDOWN MENU ===== */
    .mobile-dropdown-menu {
      display: none;
      background: rgba(0, 0, 0, 0.15);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .mobile-dropdown-menu.open {
      display: block;
      max-height: 500px;
    }

    .mobile-dropdown-menu a {
      padding: 12px 20px 12px 40px;
      font-size: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      color: #d0d0d0;
    }

    .mobile-dropdown-menu a:hover {
      background: rgba(11, 94, 215, 0.3);
      color: #0B5ED7;
      padding-left: 50px;
    }

    /* ===== RESPONSIVE STYLES ===== */
    /* TABLET AND BELOW (max 1024px) */
    @media (max-width: 1024px) {
      .hamburger {
        display: flex !important;
      }

      .nav-links {
        display: none !important;
      }

      .header-section-top {
        display: none !important;
      }

      nav {
        padding: 0;
      }

      nav .px-4 {
        padding-left: 12px;
        padding-right: 12px;
      }

      nav .max-w-7xl {
        margin: 0 auto;
      }
    }

    /* DESKTOP (min 1025px) */
    @media (min-width: 1025px) {
      .hamburger {
        display: none !important;
      }

      .mobile-menu {
        display: none !important;
      }

      .mobile-overlay {
        display: none !important;
      }

      .header-section-top {
        display: block !important;
      }
    }

    /* SMALL TABLET (768px - 1024px) */
    @media (max-width: 1024px) and (min-width: 768px) {
      nav .py-4 {
        padding-top: 12px;
        padding-bottom: 12px;
      }

      .mobile-menu {
        max-width: 70vw;
      }

      .mobile-menu a,
      .mobile-dropdown-toggle {
        padding: 14px 18px;
        font-size: 0.875rem;
      }

      .mobile-dropdown-menu a {
        padding: 11px 18px 11px 38px;
      }
    }

    /* MOBILE (max 767px) */
    @media (max-width: 767px) {
      .banner-section img {
        height: auto;
        max-height: 200px;
        object-fit: cover;
      }

      nav {
        padding: 0;
      }

      nav .py-4 {
        padding-top: 10px;
        padding-bottom: 10px;
      }

      .mobile-menu {
        max-width: 80vw;
      }

      .mobile-menu a,
      .mobile-dropdown-toggle {
        padding: 13px 16px;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
      }

      .mobile-dropdown-menu a {
        padding: 11px 16px 11px 36px;
        font-size: 0.8rem;
      }

      .mobile-dropdown-menu a:hover {
        padding-left: 42px;
      }

      .hamburger {
        width: 40px;
        height: 40px;
        padding: 8px;
      }

      .hamburger span {
        width: 22px;
      }
    }

    /* SMALL MOBILE (max 480px) */
    @media (max-width: 480px) {
      .banner-section img {
        max-height: 150px;
      }

      nav .px-4 {
        padding-left: 8px;
        padding-right: 8px;
      }

      nav .py-4 {
        padding-top: 8px;
        padding-bottom: 8px;
      }

      .mobile-menu {
        max-width: 100%;
      }

      .mobile-menu a,
      .mobile-dropdown-toggle {
        padding: 12px 14px;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
      }

      .mobile-dropdown-menu a {
        padding: 10px 14px 10px 32px;
        font-size: 0.75rem;
      }

      .mobile-dropdown-menu a:hover {
        padding-left: 38px;
      }

      .hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
      }

      .hamburger span {
        width: 20px;
        height: 2px;
      }
    }

    /* EXTRA SMALL MOBILE (max 375px) */
    @media (max-width: 375px) {
      .mobile-menu a,
      .mobile-dropdown-toggle {
        padding: 11px 12px;
        font-size: 0.75rem;
      }

      .hamburger span {
        width: 18px;
      }
    }

    /* ===== PREVENT SCROLL WHEN MENU IS OPEN ===== */
    body.menu-open {
      overflow: hidden;
    }