    /* ── CERTIFICATIONS STRIP ── */
    .certifications-strip { background:#ffffff; padding:40px 0; border-top:1px solid rgba(0,0,0,0.05); border-bottom:1px solid rgba(0,0,0,0.05); }
    .cert-container { max-width:1200px; margin:0 auto; padding:0 60px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:40px; }
    .cert-left { display:flex; align-items:center; gap:40px; }
    .cert-right { display:flex; flex-direction:column; align-items:center; gap:8px; }
    .cert-group-label { display:block; text-align:center; font-size:15px; font-weight:800; letter-spacing:0.5px; color:#0D1B3E; font-family:"Outfit",sans-serif; background:linear-gradient(135deg,#0A4FBF,#00C9FF); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:10px; white-space:nowrap; }
    .cert-item { display:flex; align-items:center; justify-content:center; transition:transform 0.3s ease; }
    .cert-item:hover { transform:translateY(-5px); }
    .make-in-india img { height:80px; }
    .msme-logo img { height:80px; }
    .re-logo img { height:80px; }

    .re-logo-box img { height:80px; }
    @media(max-width:768px) {
      .cert-container { flex-direction:column; align-items:center; gap:30px; padding:32px 20px; }
      .cert-left { flex-direction:column; gap:24px; }
      .cert-item img { height:60px; }
    }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cert-container {
        flex-direction: column;
        gap: 50px;
        padding: 40px 20px;
    }
    
    .cert-item img {
        height: 60px;
    }
    
    .make-in-india img {
        height: 65px;
    }
}

.site-footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #e2e8f0;
  padding-top: 60px;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px; 
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  font-family: 'Times New Roman', Times, serif;
}

.footer-column h4 {
  color: #007acc;
  margin-bottom: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
}

.footer-column p {
  margin-bottom: 16px;
  opacity: 0.9;
  line-height: 1.6;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  text-align: left;
}

.footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: left;
}

.footer-column a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 500;
}

.social-links a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-center p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
  font-family: 'Times New Roman', Times, serif;

}

.footer-bottom-right {
  display: flex;
  gap: 24px;
}

.footer-bottom-right a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-bottom-right a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-right {
    order: -1;
  }
}