:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --surface-strong: #0a2540;
  --accent: #2563eb;
  --accent-soft: #eaf2ff;
  --accent-secondary: #d4af37;
  --accent-secondary-soft: #fff6d9;
  --muted: #5b6776;
  --border: rgba(10,37,64,.12);
  --shadow: 0 24px 80px rgba(15,23,42,.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
  color: #111827;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--accent);
  color: #ffffff;
  font-size: .95rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar i,
.topbar span {
  vertical-align: middle;
}

.topbar .contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar .social {
  display: flex;
  gap: 12px;
}

nav {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 78, 168, .12);
  box-shadow: 0 10px 40px rgba(15, 23, 42, .06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 42px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li a {
  color: var(--surface-strong);
  font-weight: 600;
}

nav li a:hover,
nav li a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
}

.site-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a2540 0%, #2563eb 100%);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.25);
  border-top-color: var(--accent-secondary);
  animation: spin 1s linear infinite;
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, rgba(37,99,235,0) 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  filter: blur(24px);
}

.scroll-top,
.floating-whatsapp {
  position: fixed;
  right: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0a2540 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(10,37,64,0.18);
  z-index: 1200;
  border: none;
  cursor: pointer;
}

.floating-whatsapp {
  bottom: 94px;
  text-decoration: none;
}

.scroll-top {
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero {
  min-height: auto;
  display: grid;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-modern {
  padding: 80px 0 50px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 56%);
}

.hero-modern-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.hero p,
.page-hero .page-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 460px;
  background: #f7f9fe;
}

.slider-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.slider-slide {
  flex: 0 0 100%;
  overflow: hidden;
  min-height: 460px;
  background: #f7f9fe;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255,255,255,.92);
}

.slider-control {
  border: none;
  border-radius: 14px;
  min-width: 52px;
  min-height: 52px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .12);
  transition: transform .2s ease, background .2s ease;
}

.slider-control:hover {
  transform: translateY(-1px);
  background: #163f7b;
}

.hero-image-modern {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
  background: #f7f9fe;
}

.hero-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner {
  background: #ffffff;
  border: 1px solid rgba(31, 78, 168, .12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-banner span {
  color: var(--muted);
  font-size: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(31, 78, 168, .08);
  box-shadow: var(--shadow);
}

.metric-item strong {
  display: block;
  font-size: 1.6rem;
  color: var(--surface-strong);
}

.metric-item span {
  color: var(--muted);
}

.section-head--center {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stats-shell {
  margin-top: -24px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(10,37,64,0.12);
}

.counter-item {
  text-align: center;
  padding: 18px 12px;
}

.counter-item .counter-number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--surface-strong);
  font-family: 'Poppins', sans-serif;
}

.counter-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(31, 78, 168, .08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.feature-card h3 {
  margin-top: 0;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(212,175,55,0.18));
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.filter-btn {
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--surface-strong);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(10,37,64,0.08);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--surface-strong) 100%);
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 44px rgba(10,37,64,0.08);
  border: 1px solid rgba(31,78,168,0.12);
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.testimonial-card strong {
  color: var(--surface-strong);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline-item {
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(31,78,168,0.12);
  box-shadow: 0 16px 44px rgba(10,37,64,0.08);
}

.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--surface-strong);
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(10,37,64,0.96), rgba(37,99,235,0.92));
  color: #fff;
  box-shadow: 0 24px 60px rgba(10,37,64,0.16);
}

.contact-panel .eyebrow {
  color: var(--accent-secondary);
}

@media (max-width: 980px) {
  .hero-modern-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

.hero-visual-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 2.5vw, 2.5rem);
  line-height: 1.1;
}

.hero-visual-copy .eyebrow {
  margin-bottom: 10px;
  display: inline-block;
}

.page-stats,
.hero-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-cards,
.gallery-grid,
.projects-grid,
.jobs-grid,
.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
}

