  body {
    margin: 0;
    background: #0d1117;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }

  .announcement-bar {
    background: #2f4cf3;
    color: #fff;
    text-align: left;
    padding: 8px 30px;
    font-size: 14px;
    z-index: 111111;
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    .get-started-btn{
      text-decoration: none;
      background-color: #fff;
      border-radius: 10px;
      padding: 8px 20px;
      color: #2f4cf3;
      text-align: center;
      font-weight: 600;
      line-height: 1.6;
    }
  }

  @media screen and (max-width: 768px) {
     .announcement-bar {
      padding: 8px 20px;
     }
  }
    .dropdown-col h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #fff;
    }

    .dropdown-col a {
      display: block;
      color: #ccc;
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 4px;
    }

    .dropdown-col a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
    }
  .announcement-bar a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
  }

  .site-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    margin-top: 40px;
     .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 0;
  }
  }

 

  .main-nav {
    border-radius: 10px;
    background: #0d0d1e;
    padding: 0px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* position: relative; */
    position: fixed;
    width: 100%;
    max-width: 1200px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }

  .nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .nav-trigger {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    height: 65px;
  }

  .nav-trigger:hover {
    color: #4FBFF7;
  }

  .dropdown {
    position: absolute;
    top: 64px;
    left: 0;
    display: none;
    width: 100%;
    background: #001F48;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
  }

  .nav-item:hover .dropdown {
    display: block;
  }

  /* SERVICES DROPDOWN STYLING */
  .services-dropdown {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;

  }

  .services-left {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 20px;
    a{
      color: #fff;
    }
  }

  .services-left div {
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
  }

  .services-left div:hover,
  .services-left div.active {
    background: rgba(255, 255, 255, 0.1);
  }

  .services-right {
    padding: 10px 20px;
  }

  .services-links {
    display: none;
  }

  .services-links.active {
    display: block;
  }

  .services-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
  }

  .services-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  /* Mobile Menu */
  .menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #001F48;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    z-index: 2000;
    padding-top: 90px;
  }

  .mobile-menu.open {
    right: 0;
  }

  .close-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
    float: right;
    cursor: pointer;
  }

  .mobile-links {
    margin-top: 40px;
  }

  .mobile-links .nav-item {
    margin-bottom: 15px;
  }

  .mobile-links .nav-trigger {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-dropdown {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
  }

  .mobile-dropdown a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 5px 0;
  }

  .mobile-dropdown a:hover {
    color: #fff;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .desktop {
      display: none;
    }

    .menu-btn {
      display: block;
    }
    .main-nav {
      padding: 16px 24px;
    }
    .margin-left{
      margin-left: 26px;
    }
  }
  .nav-item{
    margin-top: 0;
  }