/* --- Global Styles --- */
:root {
  --primary: #0a1b4d;
  --accent: #fbc02d;
  --text-dark: #1a1a1a;
  --text-light: #555;
  --bg-light: #fef9f3;
  --white: #ffffff;
}







/* --- Breadcrumb --- */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: #888;
}

.breadcrumb span {
  color: var(--text-dark);
  font-weight: 600;
}



.suitability-box {
  background-color: var(--bg-light);
  border-radius: 15px;
  padding: 40px;
}

.box-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
}

.suitability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.s-item {
  text-align: center;
}

.s-item i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.s-item p {
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
}

/* --- Why Choose Section --- */
.why-choose {
  padding: 40px 0;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.section-divider .line {
  height: 2px;
  width: 60px;
  background: var(--accent);
}

.section-divider h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
}

.b-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  margin-bottom: 25px;
}

.b-icon {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  font-size: 16px;
}

.benefit-card h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 11px;
  color: var(--text-light);
  padding: 0 5px;
}

/* --- Expertise Section --- */
.expertise {
  padding: 60px 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 30px;
  background: #f8fbff;
  padding: 30px;
  border-radius: 20px;
  align-items: center;
}

.laptop-img {
  width: 100%;
  border-radius: 10px;
}

.expertise-content h3 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 15px;
}

.expertise-content .sub-head {
  font-weight: 700;
  margin: 15px 0 10px;
  font-size: 14px;
}

.check-list {
  list-style: none;
}

.check-list li {
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list li i {
  color: var(--accent);
}

.expertise-features {
  background: #edf4ff;
  padding: 20px;
  border-radius: 15px;
}

.feat-row {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid #dce8f9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-row i {
  font-size: 18px;
}

/* --- Stats Section --- */
.stats {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.stats-flex {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 30px;
  color: var(--primary);
}

.s-text strong {
  display: block;
  font-size: 18px;
}

.s-text span {
  font-size: 12px;
  color: var(--text-light);
}

/* --- Footer CTA --- */
.footer-cta {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 20px;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.cta-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 14px;
  opacity: 0.8;
}

.cta-btns {
  display: flex;
  gap: 10px;
}

.btn-yellow {
  background: var(--accent);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
}

.trust-badges {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 992px) {

  .hero-grid,
  .suitability-grid,
  .benefits-grid,
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 600px) {

  .hero-grid,
  .suitability-grid,
  .benefits-grid,
  .expertise-grid,
  .stats-flex,
  .cta-flex,
  .trust-badges {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }
}