
    @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%;
    }
    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .project-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .project-img {
      height: 250px;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    .project-card:hover .project-img {
      transform: scale(1.03);
    }
    .badge-category {
      background: #e84b3d;
      color: white;
    }
    .filter-btn {
      border: 2px solid #2d3e50;
      color: #2d3e50;
      font-weight: 600;
      margin: 0 5px 10px;
      transition: all 0.3s ease;
    }
    .filter-btn:hover, .filter-btn.active {
      background: #2d3e50;
      color: white;
    }
    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;
    }
    .gallery-item {
      margin-bottom: 30px;
      cursor: pointer;
    }
    .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(232, 75, 61, 0.8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
    }
    .gallery-item:hover .play-icon {
      opacity: 1;
    }
    .play-icon i {
      color: white;
      font-size: 24px;
      margin-left: 5px;
    }
    /* 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;
  }