    @font-face {
      font-family: "GT Walsheim", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      src: url('assets/fonts/GT-Walsheim-Regular-Trial-BF651b7fc71a47d.otf') format('otf');
      font-weight: 700;
      font-style: normal;
    }
    .hero {
      height: 50vh;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .hero-overlay {
      background-color: rgba(45, 62, 80, 0.6);
      padding: 3rem;
      color: white;
      width: 100%;
    }
    .service-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .service-icon {
      font-size: 2.5rem;
      color: #e84b3d;
      margin-bottom: 1rem;
    }
    .process-step {
      position: relative;
      padding-left: 40px;
      margin-bottom: 30px;
    }
    .process-step-number {
      position: absolute;
      left: 0;
      top: 0;
      width: 30px;
      height: 30px;
      background: #e84b3d;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    .tab-content {
      padding: 30px;
      background: white;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .nav-tabs .nav-link {
      color: #2d3e50;
      font-weight: 600;
      border: none;
      padding: 12px 20px;
    }
    .nav-tabs .nav-link.active {
      color: #e84b3d;
      background: white;
      border-bottom: 3px solid #e84b3d;
    }
    footer {
      background-color: #111;
      color: #bbb;
      padding: 2rem 0;
    }
    .text-shadow {
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    .nav-link {
      color:#fff;
    }
    .logo-border {
      border: 2px solid white;
      border-radius: 4px;
      padding: 4px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }
    .navbar-brand:hover .logo-border {
      border-color: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
      transform: scale(1.02);
    }
    .section-header {
      position: relative;
      margin-bottom: 3rem;
    }
    .section-header:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #e84b3d;
    }
    .service-feature {
      display: flex;
      margin-bottom: 20px;
    }
    .service-feature-icon {
      flex: 0 0 50px;
      font-size: 1.5rem;
      color: #e84b3d;
    }
    .service-feature-content {
      flex: 1;
    }
      /* Add this CSS to your stylesheet */
  .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link:hover {
    color: #fff;
  }
  
  .navbar-nav .nav-link.active::after,
  .navbar-nav .nav-link:focus::after,
  .navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(1);
    transition: transform 0.3s ease;
  }
  
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
    