

  
  .service-section {
    background-color: var(--primary-bg);
    overflow: hidden;
    position: relative;
  }
  
  .service-section h2 {
    font-weight: 700;
  }
  
  .service-section .btn-primary {
    background-color: var(--secondary-color);
    border: none;
    color: #10101C;
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
  }
  
  .service-section .btn-primary:hover {
    transform: scale(1.05);
    color: white;
  }
  
  .service-img {
    z-index: 1;
    animation: float 3s infinite ease-in-out;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(5%);
    }
    50% {
      transform: translateY(0%);
    }
  }
  


 

  .container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.border {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #555;
}

.border:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.display-4 {
    font-size: 2.5rem;
    color: #007bff; /* Bootstrap primary color */
}

.list-unstyled li {
    font-size: 1rem;
    font-weight: 500;
}

.list-unstyled li a{
  color: white;
}

.btn-outline-light {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}


