.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* General Section Styling */
.services {
  background-color: #f9f9f9;
  padding: 50px 10px; /* Reduced padding for smaller screens */
  box-sizing: border-box; /* Ensure padding is included in the element's total width */
}

.services .container {
  max-width: 100%; /* Ensure container takes full width */
  margin: 0 auto;
  text-align: center;
  padding: 0 15px; /* Add padding on smaller screens to prevent content touching the edges */
}

.services .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
  word-wrap: break-word; /* Ensure the title wraps if needed */
}

/* Service Category Styling */
.service-category {
  margin-bottom: 60px;
}

.service-category h3 {
  font-size: 24px;
  color: #444;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #ddd;
  display: inline-block;
  padding-bottom: 5px;
  word-wrap: break-word; /* Prevent overflow */
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 20px;
  margin-top: 20px;
}

/* Service Card */
.service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 0.5s ease-in-out;
  box-sizing: border-box; /* Include padding in width calculation */
}

.service-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-card img {
  max-width: 80px; /* Reduced icon size */
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 18px;
  color: #555;
  margin: 0;
  font-weight: 600;
  word-wrap: break-word; /* Prevent overflow */
}

/* Fade In Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Styling - For tablets (up to 768px) */
@media (max-width: 768px) {
  .services .section-title {
    font-size: 28px;
  }

  .service-category h3 {
    font-size: 20px;
  }

  /* Grid for 2 services per row on tablets and small mobile */
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  }

  .service-card h4 {
    font-size: 16px;
  }
}

/* Mobile Styling - For extra small screens (up to 480px) */
@media (max-width: 480px) {
  .services .section-title {
    font-size: 24px;
  }

  .service-category h3 {
    font-size: 18px;
  }

  /* Grid for 2 services per row on mobile */
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  }

  .service-card h4 {
    font-size: 14px;
  }
}/* End custom CSS */