body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #222;
  }
  
  .hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1550668035-d828561ad404?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
  }
  
  .hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }
  
  .hero .container {
    z-index: 2;
  }
  
  .nav-link {
    margin-left: 1rem;
    font-weight: 500;
  }
  
  .custom-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    border: 2px solid white;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  
  .custom-btn:hover {
    background-color: white;
    color: #000;
    transform: translateY(-2px);
  }
  
  .bi {
    font-size: 1.2rem;
    color: #000;
    vertical-align: middle;
  }
  
  .image-tile {
    position: relative;
    overflow: hidden;
  }
  
  .image-tile img {
    transition: transform 0.4s ease;
  }
  
  .image-tile:hover img {
    transform: scale(1.05);
  }
  
  .overlay-text {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.95rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
  }
  
  .carousel-inner img {
    height: 300px;
    object-fit: cover;
  }
  
  .timeline {
    position: relative;
    border-left: 2px solid #dee2e6;
    padding-left: 40px;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-icon {
    position: absolute;
    left: -20px;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: #212529;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #f8f9fa;
  }
  
  .timeline-content {
    margin-left: 30px;
  }
  
  .btn {
    transition: all 0.3s ease;
  }
  
  .btn-outline-secondary:hover {
    background-color: #000000;
    color: #fff;
    border-color: #000000;
  }
  
  .team-card:hover .rounded-circle {
    border-color: #000 !important;
    transition: border-color 0.3s ease;
  }

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.navbar-nav .nav-link {
  color: #000000 !important;
  font-size: 1rem;
  padding: 10px 15px;
}
.navbar-nav .nav-link.active {
  font-weight: 700;
  border-bottom: 2px solid #212529;
}
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 10px 20px;
  }
  .navbar-nav .nav-link.active {
    border-bottom: none;
    border-left: 3px solid #212529;
  }
}