 body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #f5f5f5;
    }
    /* 🔝 Top Bar Styling */
    .einvc-top-bar {
      background-color: #001938;
      color: #FFD700;
      font-size: 14px;
      padding: 10px 0;
    }

    .einvc-top-bar .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-left: 12px;
      color:  #001938;
      text-decoration: none;
      border-radius: 12px;
      transition: all 0.3s ease-in-out;
    }

    .einvc-top-bar .social-icons a:hover {
      color: #ffffff;
    }

    .btn-cta-sale {
      background-color: #FFD700;
      color: #001938;
      font-weight: 600;
      border-radius: 50px;
      padding: 8px 20px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease-in-out;
      cursor: pointer;
    }

    .btn-cta-sale:hover {
      background-color: #e6c200;
      color: #001938;
    }

    .einvc-top-bar .right-group {
      display: flex;
      align-items: center;
      gap: 16px;
    }


    .navbar {
      background-color: #001938 !important;
    }

    .navbar-brand img {
      height: 60px;
      padding-top: 5px;
      padding-bottom: 5px;
    }
    .nav-link {
      color: #f8f9fa !important;
      padding: 0.9rem 1rem;
      border-radius: 12px;
    }
    .navbar-nav .nav-link {
      padding-left: 4px !important;
      padding-right: 4px !important;
    }
    .nav-link:hover,
    .dropdown-menu a:hover {
      background-color: #FFD700;
      color: #001938 !important;
      border-radius: 12px;
    }
    .dropdown-menu {
      border-radius: 12px;
      padding: 0.5rem 0.3rem;
    }
    .dropdown-menu .dropdown-item {
      border-radius: 6px;
      padding: 0.55rem 1rem;
      margin: 2px 6px;
      transition: all 0.2s ease-in-out;
    }
    .dropdown-menu .dropdown-item:hover {
      background-color: #FFD700;
      color: #001938;
      font-weight: 500;
      border-radius: 18px;
    }
    .dropdown-menu .dropdown-toggle::after {
      margin-left: 0.5em;
    }
    @media (max-width: 991px) {
      .navbar-nav .nav-item {
        margin-bottom: 4px; /* reduce vertical gap between links */
      }

      .navbar-nav .nav-link {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
      }

      .dropdown-menu .dropdown-item {
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        margin: 1px 6px;
      }
    }

    @media (max-width: 991px) {
      .navbar-brand img {
        height: 60px !important;
      }

      .btn-cta-sale {
        font-size: 14px;
        padding: 8px 18px;
      }

      .social-icons a {
        font-size: 18px;
      }
    }
    @media (min-width: 992px) {
      .navbar .dropdown:hover > .dropdown-menu {
        display: block;
      }
      .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        top: 0;
        left: 100%;
        margin-top: -1px;
      }
    }
    .dropdown-submenu {
      position: relative;
    }
    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: 0;
      display: none;
    }
    @media (max-width: 991px) {
      .dropdown-submenu.show > .dropdown-menu {
        display: block;
      }
    }
    