.page-banner,
.about-values,
.section--light .about-values {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero,
  .contact-grid,
  .page-banner,
  .about-values,
  .section--light .about-values,
  .projects-grid,
  .jobs-grid,
  .gallery-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 280px;
  }

  .carousel-control {
    width: 34px;
    height: 34px;
  }

  .carousel-dots {
    bottom: 12px;
  }

  .topbar .container,
  .nav-flex {
    flex-direction: column;
    align-items: stretch;
  }

  nav ul {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .page-stats,
  .hero-summary,
  .gallery-grid,
  .projects-grid,
  .jobs-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-copy h1,
  .page-hero .page-copy h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .topbar .contact {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar .social {
    justify-content: center;
    width: 100%;
  }
}

.btn-blue,
.btn-orange,
.btn-black,
.btn-apply {
  border: 1px solid transparent;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-blue {
  background: var(--surface-strong);
  color: #ffffff;
}

.btn-orange {
  background: var(--accent-secondary);
  color: var(--surface-strong);
}

.btn-black,
.btn-apply {
  background: var(--accent);
  color: #ffffff;
}

.btn-blue:hover,
.btn-orange:hover,
.btn-black:hover,
.btn-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(17, 24, 39, .12);
}

.btn-blue:hover,
.btn-orange:hover,
.btn-black:hover,
.btn-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(17, 24, 39, .12);
}

.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
}

.page-hero .page-copy {
  max-width: 560px;
}

.page-hero .page-copy h1 {
  font-size: clamp(2.75rem, 4vw, 4.75rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.page-hero .page-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 60%);
}

.page-hero .page-copy {
  display: grid;
  gap: 24px;
}

.page-hero .page-copy h1 {
  color: var(--surface-strong);
}

.page-hero .page-copy p {
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 22px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-copy {
  background: var(--accent-secondary-soft);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 159, 67, .18);
}

.hero-visual-copy h2 {
  color: var(--surface-strong);
}

.hero-visual-copy .eyebrow {
  color: var(--accent);
}

.page-stats,
.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-stats .stat-card,
.hero-summary .summary-card,
.stat-card {
  border-radius: 24px;
  background: #ffffff;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(31, 78, 168, .12);
}

.page-stats .stat-card::before,
.hero-summary .summary-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.page-stats .stat-card strong,
.hero-summary .summary-card span,
.stat-card strong {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--surface-strong);
}

.page-cards {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.job-card {
  border-radius: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow);
}

.job-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.job-card ul {
  padding-left: 20px;
  margin: 20px 0 24px;
  color: var(--muted);
}

.project-card,
.service-card,
.feature-card,
.about-card,
.job-card,
.contact-card,
.contact-form {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(31, 78, 168, .12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.project-card img,
.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-card-body,
.service-card,
.feature-card,
.about-card,
.job-card {
  padding: 28px;
}

.project-card-body h3,
.service-card h3,
.feature-card h3,
.about-card h3,
.job-card h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--surface-strong);
}

.project-tag {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: .95rem;
}

.project-card,
.service-card,
.about-card,
.job-card,
.gallery-item,
.contact-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.project-card:hover,
.service-card:hover,
.about-card:hover,
.job-card:hover,
.gallery-item:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(15, 23, 42, .12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.contact-card,
.contact-form {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-card h3 {
  margin-top: 0;
}

.contact-info p {
  margin: 18px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  background: #f8fafc;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 100%;
}

.topbar-separator {
  opacity: .65;
  padding: 0 12px;
}

.page-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}

.banner-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.banner-copy {
  display: grid;
  gap: 20px;
}

.about-values,
.section--light .about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  border-radius: 24px;
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, .08);
}

.jobs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  min-height: 260px;
}

