/* Services Section Container */
.servicescss {
  font-family: "Poppins", sans-serif;
  padding: 80px 40px;
  background-color: #fff;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto; /* Center the container */
}

.servicescss h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #BF2E21;
}

.servicescss p.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.5;
}

/* Services Grid Layout - one service per row */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px; /* spacing between cards */
  width: 100%;
}

/* Individual Service Card */
.service-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.service-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #BF2E21;
  margin-bottom: 18px;
  line-height: 1.2;
}

.service-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card p strong {
  color: #BF2E21;
  font-size: 1.1rem;
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.service-card a {
  color: #BF2E21;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-card a:hover {
  text-decoration: underline;
  color: #bf2e21;
}

/* Responsive Adjustments */
@media (max-width: 700px) {
  .servicescss {
    padding: 50px 20px;
    max-width: 100%;
  }
  .servicescss h1 {
    font-size: 2.4rem;
  }
  .service-card {
    padding: 28px 20px;
  }
}


/* Wrapper for the full-width product card section */
.product-feature-wrapper {
  padding: 40px 20px; /* padding around the section */
}

/* Outer card styling */
.product-feature-card {
  max-width: 900px;      /* reduced width for cleaner look */
  margin: 40px auto;     /* center horizontally with vertical spacing */
  padding: 30px 40px;    /* comfortable inner padding */
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  border-radius: 18px;

  /* Soft shadow all around */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  overflow: hidden;
  transition: all 0.3s ease;
}

.product-feature-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Inner layout */
.product-feature-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
}

/* Textual content */
.product-feature-content {
  flex: 1 1 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.product-feature-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Feature list */
.product-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-feature-list li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.product-feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1rem;
}

/* Image section */
.product-feature-image {
  flex: 1 1 25%;
  position: relative;
  overflow: hidden;
  max-height: 240px;
  margin: 50px 0;
}

.product-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-feature-label {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-feature-image:hover .product-feature-label {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-feature-inner {
    flex-direction: column;
  }

  .product-feature-content,
  .product-feature-image {
    flex: 1 1 100%;
  }

  .product-feature-image {
    max-height: 250px;
    margin: 40px 0 0 0;
  }

  .product-feature-content {
    padding: 24px 16px;
  }

  .product-feature-card {
    padding: 20px;
    max-width: 100%;
  }
}

/* Explore More Link */
.explore-more-link {
  display: inline-block;
  margin-top: 15px;
  color: #BF2E21;
  text-decoration: none;
  font-weight: 600;
}

.explore-more-link:hover {
  text-decoration: underline;
}

.project-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.project-images img {
  width: calc(25% - 10px);
  border-radius: 8px;
  object-fit: cover;
  height: 400px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .project-images img {
    width: calc(50% - 10px);
    height: 300px;
  }
}

@media (max-width: 600px) {
  .project-images img {
    width: 100%;
    height: 250px;
  }
}

.approval-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 1px 0;
}

.approval-links a {
  text-align: center;
  text-decoration: none;
  color: #333;
  margin-bottom: 30px;
}

.approval-links img {
  width: 50px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto 7px;
}

.approval-links span {
  font-size: 14px;
}
