/* ==========================================
   TECHNOLOGIES SECTION STYLES
   ========================================== */

.tech-section {
  padding: 20px 0 60px 0; /* Reduced top padding from 80px to 20px */
  background-color: #FFFFFF;
  width: 100%;
}
.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Section Badge */
.badge-pill {
  display: inline-block;
  font-size: 0.9rem;   /* Increase this if you want it even bigger */
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FF5A1F;
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

/* --- Section Heading --- */
.tech-heading {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tech-heading .text-highlight {
  color: #FF5A1F;
}

.tech-subheading {
  font-size: 1.05rem;
  color: #64748B;
  max-width: 680px;
  margin: 0 auto 36px auto; /* Reduced bottom margin from 60px to 36px */
  line-height: 1.6;
}
/* --- 4-Column Grid Layout --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #E2E8F0;
  border-left: 1px solid #E2E8F0;
  border-right: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
}

/* --- Card Styles --- */
.tech-card {
  text-align: left;
  padding: 40px 32px;
  border-right: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tech-card:last-child {
  border-right: none;
}

.tech-card:hover {
  background-color: #FAFAFA;
}

/* --- Icon Box --- */
.tech-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(255, 90, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* --- Card Typography & Lists --- */
.tech-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.tech-list li {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-list .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FF5A1F;
  display: inline-block;
  flex-shrink: 0;
}

/* --- Learn More Link --- */
.tech-learn-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF5A1F;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.tech-learn-more:hover {
  gap: 10px;
}

/* --- Bottom Trust Banner --- */

/* --- Bottom Trust Banner Fix --- */
.tech-trust-banner {
  display: flex;
  align-items: center; /* Vertically center icon with text */
  justify-content: center;
  gap: 12px; /* Tightened gap between shield and text */
  max-width: 800px;
  margin: 0 auto;
  text-align: left; /* Left align text relative to the icon */
}

.shield-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.shield-icon svg {
  width: 20px;
  height: 20px;
}

.tech-trust-banner p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

.tech-trust-banner strong {
  color: #0F172A;
  font-weight: 600;
}
/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-card {
    border-bottom: 1px solid #E2E8F0;
  }
  
  .tech-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-card {
    border-right: none;
  }
  
  .tech-heading {
    font-size: 2.25rem;
  }
}

