html, body {
    margin: 0; padding: 0;
    font-family: 'Montserrat', sans-serif;
    
    background: #fff;
    color: #1e293b;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Headings */
    font-weight: 700;
    color: #444;
}
  a { text-decoration: none; color: inherit; }
  
/* ========== Why Choose Us / Stats Section ========== */

/* ========== Industries We Serve Section (Unique Names) ========== */
.industries-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .industries-list-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .industries-card {
    background: #18181b;
    color: #fff;
    border: 1px solid #27272a;
    border-radius: 1rem;
    padding: 2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 #0001;
  }
  
  .industries-card:hover {
    border-color: #ef4444;
    box-shadow: 0 4px 20px 0 #ef444420;
  }
  
  .industries-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .industries-card-icon {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .industries-card-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .industries-card-desc {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  @media (max-width: 600px) {
    .industries-card {
      padding: 1.3rem 0.9rem;
      border-radius: 0.7rem;
    }
    .industries-card-header {
      margin-bottom: 0.7rem;
    }
    .industries-card-title { font-size: 1rem; }
  }
/* ========== Testimonials Section (Unique Names) ========== */
.testimonials-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .testimonials-list-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .testimonials-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px 0 #0001;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .testimonials-card:hover {
    border-color: #ef4444;
    box-shadow: 0 4px 20px 0 #ef444420;
  }
  
  .testimonials-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .testimonials-card-avatar {
    width: 3rem;
    height: 3rem;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  
  .testimonials-card-company {
    font-weight: 600;
    color: #111;
    font-size: 1.08rem;
  }
  
  .testimonials-card-quote {
    color: #374151;
    font-style: italic;
    font-size: 1.07rem;
    line-height: 1.7;
  }
  
  /* Responsive tweaks */
  @media (max-width: 600px) {
    .testimonials-card {
      padding: 1.3rem 0.9rem;
      border-radius: 0.7rem;
    }
    .testimonials-card-avatar {
      width: 2.3rem; height: 2.3rem; font-size: 1rem;
    }
    .testimonials-card-quote { font-size: 0.96rem; }
  }
/* ========== Trusted Partners Section (Unique Names) ========== */
.partners-section {
  background: #000;
}

/* Use grid for full-width spreading */
.partners-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 logos in a row on big screens */
  gap: 2rem;
  align-items: center;
}

.partners-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-card-logo {
  width: 4rem;
  height: 4rem;
  background: #18181b;
  color: #fff;
  border: 2px solid #27272a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.partners-card-logo:hover {
  border-color: #ef4444;
  box-shadow: 0 4px 20px 0 #ef444420;
}

.partners-card-name {
  color: #d1d5db;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
}

/* Medium screens — still 4 in a row */
@media (max-width: 900px) {
  .partners-list-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small screens — show 2 per row */
@media (max-width: 600px) {
  .partners-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .partners-card-logo { width: 2.3rem; height: 2.3rem; font-size: 0.95rem; }
  .partners-card-name { font-size: 0.96rem; }
}

  /* Right-aligned Content */
  .hero-content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    z-index: 3;
    pointer-events: none;
  }
  .hero-content > div {
    pointer-events: auto;
    max-width: 450px;
    padding: 0 5vw 0 0;
    text-align: right;
    margin-left: auto;
  }
  .hero-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .hero-desc {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 28px;
  }
  .hero-btn {
    background: #fff;
    color: #111;
    padding: 1rem 2.5rem;
    border-radius: 0;
    border: 2px solid #111;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
  }
  .hero-btn:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
  }
  
  /* Arrow buttons under button, right-aligned */
  .hero-arrows-below {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: flex-end;
  }
  .hero-arrow {
    background: #ef4444cc;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-arrow:hover { background: #ef4444; }
  
  /* Pill Indicators */
  .hero-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.65rem;
    z-index: 4;
  }
  .hero-dot {
    width: 2.2rem;
    height: 0.45rem;
    border-radius: 0.35rem;
    background: #fff8;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    outline: none;
    padding: 0;
  }
  .hero-dot.active { background: #ef4444; }
  
  /* Responsive styles */
  @media (max-width: 900px) {
    .hero-content > div { padding-right: 3vw; }
  }
  @media (max-width: 600px) {
    .hero-section { height: 230px; }
    .hero-content, .hero-content > div {
      align-items: flex-start !important;
      text-align: left !important;
      padding-right: 2vw;
      max-width: 98vw;
    }
    .hero-title { font-size: 1.3rem;font-family: 'Montserrat', sans-serif; }
    .hero-desc { font-size: 1rem; margin-bottom: 2rem; line-height: 28px;}
    .hero-btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
    .hero-arrows-below { justify-content: flex-start; }
    .hero-dot {
      width: 1.2rem; height: 0.35rem; border-radius: 0.25rem;
    }
  }
  .label-text {
    font-size: 16px;
    line-height: 1.14;
    font-weight: 600;
    text-transform: uppercase;
  }

  .section-subtitle {
    font-size: 1.15rem;
    color: #ef4444;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
  }
  