    @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: 60vh;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .hero-overlay {
      background-color: rgba(45, 62, 80, 0.6);
      padding: 3rem;
      color: white;
      width: 100%;
    }
    .hero-overlay .btn {
      transition: all 0.3s ease;
    }
    .team-img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #e84b3d;
    }
    .mission-vision-card {
      border-left: 4px solid #e84b3d;
      transition: all 0.3s ease;
    }
    .mission-vision-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    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;
    }
    /* 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;
  }
  .profile-img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid #e84b3d;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .social-icon {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      border-radius: 50%;
      color: #e84b3d;
      margin: 0 5px;
      transition: all 0.3s ease;
    }
    .social-icon:hover {
      background: #e84b3d;
      color: white;
      transform: translateY(-3px);
    }
    .skill-badge {
      background: #2d3e50;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      margin: 5px;
      display: inline-block;
      font-size: 0.8rem;
    }
    .timeline {
      position: relative;
      padding-left: 30px;
    }
    .timeline:before {
      content: "";
      position: absolute;
      left: 7px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #e84b3d;
    }
    .timeline-item {
      position: relative;
      margin-bottom: 20px;
    }
    .timeline-item:before {
      content: "";
      position: absolute;
      left: -30px;
      top: 5px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #e84b3d;
      border: 2px solid white;
    }