body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
}
/* start header */
.navbar_customize {
  display: flex;
  justify-content: space-between;
}
/* start slider */
.slider-edit {
  width: 100%;
}
.slider-edit img {
  height:540px;
  object-fit: cover;
}
/* end slider */
.icon-box {
  width: 300px;
  height: 250px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  transition: 0.3s;
  margin: 0;
  font-size: 28px;

  overflow: hidden;
}

/* start pricing section */
.pricing-section {
  padding: 60px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.section-title h2 {
  font-weight: 600;
  color: #333;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #0d6efd;
}
.card,
.pricing-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background: #fff;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.pricing-header {
  padding: 30px 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: #0d6efd;
  margin: 20px 0;
}
.pricing-features {
  padding: 30px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
}
.btn-pricing {
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  margin-top: 20px;
}
.features-section {
  padding: 60px 0;
  background-color: #fff;
}
/* contne section  */
.content {
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.card {
  width: 350px !important;
  align-items: center;
  margin: 20px auto;
}
/* end content */
