/* About and Services Card Section Styling */

.about-card-section {
  padding: 5rem 0;
  background: #fff;
  position: relative;
}

.about-card {
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-left: 4px solid #C91C2E;
}

.about-card:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(201, 28, 46, 0.05);
  border-radius: 0 0 0 100%;
}

.about-card h2 {
  color: #1F1F1F;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.about-card h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #C91C2E;
  bottom: 0;
  left: 0;
}

.about-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.btn-about {
  background: #C91C2E;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-about:hover {
  background: #a91525;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201, 28, 46, 0.2);
  text-decoration: none;
}

.btn-about .fa {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-about:hover .fa {
  transform: translateX(5px);
}

/* Services Card Styling */
.services-card {
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-left: 4px solid #1F1F1F;
  height: 100%;
}

.services-card:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(31, 31, 31, 0.05);
  border-radius: 0 0 0 100%;
}

.services-card h2 {
  color: #1F1F1F;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.services-card h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #1F1F1F;
  bottom: 0;
  left: 0;
}

.service-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 0.8rem;
}

.service-item h3 i {
  color: #1F1F1F;
  margin-right: 10px;
}

.service-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-services {
  background: #1F1F1F;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.btn-services:hover {
  background: #333;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn-services .fa {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-services:hover .fa {
  transform: translateX(5px);
}

@media (max-width: 767.98px) {
  .about-card-section {
    padding: 3rem 0;
  }

  .about-card, .services-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}
