/* Section Base */
.why-coimbatore {
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  padding: 60px 8%;
  background: #fff;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.section-title span {
  color: #28367B;
}

.section-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
    
  margin-bottom: 50px;
}

.feature-card {
  padding: 20px;
 height:300px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* 🔥 Alternating Background Colors */
.feature-card:nth-child(odd) {
  background: #f9f9f9;   /* light gray */
}

.feature-card:nth-child(even) {
  background: #EEEEEE;   /* soft yellow */
}

.feature-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c2c2c;
}

.feature-card p {
  font-size: 17px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* 🔥 Logo Styling */
.feature-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-top: auto;
  align-self: flex-start;  /* left aligned */
}

/* Responsive */
@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* CTA */
.cta {
  text-align: center;
  margin: 50px 0;
}

.cta p {
  font-size: 16px;
  margin-bottom: 15px;
}

.cta-btn {
  
  background: #f5b700;
  color: #fff;
  padding: 12px 28px;

  text-decoration: none;
  font-weight: 200;
  font-size: 10px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #d99a00;
}

/* Why TNCD */
.why-tncd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
  align-items: center;
}

.tncd-image img {
  width: 100%;
  border-radius: 12px;
}

.tncd-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.tncd-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tncd-content h4 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.tncd-btn {
  display: inline-block;
  margin-top: 15px;
  background: #f5b700;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.tncd-btn:hover {
  background: #d99a00;
}

/* Stats */
.stats {
  background: #1a2a6c;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 60px 8%;
  gap: 20px;
  margin-top: 40px;
}

.stat-card h3 {
  font-size: 30px;
  font-weight: 700;
}

.stat-card span {
  font-size: 16px;
  font-weight: 500;
}

.stat-highlight {
  color: #f5b700;
  font-size: 14px;
  margin: 10px 0;
  font-weight: 600;
  text-transform: uppercase;
}

.stat-card p {
  font-size: 13px;
  color: #ddd;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-tncd {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}

p strong{
 font-size: 20px;
}