body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

/* CSS */
.website_dev_hero_section_2025 {
  width: 100%;
  height: 50vh;
  background-image: url("/assets/images/website\ development\ services.jpg"); /* replace with actual image path */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.website_dev_hero_overlay_2025 {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.website_dev_hero_content_2025 {
  text-align: center;
  color: #fff;
}

.website_dev_hero_title_2025 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.website_dev_hero_breadcrumbs_2025 {
  font-size: 16px;
}

.website_dev_hero_breadcrumbs_2025 a {
  color: #ff3c3c;
  text-decoration: none;
}

.website_dev_hero_breadcrumbs_2025 a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .website_dev_hero_section_2025 {
    height: 40vh;
  }

  .website_dev_hero_title_2025 {
    font-size: 28px;
  }

  .website_dev_hero_breadcrumbs_2025 {
    font-size: 14px;
  }
}

/* service we offer section start  */
.web_dev_services_section_2025 {
  padding: 60px 20px;
  text-align: center;
}

.web_dev_services_title_2025 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
}

.web_dev_services_grid_2025 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.web_dev_service_card_2025 {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.web_dev_card_icon_wrap_2025 {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  background: #f1f1f1;
  border: 2px dashed transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  border-radius: 50%;
}

.web_dev_service_card_2025:hover .web_dev_card_icon_wrap_2025 {
  background-color: #ff3c3c;
  border-color: #fff;
}

.web_dev_card_icon_2025 {
  height: 85px;
  width: 85px;
  transition: filter 0.3s ease;
}

.web_dev_service_card_2025 h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  transition: color 0.3s ease;
}

.web_dev_service_card_2025:hover h3 {
  color: #111;
}

.web_dev_service_card_2025 p {
  font-size: 16px;
  color: #555;
  transition: color 0.3s ease;
  line-height: 1.7;
}

.web_dev_service_card_2025:hover p {
  color: #555;
}

.web_dev_read_more_2025 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  gap: 8px;
  transition: color 0.3s ease;
  justify-content: center;
}

.web_dev_service_card_2025:hover .web_dev_read_more_2025 {
  color: #ff3c3c;
}

.web_dev_arrow_icon_2025 {
  font-size: 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.web_dev_service_card_2025:hover .web_dev_arrow_icon_2025 {
  transform: translateX(5px);
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .web_dev_services_title_2025 {
    font-size: 26px;
  }
}

/* service we offer section end  */
