/*--------------------------------------------------------------
# Sections General - Premium Styling
--------------------------------------------------------------*/

section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background-color: #f8fafc;
}

/* Modern Section Title */
.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
  letter-spacing: -1px;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #47b2e4, #73c5eb);
  bottom: 0;
  left: calc(50% - 30px);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  color: #6c757d;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Modern Section Title Alternative */
.section-title-modern {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title-modern h2 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #47b2e4, #73c5eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  letter-spacing: -1px;
}

.section-title-modern h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #47b2e4, #73c5eb);
  border-radius: 4px;
}

.section-title-modern p {
  font-size: 18px;
  color: #6c757d;
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.8;
}

/* Responsive Sections */
@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }

  .section-title h2,
  .section-title-modern h2 {
    font-size: 36px;
  }

  .section-title p,
  .section-title-modern p {
    font-size: 16px;
  }

  .section-title-modern {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title {
    padding-bottom: 40px;
  }

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

  .section-title p,
  .section-title-modern p {
    font-size: 15px;
    padding: 0 15px;
  }

  .section-title-modern {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {

  .section-title h2,
  .section-title-modern h2 {
    font-size: 26px;
  }

  .section-title-modern h2::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }
}