
    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;
  }
}
