      *,
      *::before,
      *::after {
          margin: 0;
          padding: 0;
          box-sizing: border-box
      }

      :root {
          --navy-dark: #002966;
          --navy: #0F1729;
          --blue-primary: #1565c0;
          --blue-dark: #0d47a1;
          --blue-gradient-end: #2a7de1;
          --orange: #F59F0A;
          --orange-dark: #d4841a;
          --gold: #c8922a;
          --green: #2ecc71;
          --white: #ffffff;
          --gray-light: #f5f7fa;
          --gray: #65758B;
          --text-dark: #333;
      }

      body {
          font-family: 'Inter', sans-serif;
          color: var(--text-dark);
          overflow-x: hidden
      }


     
     

      /* MOBILE DROPDOWN */
      .mobile-dropdown-toggle {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .mobile-dropdown-toggle a {
          flex: 1;
          display: block;
          padding: 16px 0;
          text-decoration: none;
          color: var(--text-dark);
          font-weight: 600;
          font-size: 14px;
          transition: all 0.3s;
      }

      .mobile-dropdown-toggle a:hover {
          color: var(--blue-primary);
      }

      .mobile-arrow {
          width: 44px;
          height: 44px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
          font-weight: 600;
          color: var(--text-dark);
          cursor: pointer;
          user-select: none;
          -webkit-tap-highlight-color: transparent;
          transition: transform 0.3s ease;
      }

      .mobile-dropdown.active .mobile-arrow {
          transform: rotate(180deg);
      }

      .mobile-dropdown-menu {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s ease;
          background: var(--white);
      }

      .mobile-dropdown.active .mobile-dropdown-menu {
          max-height: 1000px;
      }

      .mobile-dropdown-menu a {
          display: block;
          padding: 14px 24px;
          text-decoration: none;
          color: var(--gray);
          font-weight: 400;
          font-size: 14px;
          border-bottom: 1px solid #f0f0f0;
          transition: all 0.3s;
      }

      .mobile-dropdown-menu a:last-child {
          border-bottom: none;
      }

      .mobile-dropdown-menu a:hover {
          color: var(--blue-primary);
          background: rgba(21, 101, 192, 0.04);
      }

      /* MOBILE MENU OVERLAY */
      .mobile-menu-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(13, 33, 55, 0.5);
          backdrop-filter: blur(4px);
          /* -webkit-backdrop-filter: blur(10px); */
          z-index: 9998;
          opacity: 0;
          transition: opacity 0.3s ease;
          pointer-events: none;
      }

      .mobile-menu-overlay.active {
          opacity: 1;
          pointer-events: all;
      }

      /* MOBILE MENU */
      .mobile-menu {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 85%;
          max-width: 320px;
          height: 100%;
          background: var(--white);
          z-index: 9999;
          padding: 20px 24px;
          transform: translateX(-100%);
          transition: transform 0.3s ease;
          overflow-y: auto;
          box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
      }

      .mobile-menu.active {
          transform: translateX(0);
      }

      .mobile-menu-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-bottom: 16px;
          margin-bottom: 0;
      }

      .mobile-menu-header-line {
          height: 2px;
          background: linear-gradient(90deg, var(--blue-primary), var(--navy-dark));
          border: none;
          border-radius: 2px;
          margin: 0 0 8px 0;
      }

      .mobile-menu-close {
          font-size: 30px;
          cursor: pointer;
          background: none;
          border: none;
          color: var(--gray);
          padding: 4px;
          line-height: 1;
          transition: all 0.3s;
      }

      .mobile-menu-close:hover {
          color: var(--text-dark);
      }

      .mobile-menu-nav {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .mobile-menu-nav>li {
          border-bottom: 1px solid #eee;
      }

      .mobile-menu-nav>li>a {
          display: block;
          padding: 16px 0;
          text-decoration: none;
          color: var(--text-dark);
          font-weight: 600;
          font-size: 14px;
          transition: all 0.3s;
      }

      .mobile-menu-nav>li>a:hover {
          color: var(--blue-primary);
      }

      .mobile-menu-cta {
          margin-top: 24px;
          display: flex;
          flex-direction: column;
          gap: 12px;
      }


      /* RESPONSIVE */
      @media(max-width:768px) {
          .nav-menu {
              display: none;
          }

          .hamburger {
              display: flex;
          }

          .mobile-menu {
              display: block;
          }

          .mobile-menu-overlay {
              display: block;
          }
      }

      /* NAVBAR */
      .navbar {
          background: var(--white);
          padding: 12px 0;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
          position: sticky;
          top: 0;
          z-index: 1000;
          transition: all .3s
      }

      .navbar.scrolled {
          padding: 8px 0;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15)
      }

      .navbar .container {
          display: flex;
          justify-content: space-between;
          align-items: center
      }

      .container {
          max-width: 1280px;
          margin: 0 auto;
          padding: 0 20px
      }

      .logo {
          display: flex;
          align-items: center;
          text-decoration: none
      }

      .logo-icon {
          width: 60px;
          height: 60px
      }

      .logo-icon svg {
          width: 100%;
          height: 100%
      }

      .nav-menu {
          display: flex;
          align-items: center;
          gap: 6px;
          list-style: none
      }

      .nav-menu a {
          text-decoration: none;
          color: var(--navy);
          font-weight: 500;
          font-size: 15px;
          padding: 8px 14px;
          border-radius: 6px;
          transition: all .3s
      }

      .nav-menu a:hover {
          color: var(--blue-primary);
          background: rgba(21, 101, 192, 0.06)
      }

      .nav-menu a.active-nav {
          color: var(--blue-primary);
          font-weight: 700
      }

      .nav-menu .dropdown {
          position: relative
      }

      .nav-menu .dropdown>a::after {
          content: '';
          display: inline-block;
          width: 0;
          height: 0;
          border-left: 4px solid transparent;
          border-right: 4px solid transparent;
          border-top: 5px solid currentColor;
          margin-left: 6px;
          vertical-align: middle;
          transition: all .3s;
      }


      .dropdown-menu {
          position: absolute;
          top: 100%;
          left: 0;
          margin-top: 8px;
          background: var(--white);
          min-width: 250px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
          border-radius: 10px;
          padding: 10px 0;
          opacity: 0;
          visibility: hidden;
          transform: translateY(10px);
          transition: all .3s;
          z-index: 100;
          max-height: 450px;
          overflow-y: auto
      }
      .locations-dropdown-menu{
        max-height: 300px;
      }

      .dropdown:hover .dropdown-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0)
      }

      .dropdown-menu a {
          display: flex;
          flex-direction: column;
          padding: 12px 20px;
          font-size: 14px;
          border-radius: 0;
          gap: 2px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05)
      }

      .dropdown-menu a:last-child {
          border-bottom: none
      }

      .dropdown-menu a:hover {
          background: var(--orange);
          
      }

      .dropdown-menu a strong {
          font-size: 14px;
          font-weight: 600;
          color: var(--navy)
      }

      .dropdown-menu a span {
          font-size: 12px;
          font-weight: 400;
          color: var(--text-dark);
          line-height: 1.4
      }

      .dropdown-menu a:hover strong {
          color: var(--white)
      }

      .dropdown-menu::-webkit-scrollbar {
          display: none;
      }

    

      .hamburger {
          display: none;
          flex-direction: column;
          gap: 3px;
          cursor: pointer;
          padding: 0px 7px
      }

      .hamburger span {
          width: 20px;
          height: 3px;
          background: var(--navy-dark);
          border-radius: 100px;
          transition: all .3s
      }

      /* FOOTER */
      .footer {
          background: var(--navy);
          color: rgba(255, 255, 255, 0.8);
          padding: 60px 0 60px
      }

      .footer-grid {
          display: grid;
          grid-template-columns: 1.5fr 1fr 1fr 1fr;
          gap: 40px;
          margin-bottom: 40px
      }

      .footer-about p {
          font-size: 14px;
          line-height: 1.7;
          margin-bottom: 16px
      }

      .footer-promo {
          color: var(--orange);
          font-weight: 700;
          font-size: 13px
      }

      .footer-logo-svg {
          width: 90px;
          margin-bottom: 16px
      }


      .footer-col h4 {
          color: var(--white);
          font-size: 14px;
          font-weight: 700;
          text-transform: uppercase;
          letter-spacing: 1px;
          margin-bottom: 20px
      }

      .footer-col ul {
          list-style: none;
          padding: 0%;
          
      }

      .footer-col ul li {
          margin-bottom: 10px
      }

      .footer-col ul li a,
      .footer-col ul li span {
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          font-size: 14px;
          transition: all .3s
      }

      .footer-col ul li a:hover {
          color: var(--orange);
          padding-left: 4px
      }

      .footer-contact li {
          display: flex;
          align-items: flex-start;
          gap: 10px;
          margin-bottom: 12px
      }

      .footer-contact li i {
          color: var(--orange);
          margin-top: 3px;
          font-size: 13px
      }

      .footer-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.08);
          padding-top: 20px;
          text-align: center;
          font-size: 13px;
          color: rgba(255, 255, 255, 0.4)
      }

      @media(max-width:768px) {
          .nav-menu {
              display: none
          }

          .hamburger {
              display: flex
          }

          .mobile-menu {
              display: block
          }

          .footer-grid {
              grid-template-columns: 1fr
          }

      }

     
      /* ANIMATIONS */
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px)
          }

          to {
              opacity: 1;
              transform: translateY(0)
          }
      }

      .animate-on-scroll {
          opacity: 0;
          transform: translateY(25px);
          transition: all .5s ease
      }

      .animate-on-scroll.visible {
          opacity: 1;
          transform: translateY(0)
      }


     

      /* HERO */
        .page-hero{position:relative;min-height:300px;display:flex;align-items:center;justify-content:center;overflow:hidden;text-align:center}
        .page-hero-bg{position:absolute;top:0;left:0;width:100%;height:100%}
        .page-hero-bg img{width:100%;height:100%;object-fit:cover;filter:brightness(0.3)}
        .page-hero-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to right, rgba(1, 100, 214, 0.6) 40%,rgba(6, 19, 32, 0.4) 100%)}
        .page-hero-content{position:relative;z-index:10;padding:60px 20px;color:var(--white);max-width:700px}
        .page-hero-content h1{font-size:42px;font-weight:800;margin-bottom:14px;animation:fadeInUp .6s ease}
        .page-hero-subtitle{font-size:16px;opacity:0.8;animation:fadeInUp .6s ease .1s both}

         @media(max-width:768px){
            .page-hero-content h1{font-size:30px}.page-hero{min-height:300px}
            }

