/* =========================
   INDUSTRIES FINAL POLISH
========================= */

.rr-industries {
  max-width: 1050px; /* 👈 centered like screenshot */
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* CARD */
.rr-industry {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

/* HOVER */
.rr-industry:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* ICON */
.rr-industry svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;

  stroke: #2563eb;
  fill: none;
}

/* TEXT */
.rr-industry span {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .rr-industries {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .rr-industries {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* HEADER */
.rr-industries-header {
  text-align: center;
  margin: 50px 0 25px;
}

/* TITLE */
.rr-industries-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 8px;
}

/* SUBTITLE */
.rr-industries-header p {
  font-size: 15px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}








/* =========================
   FEATURES SECTION
========================= */

.rr-features-header {
  text-align: center;
  margin: 50px 0 25px;
}

.rr-features-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1e3a8a;
}

.rr-features-header p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
}

/* GRID */
.rr-features {
  max-width: 1050px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* CARD */
.rr-feature-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.rr-feature-card h3 {
  font-size: 15px;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.rr-feature-card p {
  font-size: 13px;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .rr-features {
    grid-template-columns: repeat(2, 1fr);
  }
}











/* HERO */
.rr-hero {
  background: #f7faff;
  text-align: center;
  padding: 50px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.rr-hero h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.rr-hero p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

/* BUTTONS */
.rr-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.rr-hero-buttons a {
  padding: 10px 20px;
  border-radius: 25px;
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.rr-hero-buttons a:hover {
  background: #2563eb;
}












/* TESTIMONIALS */
.rr-testimonials {
  text-align: center;
  margin: 60px auto;
  max-width: 1100px;
}

.rr-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.rr-testimonial-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.rr-testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #1d4ed8;
}

/* =========================
   FAQ FINAL WORKING CSS
========================= */

.nm-faq {
  max-width: 850px;
  margin: 50px auto;
}

.nm-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nm-faq-question {
  padding: 14px 18px;
  background: #f5f9ff;
  color: #1d4ed8;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

/* arrow */
.nm-faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
}

/* answer */
.nm-faq-answer {
  display: none;
  padding: 14px 18px;
  color: #4b5563;
  border-top: 1px solid #e5e7eb;
}

/* active */
.nm-faq-item.active .nm-faq-answer {
  display: block;
}

.nm-faq-item.active .nm-faq-question::after {
  content: "-";
}