.form-alert {
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.form-alert.error {
  background: #fee2e2;
  color: #991b1b;
}

.form-alert.success {
  background: #dcfce7;
  color: #166534;
}

.gallery-grid,
.client-grid {
  gap: 20px;
}

.gallery-item {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, .85);
  padding: 28px;
  z-index: 50;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 960px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.lightbox-caption {
  margin-top: 18px;
  color: #f8fafc;
  font-size: 1.05rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.page .page-intro h1,
.page .page-intro p {
  margin: 0;
}

.page .page-intro {
  max-width: 720px;
  margin-bottom: 24px;
  display: grid;
  gap: 16px;
}

.page .page-intro h1 {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
}

.contact-card p,
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-info strong {
  color: var(--surface-strong);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form button {
  background: var(--accent);
  color: #ffffff;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  transform: translateY(-1px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 980px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.page .page-intro {
  max-width: 720px;
  margin-bottom: 24px;
}

.page-hero .page-copy h1,
.page-hero .page-copy p {
  margin: 0;
}

.page-hero .page-copy .eyebrow {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .page-hero {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .service-grid,
  .gallery-grid,
  .client-grid,
  .hero-summary,
  .page-stats,
  .contact-grid,
  .page-cards,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.features {
  padding: 80px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  min-height: 200px;
}

.feature h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.info-strip {
  padding: 40px 0;
  background: #111827;
  color: #fff;
}

.info-strip .container {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.info-strip div {
  text-align: center;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.info-strip div:first-child {
  grid-column: span 2;
  text-align: left;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 360px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-title {
  padding: 24px;
  font-size: 1.2rem;
  font-weight: 700;
}

.section {
  padding: 80px 0;
}

.section--light {
  background: #f8fafc;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.05;
}

.section-copy {
  color: var(--muted);
  max-width: 680px;
  margin: 0;
}

.about-grid,
.service-grid,
.gallery-grid,
.client-grid {
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.service-card,
.gallery-card {
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow);
}

.about-card--highlight,
.service-card--highlight {
  background: var(--accent);
  color: #ffffff;
}

.about-card--highlight p,
.service-card--highlight p {
  color: rgba(255,255,255,.88);
}

.about-card h3,
.service-card h3 {
  margin-top: 0;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 220px;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.summary-card {
  border-radius: 24px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.summary-card span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
}

.summary-card strong {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.summary-card--primary {
  background: #111827;
  color: #fff;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto;
}

.hero-description {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 34px;
}

.about-grid,
.service-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  margin-top: 12px;
}

.gallery-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-card:nth-child(1) { background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%); }
.gallery-card:nth-child(2) { background: linear-gradient(180deg, #111827 0%, #111827 100%); color: #fff; }
.gallery-card:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%); }

.client-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  text-align: center;
}

.client-grid span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 20px;
  font-weight: 700;
}

.text-center {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 980px) {
  .about-grid,
  .service-grid,
  .gallery-grid,
  .client-grid,
  .hero-summary {
    grid-template-columns: 1fr;
  }
}

footer {
  padding: 60px 0 44px;
  background: linear-gradient(135deg, #071f3a 0%, #0a2540 100%);
  color: rgba(255,255,255,.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid h3 {
  color: #ffffff;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255,255,255,.72);
}

.footer-grid a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 32px;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
}

.footer-grid h3 {
  margin-top: 0;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255,255,255,.72);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-grid a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 32px;
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
}

@media (max-width: 980px) {
  .feature-grid,
  .solution-grid,
  .footer-grid,
  .info-strip .container {
    grid-template-columns: 1fr;
  }

  .topbar .container,
  .nav-flex {
    flex-direction: column;
    align-items: stretch;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .hero { padding-top: 60px; }
  .hero h1 { font-size: 2.5rem; }
  .hero-btns { gap: 12px; }
  .info-strip .container { grid-template-columns: 1fr 1fr; }
  .info-strip div:first-child { grid-column: span 2; }
}

/* Enhanced professional theme */
body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(31, 78, 168, 0.12), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -120px;
  right: -90px;
  background: #1f4ea8;
}

body::after {
  bottom: -120px;
  left: -80px;
  background: #ff9f43;
}

main,
.topbar,
nav,
footer {
  position: relative;
  z-index: 1;
}

.topbar {
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

nav {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.9);
}

nav ul a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  border-color: transparent;
  letter-spacing: 0.02em;
}

nav ul a:hover,
nav ul a.active {
  background: linear-gradient(90deg, rgba(31,78,168,0.12), rgba(255,159,67,0.16));
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(31, 78, 168, 0.12);
}

.hero-modern {
  padding: 92px 0 80px;
  background: linear-gradient(135deg, rgba(10,37,64,0.97) 0%, rgba(37,99,235,0.92) 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(31, 78, 168, 0.08);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-copy .eyebrow {
  color: var(--accent-secondary);
  letter-spacing: 0.24em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.83rem;
}

.hero-description {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 480px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255,255,255,0.15);
  background: #0b1424;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
}

.slider-slide {
  min-width: 100%;
  min-height: 480px;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0;
  pointer-events: none;
}

.slider-chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--surface-strong);
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.slider-controls {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.slider-control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.92);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}

.slider-dot.active {
  width: 26px;
  border-radius: 999px;
  background: #fff;
}

.hero-banner {
  margin-top: 18px;
  border: 1px solid rgba(31,78,168,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(234,241,255,0.9));
}

.section {
  padding: 84px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-card,
.about-card,
.service-card,
.gallery-card,
.client-grid span,
.stats-card,
.testimonial-card,
.timeline-item,
.project-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover,
.about-card:hover,
.service-card:hover,
.gallery-card:hover,
.client-grid span:hover,
.stats-card:hover,
.testimonial-card:hover,
.timeline-item:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(10,37,64,0.14);
}

.stats-shell {
  margin-top: -24px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(10,37,64,0.12);
}

.counter-item {
  text-align: center;
  padding: 18px 12px;
}

.counter-item .counter-number {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--surface-strong);
  font-family: 'Poppins', sans-serif;
}

.counter-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.14), rgba(212,175,55,0.18));
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,78,168,0.16), transparent 70%);
  pointer-events: none;
}

