/* Section */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f2f3d;
}

/* Category Card */
.product-category {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #0d6efd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
}

/* Titles & Text */
.category-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0d6efd;
}

.category-description {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

/* Product List */

.product-list li {
    background: #f1f4f7;
    padding: 10px 15px;
    border-radius: 4px;
    color: #252525;
    font-size: 14px;
    font-weight: 600;
     transition: all 0.3s ease;
    border-left: 3px solid #fec901;
}

/* Category Layout */
.product-category {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 30px;
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 5px solid #0d6efd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    align-items: center;
}

/* Image */
/* Content */
.category-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0d6efd;
}

.category-description {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .product-category {
        grid-template-columns: 1fr;
    }

    .category-image img {
        max-height: 220px;
    }
}

/* Product Category Card */
.product-category {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 30px;
    background: linear-gradient(135deg, #0b1f3a, #102a4c);
    padding: 30px;
    margin-bottom: 40px;
    border-left: 5px solid #fec901;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Image Wrapper */
.category-image {
    overflow: hidden;
    border-radius: 8px;
}

/* Image Animation */
.category-image img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Image Hover Zoom */
.product-category:hover .category-image img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Content */
.category-content {
    display: flex;
    flex-direction: column;
}

/* Titles */
.category-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.product-category:hover .category-title {
    color: #fec901;
}

/* Description */
.category-description {
    font-size: 15px;
    margin-bottom: 15px;
    color: #cfd8e3;
}

/* Product List */
.product-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 10px;
    padding-right: 20px;
}

/* Product Item */

/* Product Hover */
.product-list li:hover {
    background: #fec901;
    transform: translateX(6px);
    border-left-color: #252525;
}

/* Subtle Shine Animation */
.product-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    transition: left 0.8s ease;
}

.product-category:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .product-category {
        grid-template-columns: 1fr;
    }

    .category-image img {
        max-height: 220px;
    }
}

.industries-served-section {
  padding: 80px 8%;
  background: #f6f8fa;
}

.industries-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1f2933;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.industry-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
}

.industry-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card h3 {
  font-size: 22px;
  margin: 20px;
  color: #111827;
}

.industry-card p {
  margin: 0 20px 25px;
  color: #4b5563;
  line-height: 1.6;
}

.industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.industry-card:hover img {
  transform: scale(1.1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.qc-alt-section {
  padding: 100px 8%;
  background: #ffffff;
}

.qc-alt-header {
  max-width: 750px;
  margin-bottom: 70px;
}

.qc-alt-header h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 15px;
  position: relative;
}

.qc-alt-header h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #2563eb;
  display: block;
  margin-top: 12px;
}

.qc-alt-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
}

.qc-alt-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.qc-alt-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.qc-point {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  animation: slideLeft 0.8s ease forwards;
}

.qc-point span {
  font-size: 28px;
  font-weight: bold;
  color: #2563eb;
  min-width: 50px;
}

.qc-point h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #0f172a;
}

.qc-point p {
  color: #475569;
  line-height: 1.6;
}

/* RIGHT CARDS */
.qc-alt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.qc-cert-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  animation: slideRight 0.8s ease forwards;
}

.qc-cert-card img {
  width: 100px;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.qc-cert-card h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 5px;
}

.qc-cert-card p {
  font-size: 14px;
  color: #64748b;
}

.qc-cert-card:hover {
  border-color: #2563eb;
  box-shadow: 0 20px 40px rgba(37,99,235,0.15);
  transform: translateY(-10px);
}

.qc-cert-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ANIMATIONS */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .qc-alt-content {
    grid-template-columns: 1fr;
  }
}
