/* style.css */

/* Body basic font and background */

  body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  /* Navbar brand logo styles */
  .navbar-brand span {
    font-weight: 700;
    font-size: 1.6rem;
  }
  
  /* Nav links default style */
  .navbar-nav .nav-link {
    color: #015dac;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  /* Nav links hover and active */
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    color: #ff6f01;
    text-decoration: none;
  }
  
  /* Navbar toggler button color */
  .navbar-toggler {
    border-color: #015dac;
  }
  
  .navbar-toggler-icon {
    filter: invert(24%) sepia(72%) saturate(3803%) hue-rotate(190deg) brightness(96%) contrast(92%);
  }
  
  /* Active nav item */
  .navbar-nav .nav-link.active {
    color: #ff6f01;
    font-weight: 700;
  }
  
  /* Buttons styling (if needed later) */
  .btn-primary {
    background-color: #015dac;
    border-color: #015dac;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover,
  .btn-primary:focus {
    background-color: #ff6f01;
    border-color: #ff6f01;
    color: #fff;
  }
  
  /* Utility spacing */
  .mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  
  .service-card {
    border: 2px solid #015dac;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(1, 93, 172, 0.1);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #015dac;
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background-color: #ff6f01;
  }
  
  .text-orange {
    color: #ff6f01;
  }

  
  .process-card .icon-top {
    font-size: 3rem;
    display: block;
    margin: 0 auto 1rem auto;
    color: #ff6f01;
  }
  

  
  .process-card h5 {
    color: #015dac; /* brand orange */
    margin-bottom: 0.75rem;
  }
  
  
  .process-card i {
    color: #ff6f01;
  }

  .process-card p {
    color:black;
  }

  

  
  .about-card {
    border-color: #f5f7f833; /* soft blue border */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(1, 93, 172, 0.05);
    transition: all 0.3s ease;
  }
  
  .about-card:hover {
    border-color: #ff6f01;
    box-shadow: 0 8px 25px rgba(255, 111, 1, 0.15);
    transform: translateY(-5px);
  }
  
  .about-card h4 {
    color: #015dac;
  }
  
  .about-card p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  

  .testimonial-card {
    transition: all 0.3s ease;
    border-color: #015dac;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(1, 93, 172, 0.1);
    border-color: #ff6f01;
  }
  
  #testimonials h2 span {
    color: #ff6f01;
  }

  

  .footer a {
    transition: all 0.3s ease;
  }
  
  .footer a:hover {
    color: #ff6f01;
    text-decoration: underline;
  }
  
  .footer .bx {
    font-size: 1.1rem;
  }

  
