@import "https://fonts.cdnfonts.com/css/cabinet-grotesk";


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f7fb;
}

.services-section {
  padding: 50px 0;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title span {
  color: #2563eb;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
}

.main-btn {
  margin-top: 30px;
  padding: 10px 34px;
  border: none;
  border-radius: 50px;
  background: #1F1FFF;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}


.service-card {
  background: #F3F3F3;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
}


.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #2563eb;
  border: 3px solid #1565D833;
}

.service-card h4 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.service-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 20px;
}

@media(max-width:991px) {
  .section-title {
    font-size: 38px;
  }
}

@media(max-width:767px) {

  .services-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 15px;
  }

  .service-card {
    padding: 35px 25px;
  }

}