
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #f8f9fa;
    }
    
    .navbar-brand img {
      height: 75px;
      padding-top: 5px;
      padding-bottom: 5px;
      max-width: 180px;
    }

    .nav-link {
      color: #f8f9fa !important;
      padding: 0.9rem 1rem;
      border-radius: 12px;
      font-weight: 600;
      
    }
    .nav-link:hover,
    .dropdown-menu a:hover {
      background-color: #FFD700;
      color: #001938 !important;
      border-radius: 12px;
    }

    .einba-navbar {
      background-color: #fffbe6;
      border-top: 2px solid #FFD700;
      border-bottom: 2px solid #001938;      
    }
    .einba-logo {
      height: 75px;
      padding: 5px 0;
    }
    .nav-link {
      color: #001938 !important;
      font-weight: 500;
      padding: 0.9rem 1rem;
      border-radius: 12px;
    }
    .nav-link:hover {
      background-color: #001938;
      color:#ffffff !important;
    }

    .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: #001938;
      color:#ffffff !important;
      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 (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;
      }
    }
    
    
/* 🔚 EINBC Hero Styling */
    
  .carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: opacity 0.8s ease-in-out;
  }

  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 25, 56, 0.5); /* EIN Navy Overlay */
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }

  .hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #f8f9fa;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }

  .hero-btn {
    background-color: #FFD700;
    color: #001938;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .hero-btn:hover,
  .hero-btn:focus {
    background-color: #e5c200;
    color: #001938;
    text-decoration: none;
    outline: none;
  }

  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }
  }



/* 🔚 Footer Styling */
    footer {
      background-color: #ffffff;
      background-image: linear-gradient(to bottom, #FFD700 0%, #ffffff 100%);
      background-size: cover;
      background-position: center;
      padding-bottom: 2rem;
      color: #001938;
    }
    footer a {
      color: #001938;
      text-decoration: none !important;
      transition: all 0.2s ease-in-out;
    }
    footer a:hover {
      color: #FFD700;
      text-decoration: underline;
    }
    footer h6,
    .highlight-gold,
    .contact-info-gold i {
      color: #001938;
    }
    .footer-badge {
      padding: 3px 9px;
      font-weight: bold;
      border-radius: 50px;
      background-color: #001938;
      color: #ffffff;
      transition: all 0.2s ease-in-out;
    }
    .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: #001938;
    }
    .social-icons {
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    .social-icons a {
      font-size: 2.1rem;
      color: #ffffff;
      background: #001938;
      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;
      border: none;
      transition: all 0.3s ease-in-out;
    }
    .btn-contact {
      background-color: #001938;
      color: #ffffff;
      font-weight: bold;
      padding: 12px 26px;
      border-radius: 30px;
      font-size: 1.1rem;
      border: 2px solid #FFD700;
      transition: all 0.3s ease-in-out;
    }
    .btn-contact:hover {
      background-color: #FFD700;
      color: #001938;
    }
    .btn-business:hover {
      background-color: #1e7e34;
    }
    .newsletter-input {
      padding: 0.5rem 1rem;
    }
    hr {
      border-color: #e1e1e1;
    }
   
    /* Floating Toggle Style */
    .social-float-container {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
  }

  .social-toggle-btn {
    background-color: #001938;
    color: white;
    padding: 14px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }

  .social-toggle-btn:hover {
    transform: scale(1.1);
  }

  .floating-social-icons {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .floating-social-icons.show {
    display: flex;
  }

  .floating-social-icons a {
    color: #001938;
    font-size: 18px;
    transition: color 0.3s ease;
  }

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

    
/* Button 1: Gold Background, Navy Hover */
.btn-ein-gold {
  background-color: #FFD700;
  color: #001938;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-ein-gold i {
  margin-right: 0.5rem;
}
.btn-ein-gold:hover {
  background-color: #001938;
  color: #ffffff;
}

/* Button 2: Navy Background, Gold Hover */
.btn-ein-navy {
  background-color: #001938;
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-ein-navy i {
  margin-right: 0.5rem;
}
.btn-ein-navy:hover {
  background-color: #FFD700;
  color: #001938;
}
.btn {
  transition: all 0.3s ease-in-out;
}
.einbc-title {
  font-size: 1.75rem; /* Adjust as needed */
  font-weight: 700;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  border-left: 6px solid #FFD700;
  color: #001938;
  line-height: 1.2;
}

