body {
    font-family: 'Poppins', sans-serif;
    color: #333;
  }
  
  .navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand img {
    height: 50px;
  }
  
  .hero-section {
    background: linear-gradient(135deg, #0077be, #004c8c);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1200/800');
    background-size: cover;
    opacity: 0.1;
  }
  
  .btn-primary {
    background-color: #0077be;
    border-color: #0077be;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #005f95;
    border-color: #005f95;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .service-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: #0077be;
    margin-bottom: 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e6f2fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    color: #0077be;
    font-size: 24px;
  }
  
  .testimonial-section {
    background-color: #f8f9fa;
  }
  
  .testimonial-card {
    border-radius: 12px;
    overflow: hidden;
    padding: 25px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }
  
  .testimonial-stars {
    color: #ffc107;
  }
  
  .about-section {
    position: relative;
  }
  
  .lottie-container {
    width: 100%;
    height: 300px;
  }
  
  .contact-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  }
  
  .contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0077be;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
  }
  
  footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 60px 0 30px;
  }
  
  .footer-links h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: white;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: #0077be;
    transform: translateY(-3px);
  }
  
  .copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
  }