*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #005bb0;
  --primary-dark: #005bb0;
  --accent: #747577;
  --accent-light: #e8f0fe;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #f5f5f7;
  --bg-alt: #f8faff;
  --border: #e5e7eb;
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}



body {
  color: var(--text);
  background: var(--bg);
  /* line-height: 1.7; */
  /* font-size: 15px; */
}

.btn-secondary{
    
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
   
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 40px 5%;
  max-width: 1800px;
  margin: auto;
}
.section-alt {
  background: var(--bg-alt);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  /* font-size: 12px; */
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
 
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-head {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #1a202c;
  /* line-height: 1.25; */
  margin-bottom: 16px;
  /* letter-spacing: -0.5px; */
  font-size: 2rem;
}

.section-sub {
  color: var(--text-muted);
  /* font-size: 15px; */
  /* line-height: 1.8; */
  max-width: 700px;
  margin-bottom: 48px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, var(--accent), #60a5fa); */

  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  
  box-shadow: 0 12px 40px rgba(26, 60, 143, 0.1);
  border-color: #c7d9fb;
}


.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  /* line-height: 1.7; */
}

/* ── TECH TABS ── */
.tech-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tech-tab {
  padding: 9px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: var(--text-muted);
  transition: all 0.2s;
}
.tech-tab.active,
.tech-tab:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.tech-panel {
  display: none;
}
.tech-panel.active {
  display: block;
}

.tech-panel-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.tech-panel-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.tech-panel-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.tech-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tech-pill {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-light),
    var(--accent),
    var(--accent-light)
  );
}

.process-step {
  padding: 24px;
  text-align: center;
  position: relative;
  background: #fff;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.why-img-placeholder {
  background: linear-gradient(135deg, #0f2460, #1a3c8f);
  height: 420px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(96, 165, 250, 0.25),
    transparent 60%
  );
}
.why-phone {
  width: 160px;
  height: 300px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 12px 12px;
  gap: 10px;
}
.why-phone::before {
  content: "";
  width: 44px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: absolute;
  top: 12px;
}
.wp-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}
.wp-card {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 8px;
  align-items: center;
}
.wp-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(96, 165, 250, 0.4);
  flex-shrink: 0;
}
.wp-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wp-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.wp-line.short {
  width: 60%;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-point {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
}
.why-point:hover {
  border-color: #c7d9fb;
  box-shadow: 0 4px 20px rgba(26, 60, 143, 0.07);
}
.why-point-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-point-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.why-point h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.why-point p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ── INDUSTRIES ── */
.industry-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
}
.industry-tab {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: var(--text-muted);
  border: none;
  border-right: 1px solid var(--border);
  transition: all 0.2s;
  flex: 1;
  min-width: 120px;
  text-align: center;
}
.industry-tab:last-child {
  border-right: none;
}
.industry-tab.active {
  background: var(--primary);
  color: #fff;
}
.industry-tab:hover:not(.active) {
  background: var(--bg-alt);
  color: var(--primary);
}

.industry-panel {
  display: none;
}
.industry-panel.active {
  display: block;
}
.industry-content {
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 36px;
}
.industry-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.industry-content p {
  color: var(--text-muted);
  font-size: 15px;
  /* line-height: 1.8; */
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, #0f2460, #1a3c8f);
  padding: 70px 5%;
  text-align: center;
  color: #fff;
}
.newsletter h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}
.newsletter-form button {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: #e8f0fe;
}

.office-block h5 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.office-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  /* line-height: 1.7; */
}
.office-block a {
  color: #60a5fa;
  font-size: 13px;
  display: block;
  margin-top: 4px;
}

.clutch-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.clutch-badge::before {
  content: "★";
  color: #fbbf24;
  font-size: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-img-placeholder {
    height: 260px;
  }

  .process-steps::before {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .section-head{
    font-size: 1.6rem;
  }
  .section-label{
    font-size: 0.8rem;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 40px 5% 40px;
  }
  .section {
    padding: 56px 5%;
  }

  .industry-tab {
    font-size: 13px;
    padding: 10px 14px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}
