.services-section {
  background: #f8fbff;
}
.service-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(11,59,145,0.10);
  color: #1c64f2;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 28px;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.service-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(11,59,145,0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}
.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3be3c1, #5a8dee);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff;
  font-size: 28px;
}
.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}
.service-card p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-btn {
  text-decoration: none;
  color: #0b3b91;
  font-weight: 600;
  transition: 0.3s;
}

.service-btn:hover {
  letter-spacing: 0.5px;
  color: #dd1111;
}

@media (max-width: 768px) {
  .service-card {
    padding: 28px 22px;
  }

  .service-card h4 {
    font-size: 20px;
  }
}


  /* =========================
      PAGE HEADER
  ========================== */

  .page-header{
    background:#0b3b91;
    padding:70px 0;
    text-align:center;
    color:#fff;
  }

  .page-header h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:12px;
  }

  .page-header p{
    font-size:17px;
    margin:0;
  }

  .home-link{
    color:#fff;
    text-decoration:none;
    font-weight:600;
  }

  .home-link:hover{
    color:#fff;
    text-decoration:underline;
  }

  /* =========================
      MAIN SECTION
  ========================== */

  .service-section{
    padding:80px 0;
  }

  .service-image img{
    width:100%;
    border-radius:15px;
  }

  .service-content h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
    color:#0b3b91;
  }

  .service-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
  }

  /* =========================
      LIST
  ========================== */

  .service-list{
    /* margin-top:25px; */
    padding-left:0;
  }

  .service-list li{
    list-style:none;
    margin-bottom:15px;
    font-size:16px;
    color:#444;
  }

  .service-list li i{
    color:#0b3b91;
    margin-right:10px;
  }

  /* =========================
      INFO BOX
  ========================== */

  .info-box{
    background:#f8f9fa;
    padding:30px;
    border-radius:15px;
    text-align:center;
    height:100%;
    transition:0.3s;
  }

  .info-box:hover{
    background:#0b3b91;
    color:#fff;
    transform:translateY(-5px);
  }

  .info-box:hover i{
    color:#fff;
  }

  .info-box i{
    font-size:45px;
    color:#0b3b91;
    margin-bottom:15px;
  }

  .info-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
  }

  .info-box p{
    font-size:15px;
    line-height:1.8;
    margin:0;
  }

  /* =========================
      CONTACT BOX
  ========================== */

  .contact-box{
    background:#0b3b91;
    color:#fff;
    padding:55px 30px;
    border-radius:15px;
    text-align:center;
    margin-top:70px;
  }

  .contact-box h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
  }

  .contact-box p{
    font-size:17px;
    margin-bottom:25px;
  }

  .contact-btn{
    display:inline-block;
    background:#5d8896;
    color:#0b3b91;
    padding:13px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
  }

  .contact-btn:hover{
    background:#000;
    color:#fff;
  }

  /* =========================
      RESPONSIVE
  ========================== */

  @media(max-width:991px){

    .service-content{
      margin-top:40px;
    }

    .page-header h1{
      font-size:38px;
    }

    .service-content h2{
      font-size:30px;
    }

  }

  @media(max-width:576px){

    .page-header{
      padding:55px 0;
    }

    .page-header h1{
      font-size:28px;
    }

    .page-header p{
      font-size:14px;
    }

    .service-content h2{
      font-size:26px;
    }

    .service-content p{
      font-size:15px;
    }

    .contact-box{
      padding:45px 20px;
    }

    .contact-box h2{
      font-size:28px;
    }

    .contact-box p{
      font-size:15px;
    }

  }