:root {
  --primary: #1d4ed8;
  --primary-dark: #1e40af;
  --secondary: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --soft: #eef2ff;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--secondary);
  background: var(--bg);
}

a {
  text-decoration: none;
}

.site-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.navbar .btn {
  border-radius: 999px;
}

.hero-section {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top left, #dbeafe, #f8fafc 55%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-badges span {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.hero-card {
  background: var(--secondary);
  color: var(--white);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.hero-card-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-card-content i {
  color: #22c55e;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 16px;
}

.hero-card .text-muted {
  color: rgb(255 255 255 / 75%) !important;
}


.section-padding {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.service-card,
.feature-card,
.process-card,
.testimonial-card,
.contact-details,
.contact-form,
.about-card,
.about-list {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  height: 100%;
}

.service-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(29, 78, 216, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.bg-soft {
  background: var(--soft);
}

.highlight-box {
  text-align: center;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.highlight-box h4 {
  color: var(--primary);
  margin-bottom: 6px;
}

.about-list ul {
  padding-left: 18px;
  color: var(--muted);
}

.feature-card i {
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-card h5 {
  margin-top: 14px;
  margin-bottom: 10px;
}

.process-card span {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: var(--muted);
}

.cta-banner {
  background: linear-gradient(120deg, var(--primary), #2563eb);
  color: var(--white);
  padding: 60px 0;
}

.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-details i {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
}

.contact-map {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-map .map-embed {
  flex: 1;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.team-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--soft);
  border-radius: 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.team-body {
  padding: 20px 22px 24px;
}

.team-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.team-meta i {
  color: var(--primary);
  margin-right: 8px;
}


.footer-section {
  background: #0f172a;
  color: #e2e8f0;
  padding: 60px 0 30px;
}

.footer-section a {
  color: #cbd5f5;
}

.footer-section .text-muted {
  color: rgb(255 255 255 / 75%) !important;
}


.footer-links li {
  margin-bottom: 10px;
}

.footer-contact div {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .navbar .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .section-heading {
    text-align: left;
  }
}
