/* Theme Colors and Fonts */
:root {
  --primary-color: #00a0df;
  --accent-color: #FF7F00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body,
h1, h2, h3, h4, h5, h6,
p, a, span, input, button, textarea,
.srex-btn, .thm-btn,
.nav-link, .dropdown-item,
.srex-section__head__title,
.srex-hero-two__box h1,
.service-card__title,
.service-card__text {
    font-family: 'Poppins', sans-serif !important;
}

/* Button Styles */
.thm-btn, .srex-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.thm-btn:hover, .srex-btn:hover {
  background-color: var(--accent-color);
}

.srex-btn--outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.srex-btn--outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.service-card {
  background: var(--text-light);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__title {
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card__text {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__btn {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card__btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.section-title h2 {
  color: var(--text-dark);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-dark);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}