.about-card--highlight,
.service-card--highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #0d2c5e 100%);
  color: #fff;
}

.about-card--highlight p,
.service-card--highlight p {
  color: rgba(255,255,255,0.88);
}

.gallery-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.client-grid span {
  background: rgba(255,255,255,0.9);
  color: var(--surface-strong);
  border: 1px solid rgba(31,78,168,0.12);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.filter-btn {
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--surface-strong);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(10,37,64,0.08);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--surface-strong) 100%);
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 44px rgba(10,37,64,0.08);
  border: 1px solid rgba(31,78,168,0.12);
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.testimonial-card strong {
  color: var(--surface-strong);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline-item {
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(31,78,168,0.12);
  box-shadow: 0 16px 44px rgba(10,37,64,0.08);
}

.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--surface-strong);
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(10,37,64,0.96), rgba(37,99,235,0.92));
  color: #fff;
  box-shadow: 0 24px 60px rgba(10,37,64,0.16);
}

.contact-panel .eyebrow {
  color: var(--accent-secondary);
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer .footer-grid h3 {
  margin-bottom: 16px;
}

.inner-hero {
  padding: 70px 0 40px;
  background: linear-gradient(135deg, rgba(234,241,255,0.95) 0%, rgba(255,255,255,0.92) 100%);
  border-radius: 34px;
  margin-top: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(31, 78, 168, 0.08);
}

.inner-hero .page-hero-image img {
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.inner-section {
  margin-top: 30px;
  border-radius: 30px;
  padding: 42px 32px;
}

.page-banner {
  align-items: center;
  margin-top: 30px;
  padding: 10px 0 40px;
}

.banner-copy h3 {
  margin: 0 0 12px;
  color: var(--surface-strong);
  font-size: 1.6rem;
}

.contact-card,
.contact-form {
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7,31,58,0.35) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 980px) {
  .hero-modern-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 360px;
  }

  .slider-slide {
    min-height: 360px;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-card,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .hero-modern {
    padding: 70px 0 56px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 300px;
  }

  .slider-slide {
    min-height: 300px;
  }

  .slider-overlay {
    padding: 12px 12px 0;
  }

  .slider-chip {
    font-size: 0.82rem;
  }

  nav ul {
    gap: 8px;
  }

  nav ul a {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .scroll-top,
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    right: 14px;
  }

  .floating-whatsapp {
    bottom: 80px;
  }
}
