
    body {
      font-family: "Open Sans", sans-serif;
      line-height: 1.7;
    }
    .hero .btn-success:hover {
  box-shadow: 0 0 15px rgba(25, 135, 84, 0.7);
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

.hero .btn-outline-light:hover {
  background: #fff;
  color: #007cc3;
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

    .section-title {
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    .section-title::after {
      
      width: 60px;
      height: 3px;
      background: #007cc3;
      display: block;
      margin-top: 8px;
    }
    .service-card {
      transition: transform .3s, box-shadow .3s;
      border: none;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }
    .cta {
      background: #007cc3;
      color: #fff;
      padding: 60px 20px;
    }
    .cta h3 {
      font-weight: 700;
    }
    .faq .accordion-button:not(.collapsed) {
      background: #007cc3;
      color: #fff;
    }
    
    .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/*<!-- CSS for Animated Borders -->*/

.animated-border {
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.animated-border::before,
.animated-border::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #007cc3;
  transition: all 0.3s ease-in-out;
}

.animated-border::before {
  top: 0;
  left: 0;
}

.animated-border::after {
  bottom: 0;
  right: 0;
}

.animated-border:hover::before,
.animated-border:hover::after {
  width: 100%;
}

.animated-border:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: #007cc3;
}


/* 4.3 Our Best Services Section
/*----------------------------------------------*/
#our-services .icon-box {
  transition: 0.3s ease-out;
}

#our-services .icon-box:hover {
  box-shadow: 0px 2px 40px rgba(8, 70, 78, 0.10);
  margin-top: -3px;
}

#our-services .service-icon-box {
  box-shadow: 0px 2px 40px rgba(8, 70, 78, 0.10);

}

@media only screen and (max-width: 1399px) {
  #our-services .icon-box-content h3.card-title {
    font-size: 1.2em;
  }

  #our-services .icon-box-content p {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 767px) {
  #our-services .icon-box-content h3.card-title {
    font-size: 1.8em;
  }
}



  .service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .service-card i {
    transition: transform 0.4s ease;
  }

  .service-card:hover i {
    transform: rotate(10deg) scale(1.1);
  }

  .service-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    bottom: 0;
    left: 0;
    transition: width 0.4s ease;
  }

  .service-card:hover::after {
    width: 100%;
  }

  .service-card p {
    transition: color 0.3s ease;
  }

  .service-card:hover p {
    color: #555;
  }


.counter-box { padding: 20px; }
.counter { font-size: 2.5rem; font-weight: bold; margin-top: 10px; }


.process-step {
  transition: 0.3s ease-in-out;
  border-radius: 8px;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}


  .split-section {
    background: linear-gradient(135deg, #f8f9ff, #eef5ff);
    padding: 60px 0;
  }
  .split-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  .split-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .split-right {
    padding: 40px;
  }
  .pointer-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .pointer-list li i {
    color: #28a745;
    margin-right: 10px;
  }
  .pointer-list li:last-child {
    border-bottom: none;
  }