/** FAQs starts **/
 .einvc-faq-form-section {
  background: linear-gradient(to right, #f7faff, #e6eef5);
}

.einvc-form-box {
  background-color: #ffffff;
}

.einvc-form-box input.form-control {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: 1px solid #ccc;
}

.einvc-form-box .btn-warning {
  background-color: #FFD700;
  border: none;
  transition: 0.3s ease;
}

.einvc-form-box .btn-warning:hover {
  background-color: #e0c000;
  color: #001938;
}

.accordion-button {
  font-weight: 600;
  background-color: #fff;
  color: #001938;
  border-radius: 0.5rem;
}

.accordion-item {
  border: none;
  background-color: transparent;
}

.accordion-body {
  font-size: 0.95rem;
  color: #333;
}
/** FAQ Ends **/


/**  DESKTOP SLIDE-IN CTA (only shows on desktop) **/

 @media (min-width: 768px) {
    .slidein-container {
      position: fixed;
      bottom: -100%;
      right: 30px;
      width: 300px;
      background: #001938;
      color: #fff;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
      padding: 20px;
      z-index: 9999;
      transition: all 0.6s ease-in-out;
    }
    .slidein-container.active {
      bottom: 30px;
    }
    .slidein-container input,
    .slidein-container button {
      width: 100%;
      margin: 10px 0;
    }
    .btn-submit {
      background: #FFD700;
      border: none;
      padding: 10px;
      color: #000;
      font-weight: bold;
      border-radius: 6px;
    }
    .close-btn {
      float: right;
      cursor: pointer;
    }
  }
  
  .einvc-mobile-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #FFD700;
    color: #001938;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    z-index: 10000;
    cursor: pointer;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  }
  .mobile-lead-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001938;
    color: #fff;
    display: none;
    z-index: 10001;
    padding: 20px;
  }
  .mobile-lead-form-overlay input,
  .mobile-lead-form-overlay button {
    width: 100%;
    margin: 10px 0;
  }
  .mobile-lead-form-overlay .btn-submit {
    background: #FFD700;
    border: none;
    color: #001938;
    font-weight: bold;
    padding: 10px;
  }
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  
    /* 🔚 Footer Styling */
    footer {
      background-color: #001938;
      padding-bottom: 2rem;
    }

    footer a {
      color: #ffffff;
      text-decoration: none !important;
      transition: color 0.2s ease-in-out;
    }

    footer a:hover {
      color: #FFD700;
      text-decoration: underline;
    }

    footer h6,
    .highlight-gold,
    .contact-info-gold i {
      color: #FFD700;
    }

    .footer-badge {
      padding: 3px 9px;
      font-weight: bold;
      border-radius: 50px;
      background-color: #ffffff;
      color: #001938;
      text-decoration: none !important;
    }

    .footer-badge:hover {
      background-color: #FFD700;
      color: #001938;
    }

    .footer-links ul {
      padding-left: 1rem;
      list-style: none;
    }

    .footer-links ul li {
      padding-bottom: 10px;
    }

    .footer-links ul li::before {
      content: '\f105';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      padding-right: 8px;
      color: #FFD700;
    }

    .social-icons {
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .social-icons a {
      font-size: 2.1rem;
      color: #001938;
      background: #ffffff;
      border-radius: 8px;
      width: 52px;
      height: 52px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease-in-out;
      flex: 0 0 auto;
      margin-bottom: 0.5rem;
    }

    .social-icons a:hover {
      background-color: #FFD700;
      color: #001938;
    }

    .btn-business {
      background-color: #28a745;
      color: #ffffff;
      font-weight: bold;
      padding: 12px 26px;
      border-radius: 30px;
      font-size: 1.1rem;
      transition: all 0.3s ease-in-out;
      border: none;
    }

    .btn-contact {
      background-color: #ffffff;
      color: #001938;
      font-weight: bold;
      padding: 12px 26px;
      border-radius: 30px;
      font-size: 1.1rem;
      transition: all 0.3s ease-in-out;
      border: 2px solid #FFD700;
    }

    .btn-business:hover {
      background-color: #e6c200;
    }

    .btn-contact:hover {
      background-color: #FFD700;
      color: #001938;
    }

    .newsletter-input {
      padding: 0.5rem 1rem;
    }

  .scrollbtn-ein {
    background-color: #FFD700;
    color: #001938;
    font-weight: 600;
    padding: 9px 12px;
    margin-bottom: 30px;
    border-radius: 6px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  .scrollbtn-ein:hover {
    background-color: #e6c200;
    color: #000;
  }

   .magic-heading {
      position: relative;
      font-family: 'Segoe UI', sans-serif;
      color: #001938;
      background: linear-gradient(90deg, #001938 0%, #ffffff 90%, #ffffff 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .magic-heading::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 1rem;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #FFD700, #FFBF00);
      border-radius: 2px;
    }
    .magic-subtitle {
      font-size: 0.95rem; /* reduced size */
      font-weight: 400;
      color: #6c757d;
      margin-top: 0.3rem;
      margin-left: 0.25rem;
    }
    .btn-einvc-gradient {
      background: linear-gradient(90deg, #FFD700, #FFC107);
      color: #001938;
      border: none;
      border-radius: 8px;
      padding: 0.6rem 1.2rem;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(255, 215, 0, 0.25);
      transition: all 0.3s ease;
    }

    .btn-einvc-gradient i {
      color: #001938;
    }

    .btn-einvc-gradient:hover {
      background: #001938;
      color: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .btn-einvc-gradient:hover i {
      color: #fff;
    }

    
  /* Brand gradients (already in your site; kept here for portability) */
  .gradient-bg-green   { background: linear-gradient(135deg, #e6fff3, #ffffff); }
  .gradient-bg-gold    { background: linear-gradient(135deg, #fffbe6, #ffffff); }
  .gradient-bg-blue    { background: linear-gradient(135deg, #e6f3ff, #ffffff); }
  .gradient-bg-lavender{ background: linear-gradient(135deg, #f3e6ff, #ffffff); }
  .gradient-bg-coral   { background: linear-gradient(135deg, #ffe6e6, #ffffff); }
  .gradient-bg-silver  { background: linear-gradient(135deg, #f5f7fa, #ffffff); }

  /* Card hover + motion */
  .pagecard-hover {
    transition: transform .28s ease, box-shadow .28s ease, background-position .35s ease, background-size .35s ease;
    background-size: 120% 120%;
    background-position: 50% 50%;
  }
  .pagecard-hover:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0,0,0,.14) !important;
    background-position: 55% 45%;
    background-size: 135% 135%;
    cursor: pointer;
  }
  /* Focus-visible for accessibility */
  .pagecard-link:focus-visible .pagecard-hover,
  a:focus-visible .pagecard-hover { outline: 3px solid #FFD700; outline-offset: 2px; }

  /* Icon badge */
  .icon-badge {
    width: 40px; height: 40px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
  }


  /* Fine‑tune spacing on small screens */
  @media (max-width: 575.98px){
    .pagecard-hover .card-body { padding: 1.1rem; }
  }
  @media (prefers-reduced-motion: reduce){
    .pagecard-hover, .pagecard-hover:hover { transition:none; transform:none; background-position:50% 50%; background-size:120% 120%; }
  }