/*--------------------------------------------------------------
## Our Work Page Specific Styles
-----------------------------------------------------------------*/

/* Our Work Section Styles */
.cs_our_work_section {
  background: #f8f9fa;
  padding: 60px 0;
}

/* Modern Work Cards */
.cs_work_card.cs_style_modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cs_work_card.cs_style_modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cs_work_card_image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.cs_work_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

/* Specific styling for warranty success story image */
.cs_work_card_image img[src*="portfolio_img_53.jpg"] {
  object-fit: cover;
  object-position: center top;
}

.cs_work_card.cs_style_modern:hover .cs_work_card_image img {
  transform: scale(1.1);
}

.cs_work_card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.8), rgba(0, 128, 128, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cs_work_card.cs_style_modern:hover .cs_work_card_overlay {
  opacity: 1;
}

.cs_work_card_icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cs_work_card_icon i {
  font-size: 32px;
  color: #ffffff;
}

.cs_work_card_content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cs_work_card_title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.cs_work_card_description {
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cs_work_card_features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.cs_work_feature {
  background: #f0f0f0;
  color: var(--heading-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.cs_work_card_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.cs_work_card_btn:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.cs_work_card_btn i {
  transition: transform 0.3s ease;
}

.cs_work_card_btn:hover i {
  transform: translateX(5px);
}

/* Work Statistics */
.cs_work_stats_modern {
  margin-top: 80px;
}

.cs_work_stat_box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.cs_work_stat_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.cs_work_stat_icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #00a0a0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.cs_work_stat_box:hover .cs_work_stat_icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 128, 128, 0.3);
}

.cs_work_stat_icon i {
  font-size: 28px;
  color: #ffffff;
}

.cs_work_stat_number {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.cs_work_stat_label {
  font-size: 16px;
  color: var(--body-color);
  font-weight: 500;
}
